Retrieve details of a specific Connected App by client_id.
Get Connected App
GET
https://test.stytch.com/v1/connected_apps/clients/{client_id}Path parameters
client_id* string
Response fields
status_code int
request_id string
connected_app object
// Backend SDKs coming soon.
RESPONSE
200
{
"connected_app": {
"client_id": "connected-app-test-d731954d-dab3-4a2b-bdee-07f3ad1be888",
"client_name": "My Connected App",
"client_description": "App for internal tools",
"status": "active",
"client_secret": "s3cr3t_v4lu3",
"client_secret_last_four": "v4lu3",
"next_client_secret_last_four": null,
"full_access_allowed": false,
"client_type": "first_party",
"redirect_urls": ["https://myapp.com/callback"],
"access_token_expiry_minutes": 60,
"access_token_custom_audience": "https://api.myapp.com",
"access_token_template_content": "{}",
"post_logout_redirect_urls": ["https://myapp.com/logout"],
"logo_url": "https://myapp.com/logo.png",
"bypass_consent_for_offline_access": false
}
}