GET
/
users
/
{user_uid}
/
integrations
/
{integration}
curl --request GET \
  --url https://api.captaindata.com/v4/users/{user_uid}/integrations/{integration} \
  --header 'X-API-Key: <api-key>'
{
"auth_type": "OAUTH",
"setup_source": "API",
"is_shared": false,
"name": "John Doe's Example Integration Account",
"uid": "123e4567-e89b-12d3-a456-426614174000",
"integration_permalink": "example-integration",
"created_at": "2023-10-01T12:00:00Z",
"level": "Classic",
"user_uid": "5678e456-e89b-12d3-a456-426614174001",
"meta": {
"key": "value"
}
}

Authorizations

X-API-Key
string
header
required

API key required for authentication. Add your API key in the X-API-Key header.

Path Parameters

user_uid
string
required
integration
string
required

Response

200
application/json

Successfully retrieved the account linked to the specified user and integration.

The response is of type object.