v49

latestOpenAPI 3.0.0raw.githubusercontent.com2024-12-22168107389.8 KB
connections

List Connections

get/connections

Response

id_connectionstring required

Unique identifier for the connection

statusstring required

Status of the connection

provider_slugstring required

Slug for the provider

verticalstring required

Vertical category of the connection

account_urlstring required

URL of the account

token_type'oauth2' | 'apikey' | 'basic' required

Strategy type

access_tokenstring required

Access token for the connection

refresh_tokenstring required

Refresh token for the connection

expiration_timestampstring date-time required

Expiration timestamp of the access token

created_atstring date-time required

Timestamp when the connection was created

connection_tokenstring required

UUID Token for the connection

id_projectstring required

Project ID associated with the connection

id_linked_userstring required

Linked user ID associated with the connection

Example response

[
  {
    "id_connection": "123e4567-e89b-12d3-a456-426614174000",
    "status": "active",
    "provider_slug": "hubspot",
    "vertical": "crm",
    "account_url": "https://example.com/account",
    "token_type": "oauth2",
    "access_token": "access_token_example",
    "refresh_token": "refresh_token_example",
    "expiration_timestamp": "2024-10-01T12:00:00Z",
    "created_at": "2024-10-01T12:00:00Z",
    "connection_token": "123e4567-e89b-12d3-a456-426614174000",
    "id_project": "123e4567-e89b-12d3-a456-426614174001",
    "id_linked_user": "123e4567-e89b-12d3-a456-426614174002"
  }
]