contentstack · Schema
Account
An authenticated connection to an external service for use in automations.
Properties
| Name | Type | Description |
|---|---|---|
| uid | string | Unique identifier of the account connection. |
| name | string | Display name of the account connection. |
| service | string | The name of the external service (e.g., Slack, SendGrid). |
| created_at | string | ISO 8601 timestamp when the account connection was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Account",
"title": "Account",
"type": "object",
"description": "An authenticated connection to an external service for use in automations.",
"properties": {
"uid": {
"type": "string",
"description": "Unique identifier of the account connection."
},
"name": {
"type": "string",
"description": "Display name of the account connection."
},
"service": {
"type": "string",
"description": "The name of the external service (e.g., Slack, SendGrid)."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp when the account connection was created."
}
}
}