Tripleseat · Schema
Lead
A potentially interested person or party for outreach.
RestaurantEventsCateringLeadsWebhooksSales
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier of the lead. |
| first_name | string | First name of the lead contact. |
| last_name | string | Last name of the lead contact. |
| email_address | string | Email address of the lead contact. |
| phone_number | string | Phone number of the lead contact. |
| company | string | Company associated with the lead. |
| event_description | string | Description of the event the lead is inquiring about. |
| event_date | string | Requested date of the event. |
| start_time | string | Requested start time of the event. |
| end_time | string | Requested end time of the event. |
| guest_count | integer | Estimated number of guests. |
| additional_information | string | Additional free-text information supplied with the lead. |
| location_id | integer | Identifier of the location the lead is intended for. |
| status | string | Current status of the lead. |
| created_at | string | Timestamp when the lead was created. |
| updated_at | string | Timestamp when the lead was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Lead",
"description": "A potentially interested person or party for outreach.",
"$id": "https://raw.githubusercontent.com/api-evangelist/tripleseat/refs/heads/main/json-schema/tripleseat-api-lead-schema.json",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier of the lead.",
"example": 500123
},
"first_name": {
"type": "string",
"description": "First name of the lead contact.",
"example": "Mark"
},
"last_name": {
"type": "string",
"description": "Last name of the lead contact.",
"example": "Lawrence"
},
"email_address": {
"type": "string",
"format": "email",
"description": "Email address of the lead contact.",
"example": "[email protected]"
},
"phone_number": {
"type": "string",
"description": "Phone number of the lead contact.",
"example": "+1-555-867-5309"
},
"company": {
"type": "string",
"description": "Company associated with the lead.",
"example": "Acme Events Co."
},
"event_description": {
"type": "string",
"description": "Description of the event the lead is inquiring about.",
"example": "Evening reception with plated dinner."
},
"event_date": {
"type": "string",
"format": "date",
"description": "Requested date of the event.",
"example": "2026-07-15"
},
"start_time": {
"type": "string",
"description": "Requested start time of the event.",
"example": "18:00"
},
"end_time": {
"type": "string",
"description": "Requested end time of the event.",
"example": "22:00"
},
"guest_count": {
"type": "integer",
"description": "Estimated number of guests.",
"example": 75
},
"additional_information": {
"type": "string",
"description": "Additional free-text information supplied with the lead.",
"example": "Evening reception with plated dinner."
},
"location_id": {
"type": "integer",
"description": "Identifier of the location the lead is intended for.",
"example": 500123
},
"status": {
"type": "string",
"description": "Current status of the lead.",
"example": "definite"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the lead was created.",
"example": "2026-06-03T14:30:00Z"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the lead was last updated.",
"example": "2026-06-03T14:30:00Z"
}
}
}