auth-connection

Dev Org Auth Connections Get Post

POST
Retrieves the details for an authentication connection.

Request

This endpoint expects an object.
id
stringRequired
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.
POST
1curl -X POST https://api.devrev.ai/dev-orgs.auth-connections.get \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "id": "string"
6}'
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}