cURL
curl --request GET \ --url http://sandbox.mintlify.com/oauth/apps/{clientId} \ --header 'Authorization: Bearer <token>'
⚠️ SECURITY: Only OWNERS and ADMINS can view OAuth application details. Returns application configuration without exposing the client secret.
clientId
curl -X GET http://localhost:3001/api/oauth/apps/app_1234567890abcdef \ -H "Authorization: Bearer <token>"
{ "clientId": "app_1234567890abcdef", "name": "My Integration", "description": "Integration for managing organization data", "redirectUri": "https://example.com/callback", "scopes": ["read:organization", "write:organization"], "isActive": true, "createdAt": "2025-01-26T10:00:00Z", "updatedAt": "2025-01-26T10:00:00Z" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Application retrieved successfully with configuration details (client secret is never returned after creation).