External Services
The external_services table contains data about the Catalist sync that is set up in the organization.
This table can be used to determine which services exist, as well as metadata about the service such as when it was created.
Columns
| Column Name | Description | Type | Nullable |
|---|---|---|---|
| id | The numerical identifier of the object. | INT8 | No |
| service_name | The name of the service. Always catalist.
|
VARCHAR | No |
| client_id | The client ID part of Catalist authentication credentials. | VARCHAR | No |
| client_secret | The client secret part of Catalist authentication credentials. | VARCHAR | No |
| access_token | The access token part of Catalist authentication credentials. | VARCHAR | No |
| workflow_id | The workflow ID part of Catalist authentication credentials. | VARCHAR | No |
| expires_in | When the access token expires in seconds. | INT4 | No |
| created_at | The UTC timestamp when this object was created. | TIMESTAMP | No |
| updated_at | The UTC timestamp when this object was updated. | TIMESTAMP | No |
| token_updated_at | The UTC timestamp when the access token was last updated. | TIMESTAMP | Yes |