auth-connection

Dev Org Auth Connections Get

GET
Retrieves the details for an authentication connection.

Query parameters

idstringRequired
ID of the authentication connection.

Response

This endpoint returns an object
auth_connection
union
Connection object that specifies the configuration for an authentication connection that is set up for a Dev organization.
GET
1curl -G https://api.devrev.ai/dev-orgs.auth-connections.get \
2 -H "Authorization: <apiKey>" \
3 -d id=string
Response
1{
2 "auth_connection": {
3 "type": "google_apps",
4 "id": "string",
5 "client_id": "string",
6 "client_secret": "string",
7 "display_name": "string",
8 "enabled": true,
9 "tenant_domain": "string"
10 }
11}