The Get Connected Apps method wraps the Get Connected Apps API endpoint. The organization_id will be automatically inferred from the logged-in Member's session. This method retrieves a list of Connected Apps that have been installed by the Organization's Members. A Connected App can be considered to be installed if at least one of the Organization's Members has successfully completed an authorization flow with the Connected App and no revocation has occurred since that completion. A Connected App may be uninstalled if the Organization changes its first_party_connected_apps_allowed_type or third_party_connected_apps_allowed_type policies.
Get Organization Connected Apps
Response fields
request_id string
status_code int
organization_connected_apps array[objects]
// Code examples 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",
"name": "first-party-confidential-app",
"description": "A first party connected app",
"logo_url": null
}
]
}