Get Connected App for Organization retrieves information about the specified Connected App as well as a list of the Organization's Members who have the App installed along with the scopes they requested at completion of their last authorization with the App.
Get a Connected App for an Organization
GET
https://test.stytch.com/v1/b2b/organizations/{organization_id}/connected_apps/{connected_app_id}Path parameters
organization_id* string
connected_app_id* string
Header parameters
X-Stytch-Member-Session string
X-Stytch-Member-SessionJWT string
Response fields
request_id string
connected_app_id string
name string
description string
client_type string
active_members array[objects]
// Backend SDKs coming soon.
RESPONSE
200
{
"status_code": 200,
"request_id": "request-id-test-b05c992f-ebdc-489d-a754-c7e70ba13141",
"client_type": "third_party_public",
"connected_app_id": "${connectedAppId}",
"name": "Third Party Public",
"description": "Third Party Public App",
"logo_url": null
"active_members": [
{
"member_id": "member-test-32fc5024-9c09-4da3-bd2e-c9ce4da9375f",
"granted_scopes": [
"openid",
"profile",
"email"
]
}
],
}