GET
/api/apps/{app_id}/callback-urlsAuthenticatedList an app's callback URLs
Lists the explicit OAuth2 / OIDC callback (redirect) URLs registered for a client application. Visibility mirrors the domains listing: public apps, members of the owning organization, the owning user, and platform administrators.
operationId
get_api_apps_app_id_callback_urlsClient applicationsAuthentication & permissionsAuthenticated
Any authenticated user
- Accepted credentials
- Auth server session (refresh token cookie)
cookie "refresh_token_<auth_server_app_id>" - Access token (cookie)
cookie "access_token_<auth_server_app_id>" - Access token (Bearer)
Authorization: Bearer <JWT>
- Auth server session (refresh token cookie)
- Who may call
- Any authenticated user
Path parameters
| Name | Type | Description |
|---|---|---|
| app_id* | string | Client application id |
Responses
application/json
ListAppCallbackUrlsResponse
| Property | Type | Description |
|---|---|---|
| success* | true | |
| message* | string | |
| list* | object[] | |
| app_callback_url_ref_id* | string (uuid) | |
| app_id* | string | minLength: 2maxLength: 64pattern: ^[a-z0-9_-]*$ |
| callback_url* | string (uri) | maxLength: 2048 |
| environment* | "development" | "staging" | "test" | "production" | |
| created_at* | number | minimum: 0 |
JSONExample
"success"true
"message""string"
"list"
"app_callback_url_ref_id""123e4567-e89b-12d3-a456-426614174000"
"app_id""string"
"callback_url""https://example.com"
"environment""development"
"created_at"1.5
Example request
bashcurl
curl -X GET 'https://auth.schemavaults.com/api/apps/<app_id>/callback-urls' \
-b 'refresh_token_<auth_server_app_id>=<value>'