Member Get Connected Apps retrieves a list of Connected Apps with which the Member has successfully completed an authorization flow. If the Member revokes a Connected App's access (e.g. via the Revoke Connected App endpoint) then the Connected App will no longer be returned in the response. A Connected App's access may also be revoked if the Organization's allowed Connected App policy changes.
Get Connected Apps
GET
https://test.stytch.com/v1/b2b/organizations/{organization_id}/members/{member_id}/connected_appsPath parameters
organization_id* string
member_id* string
Header parameters
X-Stytch-Member-Session string
X-Stytch-Member-SessionJWT string
Response fields
request_id string
connected_apps array[objects]
// Backend SDKs coming soon.
RESPONSE
200
{
"status_code": 200,
"request_id": "request-id-test-b05c992f-ebdc-489d-a754-c7e70ba13141",
"connected_apps": [
{
"client_type": "first_party",
"connected_app_id": "connected-app-test-aeadeabc-a3a3-4796-83d0-b757e3001000",
"description": "A first party connected app",
"logo_url": null,
"name": "first-party-confidential-app",
"scopes_granted": "openid profile email"
}
]
}