Stytch · Schema
api_user_v1_ConnectedAppsResponse
AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools
Properties
| Name | Type | Description |
|---|---|---|
| request_id | string | Globally unique UUID that is returned with every API call. This value is important to log for debugging purposes; we may ask for this value to help identify a specific API call when helping you debug |
| connected_apps | array | An array of Connected Apps with which the User has successfully completed an authorization flow. |
| status_code | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/api_user_v1_ConnectedAppsResponse",
"title": "api_user_v1_ConnectedAppsResponse",
"type": "object",
"properties": {
"request_id": {
"type": "string",
"description": "Globally unique UUID that is returned with every API call. This value is important to log for debugging purposes; we may ask for this value to help identify a specific API call when helping you debug an issue."
},
"connected_apps": {
"type": "array",
"items": {
"$ref": "#/components/schemas/api_user_v1_UserConnectedApp"
},
"description": "An array of Connected Apps with which the User has successfully completed an authorization flow."
},
"status_code": {
"type": "integer",
"format": "int32"
}
},
"required": [
"request_id",
"connected_apps",
"status_code"
]
}