Tripleseat · Schema
Contact
An individual associated with an account.
RestaurantEventsCateringLeadsWebhooksSales
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier of the contact. |
| first_name | string | |
| last_name | string | |
| email_address | string | |
| phone_number | string | |
| account_id | integer | Identifier of the account this contact belongs to. |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Contact",
"description": "An individual associated with an account.",
"$id": "https://raw.githubusercontent.com/api-evangelist/tripleseat/refs/heads/main/json-schema/tripleseat-api-contact-schema.json",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier of the contact.",
"example": 500123
},
"first_name": {
"type": "string",
"example": "Mark"
},
"last_name": {
"type": "string",
"example": "Lawrence"
},
"email_address": {
"type": "string",
"format": "email",
"example": "[email protected]"
},
"phone_number": {
"type": "string",
"example": "+1-555-867-5309"
},
"account_id": {
"type": "integer",
"description": "Identifier of the account this contact belongs to.",
"example": 500123
},
"created_at": {
"type": "string",
"format": "date-time",
"example": "2026-06-03T14:30:00Z"
},
"updated_at": {
"type": "string",
"format": "date-time",
"example": "2026-06-03T14:30:00Z"
}
}
}