cURL
curl --request GET \ --url http://sandbox.mintlify.com/oauth/apps/organization/{organizationId} \ --header 'Authorization: Bearer <token>'
⚠️ SECURITY: Only OWNERS and ADMINS can list OAuth applications. Returns all OAuth apps created for the organization.
organizationId
curl -X GET http://localhost:3001/api/oauth/apps/organization/550e8400-e29b-41d4-a716-446655440000 \ -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>
Applications retrieved successfully. Returns array of OAuth applications without client secrets.