A Site represents a group of venues or Locations. Sites can have multiple locations. Currently, we do not allow creating, updating, or deleting sites via our API. For assistance with creating, updating, or deleting/canceling a site, please reach out to support@tripleseat.com.
Site Fields Overview
Below you will find a comprehensive list of the fields within the Sites Endpoint. The order displayed below is representative of the order in which they are displayed within a response body of a standard GET request.
| Field Name | Description | Response Example - Key | Value |
| “id” | The ID Number for the Site. | “Id”: (Numerics), |
| “customer_id” | The ID Number for the Tripleseat Customer that the Site belongs to. | “customer_id”: (Numerics), |
| “name” | The Name of the Site. | “name”: “(Alphanumerics)”, |
| “subdomain” | The Subdomain for the Site. | “subdomain”: “(Alphanumerics)”, |
| “timezone” | The Timezone that is currently set for the Site. | “timezone”: “Eastern Time (US & Canada)”, |
| “currency_code” | The Currency code set for the Site. | “currency_code”: “USD”, |
| “contact_types” | Array | An array or “collection” of IDs and Names of the Contact Types for the Site. |
“contact_types”: [ { “id”: (Numerics), “name”: (Alphanumerics) } ], |
| “event_types” | Array | An array or “collection” of IDs and Names of the Event Types for the Site. |
“event_types”: [ { “id”: (Numerics), “name”: (Alphanumerics) } ], |
| “lead_sources” | Array | An array or “collection” of IDs and Names of the Lead Sources for the Site. |
“lead_sources”: [ { “id”: (Numerics), “name”: (Alphanumerics) } ], |
| “task_types” | Array | An array or “collection” of IDs and Names of the Task Types for the Site. |
“task_types”: [ { “id”: (Numerics), “name”: (Alphanumerics) } ], |
| “referral_source” | Array | An array or “collection” of IDs and Names of the Referral Sources for the Site. |
“referral_sources”: [ { “id”: (Numerics), “name”: (Alphanumerics) } ] |
Request Example:
As mentioned at the beginning of this article, we do not allow for creating, updating, or deleting via the Sites API; however, you are able to pull this information via a GET request, as shown below:
GET https://api.tripleseat.com/v1/sites.(XML | JSON)
This request will pull all Site information. Should there be more than one Site, this will put that information in a singular response body.