ConnectedAccountsResponse
Response schema for multiple connected accounts
data object[]required
A list of connected accounts
The scope of this connection. 'user' means owned by a specific user, 'account' means shared across the account.
Possible values: [user, account]
Time at which the object was created.
The display name from the provider.
The email address associated with this connected account.
The unique identifier for this account at the provider.
Unique identifier for the object.
Possible values: Value must match regular expression ^cact_\w{12}$
String representing the object's type.
Possible values: [connected_account]
The calendar provider for this connected account.
Possible values: [google]
The current status of the connection. 'active' means the connection is working, 'reconnect_required' means the OAuth token has failed and needs reauthorization, 'insufficient_permissions' means the user did not grant all required OAuth scopes.
Possible values: [active, reconnect_required, insufficient_permissions]
Time at which the object was last updated.
The ID of the user who owns this connected account.
meta objectrequired
Metadata for paginated responses
Current page number
Number of records per page
Total number of records
Total number of pages
{
"data": [
{
"connection_scope": "user",
"created_at": "2025-03-12T12:34:55Z",
"display_name": "John Doe",
"email": "user@example.com",
"external_subject": "123456789",
"id": "cact_d025a96ac0c6",
"object": "connected_account",
"provider": "google",
"status": "active",
"updated_at": "2025-03-13T10:11:12Z",
"user_id": "user_d025a96ac0c6"
}
],
"meta": {
"current_page": 1,
"page_size": 10,
"total_count": 50,
"total_pages": 5
}
}