Get connected account
Get a single connected account by ID.
Authorization
authorization In: header
Path Parameters
The connected account's unique identifier
^cact_\w{12}$Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/connected_accounts/cact_abcdef123456"{ "data": { "connection_scope": "user", "created_at": "2025-03-12T12:34:55Z", "display_name": "John Doe", "email": "user@example.com", "external_account_id": null, "external_subject": "123456789", "id": "cact_d025a96ac0c6", "object": "connected_account", "provider": "google", "status": "active", "updated_at": "2025-03-13T10:11:12Z", "user_id": "user_d025a96ac0c6" }}Delete user mapping DELETE
Remove the default user mapping between a provider and an external user on a connected account. Mappings on deactivated providers can also be removed. Returns a 404 when the connected account does not exist, is not accessible to the current actor, or is not a conferencing connected account; when the provider does not exist; or when no mapping exists for the provider on this connected account.
Get user mapping GET
Get the default user mapping between a provider and an external user on a connected account. Returns a 404 when the connected account does not exist, is not accessible to the current actor, or is not a conferencing connected account; when the provider does not exist or has been deactivated; or when no mapping exists for the provider on this connected account.