{"info":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","description":"

Welcome to the Splash API! This information has been assembled to make it easier to navigate our API and access your Splash data. This material covers the most commonly used endpoints. With the Splash API, users can retrieve data from Splash for use in other applications such as custom event hubs or data visualization tools.

\n

API Access

\n

Use of the API requires a Client ID and a Client Secret. These are obtained by contacting your Customer Success Manager and discussing your API needs. Once the Client ID and Client Secret are generated, they can be delivered via a secure, cryptographic messaging app.

\n

When working with the Splash API, here are some best practices to keep in mind:

\n
    \n
  1. Rate Limiting: Ensure you pace your API calls appropriately to prevent overloading the system.

    \n
  2. \n
  3. Access Token Reuse: Reusing the same access token for multiple requests can help streamline authentication and reduce overhead.

    \n
  4. \n
  5. Token Refresh Flow: Implement the token refresh flow to maintain secure and continuous access, especially for long-running operations.

    \n
  6. \n
  7. Response Caching: Utilizing response caching can minimize redundant requests and improve response times for frequently accessed data.

    \n
  8. \n
\n

Also, consider using the Simple Postback (outgoing webhook) integration, which offers real-time, UI-based configuration at the organization or event/theme level, and doesn't count against your API call limit. This integration can fulfill many use cases for retrieving Splash data effectively.

\n

Requests

\n

All valid Splash API requests begin with the domain: https://api.splashthat.com/ From there, the remainder of a request is built on five separate elements.

\n

Endpoint

\n

The API is typically grouped into four top-level endpoints, each interacting with a Splash Object.

\n\n

Verb

\n

Endpoints typically accept one or more of five methods/verbs:

\n\n

Path Parameters

\n

Path parameters come into play when interacting with individual Splash objects, such as a single event or a single contact. Each of these has a unique ID number, which is placed in the request path. Any remaining information is conveyed via query parameters.

\n

Query Parameters

\n

Many API interactions include query parameters but they are especially important in GET requests. Chiefly, they are used to filter, search, sort, and paginate the results so that the size and content of responses can be controlled.

\n

Request Body

\n

Request bodies are not used in all calls, and with rare exceptions only come into play when creating or updating an object. When they are used, they are in JSON format. Beyond this, there are no wider considerations regarding fields or formatting, but each endpoint that accepts JSON bodies expects a different object. These are included in the call examples for each endpoint. Refer to those as you build your requests.

\n

Responses

\n

Splash API responses are JSON payloads, with an envelope containing the data of the response itself. Each envelope has up to three sections, allowing you to predict the keys you will be interacting with for each response.

\n

Meta

\n

If all is working well, the meta section displays a code 200. Should something go wrong, however, it will change to include an error type and an error message to aid in the process of debugging what exactly went wrong.

\n

Data

\n

The data section forms the heart of any response from Splash and it is where information on successes, failures, and most importantly the data about your Splash objects is found. Each endpoint outlined here includes examples of responses from Splash containing the data you can expect to work with.

\n

Pagination

\n

Splash endpoints all accept explicit-type pagination with limits, pages, and total counts included in the responses to allow for easier interactions with the data. Not all responses have pagination, for instance, a DELETE request does not return a set of data, just a success or failure, rendering pagination unnecessary.

\n

API Rate Limiting

\n

The Splash API uses rate limiting to ensure fair usage, prevent customers from overloading resources, and maximize performance.

\n

All requests made to the Splash API using a valid Client ID are subject to a default rate limit of 2 requests per second (req/s). The rate limit is calculated based on the number of requests made within a rolling time window.

\n

If a client exceeds the rate limit, the API will respond with a 429 Too Many Requests status code, indicating that the limit has been exceeded. This response includes a RateLimit-Reset header that specifies the duration in seconds, after which the client can retry the request.

\n

{ \"message\": \"API rate limit exceeded\" }

\n

To comply with the rate limit, monitoring the rate of your API requests is important. You can determine the remaining limit by inspecting the headers of the API response. For example, the X-RateLimit-Limit-Second header indicates the total number of requests allowed within the rate limit window, and the X-RateLimit-Remaining-Second header shows the number of requests remaining before reaching the limit.

\n

For more details on how to adhere to the rate limit, the benefits and impacts of rate limiting, and examples of the 429 response, refer to our Help Center article What is API rate limiting and what are the benefits and impacts?

\n","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"API Access","slug":"api-access"},{"content":"Requests","slug":"requests"}],"owner":"6088160","collectionId":"1ea4e17d-5541-4b22-bffb-95199f944712","publishedId":"SVmvTe3o","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"5230EE"},"publishDate":"2019-10-22T19:40:51.000Z"},"item":[{"name":"Authentication","item":[{"name":"Access Token","id":"82e509c9-b52e-4c0f-81a2-2f2b398bff21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"grant_type","value":"password","type":"text"},{"key":"scope","value":"user","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"https://api.splashthat.com/oauth/v2/token","description":"

Use this endpoint and its parameters to acquire an Access Token.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["oauth","v2","token"],"host":["https://api.splashthat.com"],"query":[],"variable":[]}},"response":[{"id":"01486188-a442-47b1-9467-f7be59677651","name":"Successful Authorization","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"grant_type","value":"password","type":"text"},{"key":"scope","value":"user","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"https://api.splashthat.com/oauth/v2/token"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"access_token\": \"OTQyNWVkZDEzOGFjZjZkNzljMGFkZTI2OWZlNWNmMDIyNzA3OTFkNjJkZGVhZTk1OWZhZTAwMGU4YTIzMzIwMA\",\n \"expires_in\": 604800,\n \"token_type\": \"bearer\",\n \"scope\": \"user\",\n \"refresh_token\": \"ZDEyZTgwOTVjNzFjYTE2NGZmNjRmOTAyOWRlNDk3OTA3MTc3ZGM1MDAzNGQzYjlkMDU1YTdlMDViYWQyOWFkZQ\"\n}"},{"id":"ffb835a9-3483-4f00-8657-8a5b084069a3","name":"Rejected Credentials","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"grant_type","value":"password","type":"text"},{"key":"scope","value":"user","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"https://api.splashthat.com/oauth/v2/token"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"error\": \"invalid_grant\",\n \"error_description\": \"Invalid username and password combination\"\n}"}],"_postman_id":"82e509c9-b52e-4c0f-81a2-2f2b398bff21"},{"name":"Refresh Token","id":"363a070f-d478-4ffc-85f6-2b6280e9b38f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.splashthat.com/oauth/v2/token?client_id={{client_id}}&client_secret={{client_secret}}&grant_type=refresh_token&scope=user&refresh_token={{refresh_token}}","description":"

When your Access Token has expired, use this endpoint along with your Refresh Token to acquire a new one.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["oauth","v2","token"],"host":["https://api.splashthat.com"],"query":[{"description":{"content":"

Your Splash API client ID

\n","type":"text/plain"},"key":"client_id","value":"{{client_id}}"},{"description":{"content":"

Your Splash API client secret

\n","type":"text/plain"},"key":"client_secret","value":"{{client_secret}}"},{"description":{"content":"

This OAuth grant type indicates that you are refreshing your authentication, abridging the need for a username and password.

\n","type":"text/plain"},"key":"grant_type","value":"refresh_token"},{"description":{"content":"

As with the Access Token, the scope for the Refresh Token will be \"user.\"

\n","type":"text/plain"},"key":"scope","value":"user"},{"description":{"content":"

The refresh token you received when you originally authorized.

\n","type":"text/plain"},"key":"refresh_token","value":"{{refresh_token}}"}],"variable":[]}},"response":[{"id":"495b5bbc-7e22-401b-bcdf-6afcf79313c8","name":"Successful Refresh","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.splashthat.com/oauth/v2/token?client_id={{client_id}}&client_secret={{client_secret}}&grant_type=refresh_token&scope=user&refresh_token={{refresh_token}}","host":["https://api.splashthat.com"],"path":["oauth","v2","token"],"query":[{"key":"client_id","value":"{{client_id}}"},{"key":"client_secret","value":"{{client_secret}}"},{"key":"grant_type","value":"refresh_token"},{"key":"scope","value":"user"},{"key":"refresh_token","value":"{{refresh_token}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Sep 2019 17:23:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"no-store, private"},{"key":"Pragma","value":"no-cache"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"access_token\": \"OTQyNWVkZDEzOGFjZjZkNzljMGFkZTI2OWZlNWNmMDIyNzA3OTFkNjJkZGVhZTk1OWZhZTAwMGU4YTIzMzIwMA\",\n \"expires_in\": 604800,\n \"token_type\": \"bearer\",\n \"scope\": \"user\",\n \"refresh_token\": \"ZDEyZTgwOTVjNzFjYTE2NGZmNjRmOTAyOWRlNDk3OTA3MTc3ZGM1MDAzNGQzYjlkMDU1YTdlMDViYWQyOWFkZQ\"\n}"},{"id":"6b7d0f23-aa6a-4a46-8f5c-a15753ea045a","name":"Invalid Refresh Token","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.splashthat.com/oauth/v2/token?client_id={{client_id}}&client_secret={{client_secret}}&grant_type=refresh_token&scope=user&refresh_token={{refresh_token}}","host":["https://api.splashthat.com"],"path":["oauth","v2","token"],"query":[{"key":"client_id","value":"{{client_id}}"},{"key":"client_secret","value":"{{client_secret}}"},{"key":"grant_type","value":"refresh_token"},{"key":"scope","value":"user"},{"key":"refresh_token","value":"{{refresh_token}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Sep 2019 17:23:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-store, private"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n \"error\": \"invalid_grant\",\n \"error_description\": \"Invalid refresh token\"\n}"}],"_postman_id":"363a070f-d478-4ffc-85f6-2b6280e9b38f"}],"id":"477ca8a0-07bb-43a0-a9ce-7d6db618cf7d","description":"

The authentication process for the Splash API follows the OAuth 2.0 standard. A Client ID, a Client Secret, a Username, and a Password are needed to acquire an access token. These parameters must be included in a request made to the Access Token endpoint, as explained below.

\n

Upon successful validation of these credentials, you will be issued both an Access Token and a Refresh Token. The Access Token remains valid for the next 8 hours. After this period, you must redeem the Refresh Token to acquire a new one. For all subsequent API requests, your Access Token should be included in the Authorization header for proper authentication.

\n","event":[{"listen":"prerequest","script":{"id":"04a2d88d-5ac2-4760-b2c6-bb2c87f8b62a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"817fb7cf-9c11-4923-8f38-343ce40a6002","type":"text/javascript","exec":[""]}}],"_postman_id":"477ca8a0-07bb-43a0-a9ce-7d6db618cf7d","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}}},{"name":"Events","item":[{"name":"All Events","id":"a761b9f1-dfa4-41fc-8ec5-22125597760c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"url":"https://api.splashthat.com/events?limit=5&page=1&search={{event_search_string}}&sort={{sort_type}}&upcoming={{upcoming_bool}}&past={{past_bool}}&tbd={{tbd_bool}}&event_start_after={{my_timestamp_a}}&event_start_before={{my_timestamp_b}}&tag_names[0]={{event_tag}}&venues[0]={{my_venue}}&event_type_ids[0]={{my_event_type}}&include_themes={{themes_bool}}&theme_ids[0]={{my_theme_id}}&exclude_ids[0]={{excluded_event}}&rsvp_events={{rsvp_bool}}&ticketed_events={{ticketed_bool}}&viewGroups[]=eventWorkflow","description":"

This endpoint is used for retrieving lists of Events from your Splash organization. It has a lot of flexibility to allow you to specify different search parameters and filters. Use these parameters to ensure workable payload sizes and relevant results.

\n

You can also include workflow information in the response payload by including the viewsGroups[]=eventWorkflow query parameter.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["events"],"host":["https://api.splashthat.com"],"query":[{"description":{"content":"

Limits how many events are returned. If no limit is specified, the default is set to 5.

\n","type":"text/plain"},"key":"limit","value":"5"},{"description":{"content":"

When using a limit, this will allow you to specify which page of results to retrieve.

\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"

Use a search string to refine your results. Filters results by Event title, domain, and venue fields.

\n","type":"text/plain"},"key":"search","value":"{{event_search_string}}"},{"description":{"content":"

Sort the results by a requested field. Supported options are:

\n
    \n
  • created_desc
  • \n
  • created_asc
  • \n
  • event_start_desc
  • \n
  • event_start_asc
  • \n
  • title_asc
  • \n
  • title_desc
  • \n
  • modified_asc
  • \n
  • modified_desc
  • \n
\n","type":"text/plain"},"key":"sort","value":"{{sort_type}}"},{"description":{"content":"

Constrains your results to events with a start date later than 2 days ago.

\n","type":"text/plain"},"key":"upcoming","value":"{{upcoming_bool}}"},{"description":{"content":"

Include or exclude past events.

\n","type":"text/plain"},"key":"past","value":"{{past_bool}}"},{"description":{"content":"

Include or exclude events with TBD dates.

\n","type":"text/plain"},"key":"tbd","value":"{{tbd_bool}}"},{"description":{"content":"

Only return events that start after a certain date (format: yyyy-mm-dd hh:mm:ss).

\n","type":"text/plain"},"key":"event_start_after","value":"{{my_timestamp_a}}"},{"description":{"content":"

Only return events that start before a certain date (format: yyyy-mm-dd hh:mm:ss).

\n","type":"text/plain"},"key":"event_start_before","value":"{{my_timestamp_b}}"},{"description":{"content":"

Search your Splash events by their tags.

\n","type":"text/plain"},"key":"tag_names[0]","value":"{{event_tag}}"},{"description":{"content":"

Specify the venues by which you would like to constrain your results.

\n","type":"text/plain"},"key":"venues[0]","value":"{{my_venue}}"},{"description":{"content":"

Enter the event types by which you would like to filter.

\n","type":"text/plain"},"key":"event_type_ids[0]","value":"{{my_event_type}}"},{"description":{"content":"

Include themes in the event list.

\n","type":"text/plain"},"key":"include_themes","value":"{{themes_bool}}"},{"description":{"content":"

Enter theme IDs to only retrieve events that use that specified theme.

\n","type":"text/plain"},"key":"theme_ids[0]","value":"{{my_theme_id}}"},{"description":{"content":"

Exclude specific event IDs from your request.

\n","type":"text/plain"},"key":"exclude_ids[0]","value":"{{excluded_event}}"},{"description":{"content":"

Limit your request to only RSVP events.

\n","type":"text/plain"},"key":"rsvp_events","value":"{{rsvp_bool}}"},{"description":{"content":"

Limit your request to only return ticketed events.

\n","type":"text/plain"},"key":"ticketed_events","value":"{{ticketed_bool}}"},{"description":{"content":"

Including this query parameter and value will return the workflow information in the response payloads.

\n","type":"text/plain"},"key":"viewGroups[]","value":"eventWorkflow"}],"variable":[]}},"response":[{"id":"0cb8af96-f23e-4cba-b417-79616715beb8","name":"Retrieve events with workflow information","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"Use this header to send your access token.","key":"Authorization","type":"text","value":"{{my_token}}"}],"url":{"raw":"https://api.splashthat.com/events?limit=5&page=1&access_token=NjNiMDgyODljNzgwZjgxZGM0NzUzOThjOTNkNDI2NjY3NWM2YmVjMTViYjkxODgyN2Y1ODI2NTQwN2E5NWUxNQ&viewGroups[]=eventWorkflow","host":["https://api.splashthat.com"],"path":["events"],"query":[{"key":"limit","value":"5","description":"Limits how many events are returned. If no limit is specified, the default is set to 5. "},{"key":"page","value":"1","description":"When using a limit, this will allow you to specify which page of results to retrieve."},{"key":"search","value":"{{event_search_string}}","description":"Use a search string to refine your results. ","disabled":true},{"key":"sort","value":"{{sort_type}}","description":"Sort the results by a requested field. Supported options are: \n* created_desc \n* created_asc\n* event_start_desc\n* event_start_asc\n* title_asc\n* title_desc\n* modified_asc\n* modified_desc","disabled":true},{"key":"upcoming","value":"{{upcoming_bool}}","description":"Constrains your results to events with a start date later than 2 days ago.","disabled":true},{"key":"past","value":"{{past_bool}}","description":"Include or exclude past events.","disabled":true},{"key":"tbd","value":"{{tbd_bool}}","description":"Include or exclude events with TBD dates. ","disabled":true},{"key":"event_start_after","value":"{{my_timestamp_a}}","description":"Only return events that start after a certain date (format: yyyy-mm-dd hh:mm:ss).","disabled":true},{"key":"event_start_before","value":"{{my_timestamp_b}}","description":"Only return events that start before a certain date (format: yyyy-mm-dd hh:mm:ss).","disabled":true},{"key":"tag_names[0]","value":"{{event_tag}}","description":"Search your Splash events by their tags. ","disabled":true},{"key":"venues[0]","value":"{{my_venue}}","description":"Specify the venues by which you would like to constrain your results. ","disabled":true},{"key":"event_type_ids[0]","value":"{{my_event_type}}","description":"Enter the event types by which you would like to filter.","disabled":true},{"key":"include_themes","value":"{{themes_bool}}","description":"Include themes in the event list.","disabled":true},{"key":"theme_ids[0]","value":"{{my_theme_id}}","description":"Enter theme IDs to only retrieve events that use that specified theme.","disabled":true},{"key":"exclude_ids[0]","value":"{{excluded_event}}","description":"Exclude specific event IDs from your request.","disabled":true},{"key":"rsvp_events","value":"{{rsvp_bool}}","description":"Limit your request to only RSVP events.","disabled":true},{"key":"ticketed_events","value":"{{ticketed_bool}}","description":"Limit your request to only return ticketed events.","disabled":true},{"key":"access_token","value":"NjNiMDgyODljNzgwZjgxZGM0NzUzOThjOTNkNDI2NjY3NWM2YmVjMTViYjkxODgyN2Y1ODI2NTQwN2E5NWUxNQ"},{"key":"viewGroups[]","value":"eventWorkflow","description":"Including this query parameter and value will return the workflow information in the response payloads. "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 23 Sep 2020 16:39:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"page\": 1,\n \"limit\": 5,\n \"count\": 41,\n \"data\": [\n {\n \"id\": 457932652,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 0\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Perry\",\n \"event_owner_last_name\": \"Hubs\",\n \"event_owner_email\": \"perry+hubs@splashthat.com\",\n \"registration_updating_enabled\": \"\",\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24548,\n \"name\": \"Happy Hours\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n []\n ],\n \"event_workflow\": {\n \"workflow_id\": \"0212d6a0-fdad-11ea-be23-d7767e14ad3b\",\n \"status\": \"approved\"\n },\n \"splash_theme\": {\n \"id\": 1212608,\n \"name\": \"Promote\",\n \"abbr\": \"Promote\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/457/457399824/assets/1f8.sm-2-full.png\",\n \"thumbnail_url\": null,\n \"sort\": 0,\n \"active\": true,\n \"created\": \"2019-09-16T17:13:30-0400\"\n },\n \"event_setting\": {\n \"id\": 1833616,\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457451161/assets/5e719763a740b026dec60a467d2b5a5a.cf6.ben-blennerhassett-ZXfUUM_LR0k-unsplash.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#CorialentNow\",\n \"rsvp_max\": 1,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"FIRST NAME\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"LAST NAME\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"EMAIL\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x1.deb10686.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x2.6ee6d63d.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x3.3733ff1e.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"triggered_emails\": [\n {\n \"trigger\": \"rsvp-yes\",\n \"active\": 1,\n \"include_pdf_attachment\": 0,\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n },\n {\n \"trigger\": \"ticket-default\",\n \"subject\": \"[first_name], thanks for purchasing tickets for [title].\",\n \"content\": \"Thank you for your purchase. \",\n \"include_calendar_attachment\": 1,\n \"include_pdf_attachment\": 1,\n \"pdf_content\": null,\n \"use_default_confirmation\": 0,\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n },\n {\n \"trigger\": \"ticket-multi\",\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n }\n ]\n },\n \"event_host\": \"Perry Hubs\",\n \"button_closed_message\": \"\",\n \"autosave\": false\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"12701\"\n ],\n \"title\": \"Hello Test Event\",\n \"description\": \"\",\n \"description_text\": \"

It’s not just another fashion event, it is however – all about the benjamins, his glasses that is. Get access to the finest in designer eyewear from Scandinavian boutique brands and couture eyewear fanatics. Space is limited.

\",\n \"event_start\": \"2020-09-30T19:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2020-09-23T10:56:47-0400\",\n \"modified_at\": \"2020-09-23T10:56:50-0400\",\n \"domain\": \"hellotestevent\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"published\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://hellotestevent.splashthat.com\",\n \"mobile_check_in_url\": \"https://hellotestevent.splashthat.com/checkin/b319260d49d2c4ae25686cfdc682c464db60ee920ac717bcebbc7b39ec545b06\"\n },\n {\n \"id\": 457754628,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 3\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Perry\",\n \"event_owner_last_name\": \"Splash Master\",\n \"event_owner_email\": \"perry+master@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24549,\n \"name\": \"Exhibits & Shows\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n [],\n [],\n []\n ],\n \"event_workflow\": null,\n \"splash_theme\": {\n \"id\": 1205922,\n \"name\": \"Test Faster Theme\",\n \"abbr\": \"TestFaster Theme\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/230/2304161/assets/9c7.PR_conference_2.png\",\n \"thumbnail_url\": null,\n \"sort\": 0,\n \"active\": false,\n \"created\": \"2018-03-30T11:43:45-0400\"\n },\n \"event_setting\": {\n \"id\": 1726545,\n \"header_image\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/361.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#TestingFasterFont\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457754628.x1.986473b6.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457754628.x2.4d82334f.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457754628.x3.94cb2197.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": [],\n \"event_host\": \"Perry Splash Master\",\n \"button_closed_message\": \"\",\n \"autosave\": true\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"6050\",\n \"6051\",\n \"7090\",\n \"8511\",\n \"8533\",\n \"12701\"\n ],\n \"title\": \"New Event with Touchpoint\",\n \"description\": \"\",\n \"description_text\": \"

The Corialent NOW Conference is an invite-only event for senior-level marketers in the B2B sector. We’re filling the room with CMOs, creative directors, veteran agency executives, brand directors, and industry analysts. The goal: to get the smartest minds in B2B marketing in one room and then learn a whole lot from each other. Let's do this.

\",\n \"event_start\": \"2020-06-02T19:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2020-05-26T10:13:57-0400\",\n \"modified_at\": \"2020-09-16T15:49:45-0400\",\n \"domain\": \"neweventwithtouchpoint\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"published\": true,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://neweventwithtouchpoint.splashthat.com\",\n \"mobile_check_in_url\": \"https://neweventwithtouchpoint.splashthat.com/checkin/c6e4922813459594e1db22e460acb32943e29790adc3cdadb8cfc1d32ce2e437\"\n },\n {\n \"id\": 457724461,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 0\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Perry\",\n \"event_owner_last_name\": \"Splash Master\",\n \"event_owner_email\": \"perry+master@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 18868,\n \"name\": \"Conference\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n [],\n []\n ],\n \"event_workflow\": null,\n \"splash_theme\": {\n \"id\": 1205922,\n \"name\": \"Test Faster Theme\",\n \"abbr\": \"TestFaster Theme\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/230/2304161/assets/9c7.PR_conference_2.png\",\n \"thumbnail_url\": null,\n \"sort\": 0,\n \"active\": false,\n \"created\": \"2018-03-30T11:43:45-0400\"\n },\n \"event_setting\": {\n \"id\": 1696351,\n \"header_image\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/361.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#TestingFasterFont\",\n \"rsvp_max\": 1,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457724461.x1.771843a2.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457724461.x2.d8035789.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457724461.x3.b62b133c.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": [],\n \"event_host\": \"Perry Splash Master\",\n \"button_closed_message\": \"\",\n \"autosave\": true\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"6050\",\n \"6051\",\n \"7090\",\n \"8511\",\n \"8533\",\n \"12701\"\n ],\n \"title\": \"My Vimeo Livestream\",\n \"description\": \"\",\n \"description_text\": \"

The Corialent NOW Conference is an invite-only event for senior-level marketers in the B2B sector. We’re filling the room with CMOs, creative directors, veteran agency executives, brand directors, and industry analysts. The goal: to get the smartest minds in B2B marketing in one room and then learn a whole lot from each other. Let's do this.

\",\n \"event_start\": \"2020-05-01T19:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2020-04-24T16:09:39-0400\",\n \"modified_at\": \"2020-04-24T16:09:43-0400\",\n \"domain\": \"myvimeolivestream\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"published\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://myvimeolivestream.splashthat.com\",\n \"mobile_check_in_url\": \"https://myvimeolivestream.splashthat.com/checkin/7ee4103d7228486389a5dfaa5c7ec357639564ff75ee83533498e84c9aad6fa0\"\n },\n {\n \"id\": 457720381,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 2\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Perry\",\n \"event_owner_last_name\": \"Splash Master\",\n \"event_owner_email\": \"perry+master@splashthat.com\",\n \"registration_updating_enabled\": \"\",\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 18868,\n \"name\": \"Conference\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n [],\n [],\n []\n ],\n \"event_workflow\": null,\n \"splash_theme\": {\n \"id\": 1213902,\n \"name\": \"Hero\",\n \"abbr\": \"Hero\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/457/457408231/assets/cc5.med-3-full.png\",\n \"thumbnail_url\": null,\n \"sort\": 0,\n \"active\": true,\n \"created\": \"2020-01-14T12:26:00-0500\"\n },\n \"event_setting\": {\n \"id\": 1692291,\n \"header_image\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/361.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"tickets\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#CorialentNow\",\n \"rsvp_max\": 1,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457720381.x1.5e4f31eb.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457720381.x2.2c01267f.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457720381.x3.8022838b.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"triggered_emails\": [\n {\n \"trigger\": \"rsvp-yes\",\n \"event_message_id\": null,\n \"active\": 1,\n \"event_message_linked_to_theme\": 1,\n \"include_pdf_attachment\": 0\n },\n {\n \"trigger\": \"ticket-default\",\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n },\n {\n \"trigger\": \"ticket-multi\",\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n }\n ]\n },\n \"event_host\": \"Perry Splash Master\",\n \"button_closed_message\": \"\",\n \"autosave\": true\n },\n \"ticket_types\": [\n {\n \"id\": 12835792,\n \"ticket_order_discounts\": [],\n \"parent_ticket_types\": [],\n \"primary_ticket_type\": null,\n \"name\": \"GA\",\n \"display_date\": \"-0001-11-30T00:00:00-0500\",\n \"price\": 0,\n \"display_date_end\": \"-0001-11-30T00:00:00-0500\",\n \"custom_rsvp_fields\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ]\n }\n ],\n \"statistics\": null,\n \"group_ids\": [\n \"6050\",\n \"6051\",\n \"7090\",\n \"8511\",\n \"8533\",\n \"12701\"\n ],\n \"title\": \"Testing Tick Confirmationz\",\n \"description\": \"\",\n \"description_text\": \"

The Corialent NOW Conference is an invite-only event for senior-level marketers in the B2B sector. We’re filling the room with CMOs, creative directors, veteran agency executives, brand directors, and industry analysts. The goal: to get the smartest minds in B2B marketing in one room and then learn a whole lot from each other. Let's do this.

\",\n \"event_start\": \"2020-04-29T19:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2020-04-22T14:23:55-0400\",\n \"modified_at\": \"2020-04-22T14:21:48-0400\",\n \"domain\": \"testingtickconfirmationz\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"published\": true,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://testingtickconfirmationz.splashthat.com\",\n \"mobile_check_in_url\": \"https://testingtickconfirmationz.splashthat.com/checkin/d58c547f11299dafd98dee5c92851a11cb0f9d8fe1ee69c9f1768afea0ecb8d9\"\n },\n {\n \"id\": 457648593,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 1\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Perry\",\n \"event_owner_last_name\": \"Piep\",\n \"event_owner_email\": \"perry@splashthat.com\",\n \"registration_updating_enabled\": true,\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 18868,\n \"name\": \"Conference\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n [],\n [],\n [],\n []\n ],\n \"event_workflow\": null,\n \"splash_theme\": {\n \"id\": 1200635,\n \"name\": \"Bedford\",\n \"abbr\": \"Bedford\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129247/assets/d37.2019-05-13-19-00-bedford-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 26,\n \"active\": true,\n \"created\": \"2015-04-14T14:34:43-0400\"\n },\n \"event_setting\": {\n \"id\": 1619949,\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/205/2058638/assets/f98.Stocksy_txp88de263aPtI000_Medium_354714.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#BedfordV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"values\": [],\n \"selected_values\": [],\n \"name\": \"Job Title\",\n \"required\": false,\n \"deleted\": false,\n \"external_link\": \"invalid\",\n \"custom_question_id\": 371203,\n \"column_name\": \"custom_field_8\"\n },\n {\n \"type\": \"radio\",\n \"values\": [\n \"Yes{{1}}\",\n \"No{{0}}\"\n ],\n \"selected_values\": [],\n \"name\": \"Are you attending?\",\n \"required\": true,\n \"deleted\": false,\n \"external_link\": \"invalid\",\n \"custom_question_id\": \"invalid\",\n \"column_name\": \"custom_field_9\"\n },\n {\n \"type\": \"checkbox\",\n \"values\": [],\n \"selected_values\": [],\n \"name\": \"Bringing a guest?\",\n \"required\": false,\n \"deleted\": false,\n \"external_link\": \"invalid\",\n \"custom_question_id\": \"invalid\",\n \"column_name\": \"custom_field_10\"\n },\n {\n \"type\": \"text\",\n \"values\": [],\n \"selected_values\": [],\n \"name\": \"Guest First Name\",\n \"required\": false,\n \"deleted\": false,\n \"external_link\": \"invalid\",\n \"custom_question_id\": \"invalid\",\n \"column_name\": \"custom_field_11\"\n },\n {\n \"type\": \"text\",\n \"values\": [],\n \"selected_values\": [],\n \"name\": \"Guest Last Name\",\n \"required\": false,\n \"deleted\": false,\n \"external_link\": \"invalid\",\n \"custom_question_id\": \"invalid\",\n \"column_name\": \"custom_field_12\"\n },\n {\n \"type\": \"email\",\n \"values\": [],\n \"selected_values\": [],\n \"name\": \"Guest Email\",\n \"required\": false,\n \"deleted\": false,\n \"external_link\": \"invalid\",\n \"custom_question_id\": \"invalid\",\n \"column_name\": \"custom_field_13\"\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457648593.x1.c4b82b0e.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457648593.x2.f8af34d2.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457648593.x3.72159e25.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": [],\n \"event_host\": \"Perry Piep\",\n \"button_closed_message\": \"\",\n \"autosave\": true\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"10061\"\n ],\n \"title\": \"Experience is Everything Conference 2020\",\n \"description\": \"\",\n \"description_text\": \"

Clear your calendar - It's going down! Bedford V2 kicks off on April 20th, and you're invited to take part in the festivities. Splash HQ (122 W 26th St) is our meeting spot for a night of fun and excitement. Come one, come all, bring a guest, and hang loose. This is going to be epic!

\",\n \"event_start\": \"2020-02-20T19:00:00-0500\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2020-02-13T16:24:37-0500\",\n \"modified_at\": \"2020-02-19T15:35:44-0500\",\n \"domain\": \"experienceiseverythingconference\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"published\": true,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://experienceiseverythingconference.splashthat.com\",\n \"mobile_check_in_url\": \"https://experienceiseverythingconference.splashthat.com/checkin/7cb6e8db782d84852cb54aa7f43d195a88b8800681eec8a76c589ced361a3091\"\n }\n ],\n \"meta\": {\n \"code\": 200\n },\n \"pagination\": {\n \"page\": 1,\n \"limit\": 5,\n \"count\": 41\n }\n}"},{"id":"d38548ab-abdc-4510-9b30-6daebf3b2f47","name":"Get Events by tags and dates","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/events?limit=5&page=1&tag_names[0]=Finals&event_start_after=2025-06-2 00:00:00&=","host":["https://api.splashthat.com"],"path":["events"],"query":[{"key":"limit","value":"5","description":"(integer) Limits how many events are returned, which paginates the response. "},{"key":"page","value":"1","description":"(integer) When using a limit, this will allow you to specify which page of results you would like to retrieve."},{"key":"search","value":"","description":"(string) Use a search string to filter your results. ","disabled":true},{"key":"sort","value":"","description":"(string) Sort the results by a requested field. Supported options are: \n* created_desc \n* created_asc\n* event_start_desc\n* event_start_asc\n* title_asc\n* title_desc","disabled":true},{"key":"upcoming","value":"","description":"(boolean) Include or exclude upcoming events.","disabled":true},{"key":"past","value":"","description":"(boolean) Include or exclude past events.","disabled":true},{"key":"tbd","value":"","description":"(boolean) Include or exclude events with TBD dates. ","disabled":true},{"key":"include_themes","value":"","description":"(boolean) Include themes in the event list.","disabled":true},{"key":"rsvp_events","value":"","description":"(boolean) Limit your request to only return RSVP events.","disabled":true},{"key":"ticketed_events","value":"","description":"(boolean) Limit your request to only return ticketed events.","disabled":true},{"key":"exclude_ids","value":"","description":"(array [integer]) Exclude specific event IDs from your request. ","disabled":true},{"key":"tag_names[0]","value":"Finals"},{"key":"event_start_after","value":"2025-06-2 00:00:00"},{"key":"event_start_before","value":"","type":"text","disabled":true},{"key":"","value":"","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 19:04:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"page\": 1,\n \"limit\": 5,\n \"count\": 1,\n \"data\": [\n {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 1\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 16\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 4\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443344,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24551,\n \"name\": \"Seminars & Workshops\"\n },\n \"time_zone\": [],\n \"event_stages\": [],\n \"splash_theme\": {\n \"id\": 1200654,\n \"name\": \"Gramercy\",\n \"abbr\": \"Gramercy\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129252/assets/4cc.2019-05-13-19-17-gramercy-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 29,\n \"active\": true,\n \"created\": \"2015-04-20T10:47:45-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/splash/KWH_0438.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439348,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#GramercyV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/cyclopsbigexam.splashthat.com%3Fpartial%3D168549%26screenshotHash%3D0dec21221b479cf8%26showWorkspace%3D1%26t%3D1568149702%26isTakingScreenshot%3D174.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/cyclopsbigexam.splashthat.com%3Fpartial%3D168549%26screenshotHash%3D0dec21221b479cf8%26showWorkspace%3D1%26t%3D1568149702%26isTakingScreenshot%3D123.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/cyclopsbigexam.splashthat.com%3Fpartial%3D168549%26screenshotHash%3D0dec21221b479cf8%26showWorkspace%3D1%26t%3D1568149702%26isTakingScreenshot%3D143.png\"\n },\n \"venue_tbd\": 0,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-06-10T13:01:26-0400\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"cached_maps\": {\n \"wide\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443344/assets/map-1568149701.550x220.png\",\n \"square\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443344/assets/map-1568149702.200x200.png\"\n },\n \"google_map_url\": \"http://maps.google.com/?q=NaN,NaN\"\n },\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Cyclops' Big Exam\",\n \"description\": \"\",\n \"description_text\": \"\",\n \"event_start\": \"2025-06-02T11:00:00-0400\",\n \"event_end\": \"2025-06-02T14:00:00-0400\",\n \"hide_event_time\": true,\n \"venue_name\": \"Main Classroom\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2019-09-10T17:08:16-0400\",\n \"modified_at\": \"2019-09-10T17:08:21-0400\",\n \"domain\": \"cyclopsbigexam\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://cyclopsbigexam.splashthat.com\",\n \"mobile_check_in_url\": \"https://cyclopsbigexam.splashthat.com/checkin/83a9d7ced25c0dc43800cb7149300e8322e6137cb56c2e24512286bfca8c0afb\"\n }\n ],\n \"meta\": {\n \"code\": 200\n },\n \"pagination\": {\n \"page\": 1,\n \"limit\": 5,\n \"count\": 1\n }\n}"},{"id":"db736134-c588-4926-a6ec-e4492d33bc9b","name":"Get All Events","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/events?limit=5&page=1","host":["https://api.splashthat.com"],"path":["events"],"query":[{"key":"limit","value":"5","description":"(integer) Limits how many events are returned, which paginates the response. "},{"key":"page","value":"1","description":"(integer) When using a limit, this will allow you to specify which page of results you would like to retrieve."},{"key":"search","value":"","description":"(string) Use a search string to filter your results. ","disabled":true},{"key":"sort","value":"","description":"(string) Sort the results by a requested field. Supported options are: \n* created_desc \n* created_asc\n* event_start_desc\n* event_start_asc\n* title_asc\n* title_desc","disabled":true},{"key":"upcoming","value":"","description":"(boolean) Include or exclude upcoming events.","disabled":true},{"key":"past","value":"","description":"(boolean) Include or exclude past events.","disabled":true},{"key":"tbd","value":"","description":"(boolean) Include or exclude events with TBD dates. ","disabled":true},{"key":"include_themes","value":"","description":"(boolean) Include themes in the event list.","disabled":true},{"key":"rsvp_events","value":"","description":"(boolean) Limit your request to only return RSVP events.","disabled":true},{"key":"ticketed_events","value":"","description":"(boolean) Limit your request to only return ticketed events.","disabled":true},{"key":"exclude_ids","value":"","description":"(array [integer]) Exclude specific event IDs from your request. ","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 18:57:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"page\": 1,\n \"limit\": 5,\n \"count\": 6,\n \"data\": [\n {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 3\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 21\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443351,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 51620,\n \"name\": \"Hub\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n []\n ],\n \"splash_theme\": {\n \"id\": 1200635,\n \"name\": \"Bedford\",\n \"abbr\": \"Bedford\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129247/assets/d37.2019-05-13-19-00-bedford-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 25,\n \"active\": true,\n \"created\": \"2015-04-14T14:34:43-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/205/2058638/assets/f98.Stocksy_txp88de263aPtI000_Medium_354714.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439353,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#BedfordV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/xavierschoolfinalsweek.splashthat.com%3Fpartial%3D898032%26screenshotHash%3Da8518a37a6791520%26showWorkspace%3D1%26t%3D1568149837%26isTakingScreenshot%3D132.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/xavierschoolfinalsweek.splashthat.com%3Fpartial%3D898032%26screenshotHash%3Da8518a37a6791520%26showWorkspace%3D1%26t%3D1568149837%26isTakingScreenshot%3D15.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/xavierschoolfinalsweek.splashthat.com%3Fpartial%3D898032%26screenshotHash%3Da8518a37a6791520%26showWorkspace%3D1%26t%3D1568149837%26isTakingScreenshot%3D179.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-11-04T11:14:17-0500\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": [],\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Xavier School Finals Week\",\n \"description\": \"\",\n \"description_text\": \"

Clear your calendar - It's going down! Bedford V2 kicks off on April 20th, and you're invited to take part in the festivities. Splash HQ (122 W 26th St) is our meeting spot for a night of fun and excitement. Come one, come all, bring a guest, and hang loose. This is going to be epic!

\",\n \"event_start\": null,\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2019-09-10T17:10:33-0400\",\n \"modified_at\": \"2019-09-10T17:21:59-0400\",\n \"domain\": \"xavierschoolfinalsweek\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 2,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://xavierschoolfinalsweek.splashthat.com\",\n \"mobile_check_in_url\": \"https://xavierschoolfinalsweek.splashthat.com/checkin/44fa0008c4da6895bb2c70faa88d7f5913f2f24a36fee21acafb022a06064a5b\"\n },\n {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 2\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443348,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24548,\n \"name\": \"Happy Hours\"\n },\n \"time_zone\": [],\n \"event_stages\": [],\n \"splash_theme\": {\n \"id\": 1200637,\n \"name\": \"Thompson\",\n \"abbr\": \"Thompson\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129258/assets/ca5.2019-05-13-19-29-thompson-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 33,\n \"active\": true,\n \"created\": \"2015-04-14T19:56:05-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/204/2047527/assets/912.bw-room.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439351,\n \"rsvp_method\": \"collect\",\n \"lat\": \"40.7226196\",\n \"lng\": \"-73.98638900000003\",\n \"currency\": [],\n \"event_hashtag\": \"#ThompsonV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/studyhallwithwolverine.splashthat.com%3Fpartial%3D866237%26screenshotHash%3D03fab093dece11bb%26showWorkspace%3D1%26t%3D1568149788%26isTakingScreenshot%3D127.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/studyhallwithwolverine.splashthat.com%3Fpartial%3D866237%26screenshotHash%3D03fab093dece11bb%26showWorkspace%3D1%26t%3D1568149788%26isTakingScreenshot%3D114.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/studyhallwithwolverine.splashthat.com%3Fpartial%3D866237%26screenshotHash%3D03fab093dece11bb%26showWorkspace%3D1%26t%3D1568149788%26isTakingScreenshot%3D136.png\"\n },\n \"venue_tbd\": 0,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-06-10T13:07:35-0400\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"cached_maps\": {\n \"wide\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443348/assets/map-1568149787.550x220.png\",\n \"square\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443348/assets/map-1568149788.200x200.png\"\n },\n \"google_map_url\": \"http://maps.google.com/?q=40.7226196,-73.98638900000003\"\n },\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Study Hall With Wolverine\",\n \"description\": \"\",\n \"description_text\": \"\",\n \"event_start\": \"2025-06-01T16:30:00-0400\",\n \"event_end\": \"2025-06-02T03:30:00-0400\",\n \"hide_event_time\": true,\n \"venue_name\": \"The Library\",\n \"address\": \"7 Avenue A\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"zip_code\": \"10009\",\n \"country\": \"United States\",\n \"created_at\": \"2019-09-10T17:09:44-0400\",\n \"modified_at\": \"2019-09-10T17:09:47-0400\",\n \"domain\": \"studyhallwithwolverine\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://studyhallwithwolverine.splashthat.com\",\n \"mobile_check_in_url\": \"https://studyhallwithwolverine.splashthat.com/checkin/9dbf77697ea302db1c5b52b4f7ef14175d02135f47b4186994f22fe20692710f\"\n },\n {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 1\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 16\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 4\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443344,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24551,\n \"name\": \"Seminars & Workshops\"\n },\n \"time_zone\": [],\n \"event_stages\": [],\n \"splash_theme\": {\n \"id\": 1200654,\n \"name\": \"Gramercy\",\n \"abbr\": \"Gramercy\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129252/assets/4cc.2019-05-13-19-17-gramercy-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 29,\n \"active\": true,\n \"created\": \"2015-04-20T10:47:45-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/splash/KWH_0438.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439348,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#GramercyV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/cyclopsbigexam.splashthat.com%3Fpartial%3D168549%26screenshotHash%3D0dec21221b479cf8%26showWorkspace%3D1%26t%3D1568149702%26isTakingScreenshot%3D174.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/cyclopsbigexam.splashthat.com%3Fpartial%3D168549%26screenshotHash%3D0dec21221b479cf8%26showWorkspace%3D1%26t%3D1568149702%26isTakingScreenshot%3D123.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/cyclopsbigexam.splashthat.com%3Fpartial%3D168549%26screenshotHash%3D0dec21221b479cf8%26showWorkspace%3D1%26t%3D1568149702%26isTakingScreenshot%3D143.png\"\n },\n \"venue_tbd\": 0,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-06-10T13:01:26-0400\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"cached_maps\": {\n \"wide\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443344/assets/map-1568149701.550x220.png\",\n \"square\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443344/assets/map-1568149702.200x200.png\"\n },\n \"google_map_url\": \"http://maps.google.com/?q=NaN,NaN\"\n },\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Cyclops' Big Exam\",\n \"description\": \"\",\n \"description_text\": \"\",\n \"event_start\": \"2025-06-02T11:00:00-0400\",\n \"event_end\": \"2025-06-02T14:00:00-0400\",\n \"hide_event_time\": true,\n \"venue_name\": \"Main Classroom\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2019-09-10T17:08:16-0400\",\n \"modified_at\": \"2019-09-10T17:08:21-0400\",\n \"domain\": \"cyclopsbigexam\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://cyclopsbigexam.splashthat.com\",\n \"mobile_check_in_url\": \"https://cyclopsbigexam.splashthat.com/checkin/83a9d7ced25c0dc43800cb7149300e8322e6137cb56c2e24512286bfca8c0afb\"\n },\n {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 2\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 4\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 1\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443340,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 51618,\n \"name\": \"Office Hours\"\n },\n \"time_zone\": [],\n \"event_stages\": [],\n \"splash_theme\": {\n \"id\": 1200658,\n \"name\": \"Madison\",\n \"abbr\": \"Madison\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129255/assets/1db.2019-05-13-19-20-madison-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 30,\n \"active\": true,\n \"created\": \"2015-04-20T11:09:19-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/200/2002982/assets/573.HWijjF7RwOPGEJ1nb4Zb_IMG_3773.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439341,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#MadisonV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/stormsofficehours.splashthat.com%3Fpartial%3D80765%26screenshotHash%3Da1365cfba24c3c35%26showWorkspace%3D1%26t%3D1568149534%26isTakingScreenshot%3D119.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/stormsofficehours.splashthat.com%3Fpartial%3D80765%26screenshotHash%3Da1365cfba24c3c35%26showWorkspace%3D1%26t%3D1568149534%26isTakingScreenshot%3D122.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/stormsofficehours.splashthat.com%3Fpartial%3D80765%26screenshotHash%3Da1365cfba24c3c35%26showWorkspace%3D1%26t%3D1568149534%26isTakingScreenshot%3D178.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-06-10T13:03:55-0400\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": [],\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Storm's Office Hours\",\n \"description\": \"\",\n \"description_text\": \"\",\n \"event_start\": \"2025-05-15T13:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2019-09-10T17:05:30-0400\",\n \"modified_at\": \"2019-09-10T17:05:33-0400\",\n \"domain\": \"stormsofficehours\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://stormsofficehours.splashthat.com\",\n \"mobile_check_in_url\": \"https://stormsofficehours.splashthat.com/checkin/2ecd86e75b779fab34300d6cc252f675c35d5f611b4902f313b4a4c630d2f3aa\"\n },\n {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 3\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 11\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 2\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443330,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24549,\n \"name\": \"Exhibits & Shows\"\n },\n \"time_zone\": [],\n \"event_stages\": [],\n \"splash_theme\": {\n \"id\": 1200655,\n \"name\": \"Elizabeth\",\n \"abbr\": \"Elizabeth\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2128952/assets/f91.2019-05-13-19-09-elizabeth-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 27,\n \"active\": true,\n \"created\": \"2015-04-20T10:48:54-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/208/2083488/assets/4e4.RONyPwknRQOO3ag4xf3R_Kinsey.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439336,\n \"rsvp_method\": \"collect\",\n \"lat\": \"38.89127930000001\",\n \"lng\": \"-77.03005089999999\",\n \"currency\": [],\n \"event_hashtag\": \"#ElizabethV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/xavierschoolhistoryfieldtrip.splashthat.com%3Fpartial%3D265435%26screenshotHash%3Da47bf39a7dc301a8%26showWorkspace%3D1%26t%3D1568149146%26isTakingScreenshot%3D17.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/xavierschoolhistoryfieldtrip.splashthat.com%3Fpartial%3D265435%26screenshotHash%3Da47bf39a7dc301a8%26showWorkspace%3D1%26t%3D1568149146%26isTakingScreenshot%3D190.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/xavierschoolhistoryfieldtrip.splashthat.com%3Fpartial%3D265435%26screenshotHash%3Da47bf39a7dc301a8%26showWorkspace%3D1%26t%3D1568149146%26isTakingScreenshot%3D151.png\"\n },\n \"venue_tbd\": 0,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-06-10T12:54:06-0400\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"cached_maps\": {\n \"wide\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443330/assets/map-1568149145.550x220.png\",\n \"square\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443330/assets/map-1568149145.200x200.png\"\n },\n \"google_map_url\": \"http://maps.google.com/?q=38.89127930000001,-77.03005089999999\"\n },\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Xavier School History Field Trip\",\n \"description\": \"\",\n \"description_text\": \"\",\n \"event_start\": \"2025-05-06T10:00:00-0400\",\n \"event_end\": \"2025-05-06T16:00:00-0400\",\n \"hide_event_time\": true,\n \"venue_name\": \"Smithsonian National Museum of American History\",\n \"address\": \"1300 Constitution Avenue Northwest\",\n \"city\": \"Washington\",\n \"state\": \"DC\",\n \"zip_code\": \"20560\",\n \"country\": \"United States\",\n \"created_at\": \"2019-09-10T16:59:01-0400\",\n \"modified_at\": \"2019-09-10T16:59:05-0400\",\n \"domain\": \"xavierschoolhistoryfieldtrip\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://xavierschoolhistoryfieldtrip.splashthat.com\",\n \"mobile_check_in_url\": \"https://xavierschoolhistoryfieldtrip.splashthat.com/checkin/4bf12b29aa5c221681532cb3990daef72c03347dc49ebc46e55cd8a9f3f584ba\"\n }\n ],\n \"meta\": {\n \"code\": 200\n },\n \"pagination\": {\n \"page\": 1,\n \"limit\": 5,\n \"count\": 6\n }\n}"}],"_postman_id":"a761b9f1-dfa4-41fc-8ec5-22125597760c"},{"name":"Individual Event","id":"0b1ef42d-dd69-4298-97e2-df7d55cb56c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"url":"https://api.splashthat.com/events/:event_id?viewGroups[]=eventWorkflow","description":"

Retrieve a single event when its event ID is known by including the ID as a path parameter. The payload on this call is much smaller as only that event is returned, however, it is not as efficient a method of extracting event data as calling multiple events at once.

\n

To retrieve workflow ID information for approval flows, you can include the viewGroups[]=eventWorkflow URL parameter. This will include a workflow ID section in the response payload.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["events",":event_id"],"host":["https://api.splashthat.com"],"query":[{"key":"viewGroups[]","value":"eventWorkflow"}],"variable":[{"description":{"content":"

The ID of the event you would like to retrieve.

\n","type":"text/plain"},"type":"string","value":"{{my_event_id}}","key":"event_id"}]}},"response":[{"id":"a87b2995-83f2-404a-84d0-57a092e674d8","name":"Event with workflow ID in respoonse payload","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"key":"Authorization","value":"{{my_token}}","description":"Use this header to send your access token.","type":"text"}],"url":{"raw":"https://api.splashthat.com/events/:event_id?access_token=NjNiMDgyODljNzgwZjgxZGM0NzUzOThjOTNkNDI2NjY3NWM2YmVjMTViYjkxODgyN2Y1ODI2NTQwN2E5NWUxNQ&viewGroups[]=eventWorkflow","host":["https://api.splashthat.com"],"path":["events",":event_id"],"query":[{"key":"access_token","value":"NjNiMDgyODljNzgwZjgxZGM0NzUzOThjOTNkNDI2NjY3NWM2YmVjMTViYjkxODgyN2Y1ODI2NTQwN2E5NWUxNQ"},{"key":"viewGroups[]","value":"eventWorkflow","description":"This variable can be used to retrieve an event with its workflow ID information included in the payload. "}],"variable":[{"key":"event_id","value":"457932652","type":"string","description":"The ID of the event you would like to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 23 Sep 2020 16:28:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 457932652,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 0\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Peter\",\n \"event_owner_last_name\": \"Parker\",\n \"event_owner_email\": \"spiderman@splashthat.com\",\n \"registration_updating_enabled\": \"\",\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24548,\n \"name\": \"Happy Hours\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n []\n ],\n \"event_workflow\": {\n \"workflow_id\": \"0212d6a0-fdad-11ea-be23-d7767e14ad3b\",\n \"status\": \"approved\"\n },\n \"splash_theme\": {\n \"id\": 1212608,\n \"name\": \"Promote\",\n \"abbr\": \"Promote\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/457/457399824/assets/1f8.sm-2-full.png\",\n \"thumbnail_url\": null,\n \"sort\": 0,\n \"active\": true,\n \"created\": \"2019-09-16T17:13:30-0400\"\n },\n \"event_setting\": {\n \"id\": 1833616,\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457451161/assets/5e719763a740b026dec60a467d2b5a5a.cf6.ben-blennerhassett-ZXfUUM_LR0k-unsplash.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#CorialentNow\",\n \"rsvp_max\": 1,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"FIRST NAME\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"LAST NAME\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"EMAIL\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x1.deb10686.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x2.6ee6d63d.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x3.3733ff1e.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"triggered_emails\": [\n {\n \"trigger\": \"rsvp-yes\",\n \"active\": 1,\n \"include_pdf_attachment\": 0,\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n },\n {\n \"trigger\": \"ticket-default\",\n \"subject\": \"[first_name], thanks for purchasing tickets for [title].\",\n \"content\": \"Thank you for your purchase. \",\n \"include_calendar_attachment\": 1,\n \"include_pdf_attachment\": 1,\n \"pdf_content\": null,\n \"use_default_confirmation\": 0,\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n },\n {\n \"trigger\": \"ticket-multi\",\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n }\n ]\n },\n \"event_host\": \"Spider Hubs\",\n \"button_closed_message\": \"\",\n \"autosave\": false\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"12701\"\n ],\n \"title\": \"Hello Test Event\",\n \"description\": \"\",\n \"description_text\": \"

It’s not just another fashion event, it is however – all about the benjamins, his glasses that is. Get access to the finest in designer eyewear from Scandinavian boutique brands and couture eyewear fanatics. Space is limited.

\",\n \"event_start\": \"2020-09-30T19:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2020-09-23T10:56:47-0400\",\n \"modified_at\": \"2020-09-23T10:56:50-0400\",\n \"domain\": \"hellotestevent\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"published\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://hellotestevent.splashthat.com\",\n \"mobile_check_in_url\": \"https://hellotestevent.splashthat.com/checkin/b319260d49d2c4ae25686cfdc682c464db60ee920ac717bcebbc7b39ec545b06\"\n },\n \"success\": true\n}"},{"id":"bd218d02-5160-4590-8f4c-6af272de8b1f","name":"Invalid Event ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/events/:event_id","host":["https://api.splashthat.com"],"path":["events",":event_id"],"query":[{"key":"limit","value":"5","description":"(integer) Limits how many events are returned, which paginates the response. ","disabled":true},{"key":"page","value":"1","description":"(integer) When using a limit, this will allow you to specify which page of results you would like to retrieve.","disabled":true},{"key":"search","value":"","description":"(string) Use a search string to filter your results. ","disabled":true},{"key":"sort","value":"","description":"(string) Sort the results by a requested field. Supported options are: \n* created_desc \n* created_asc\n* event_start_desc\n* event_start_asc\n* title_asc\n* title_desc","disabled":true},{"key":"upcoming","value":"","description":"(boolean) Include or exclude upcoming events.","disabled":true},{"key":"past","value":"","description":"(boolean) Include or exclude past events.","disabled":true},{"key":"tbd","value":"","description":"(boolean) Include or exclude events with TBD dates. ","disabled":true},{"key":"include_themes","value":"","description":"(boolean) Include themes in the event list.","disabled":true},{"key":"rsvp_events","value":"","description":"(boolean) Limit your request to only return RSVP events.","disabled":true},{"key":"ticketed_events","value":"","description":"(boolean) Limit your request to only return ticketed events.","disabled":true},{"key":"exclude_ids","value":"","description":"(array [integer]) Exclude specific event IDs from your request. ","disabled":true},{"key":"tag_names[0]","value":"Finals","disabled":true},{"key":"event_start_after","value":"2025-06-2 00:00:00","disabled":true}],"variable":[{"key":"event_id","value":"999999999"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 19:07:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 403,\n \"message\": \"Forbidden\",\n \"errors\": null\n },\n \"data\": {\n \"event_id\": \"999999999\"\n }\n}"},{"id":"fb88a368-cc0b-4a2c-b88f-a88909b38803","name":"Get a single event by ID ","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/events/:event_id","host":["https://api.splashthat.com"],"path":["events",":event_id"],"query":[{"key":"limit","value":"5","description":"(integer) Limits how many events are returned, which paginates the response. ","disabled":true},{"key":"page","value":"1","description":"(integer) When using a limit, this will allow you to specify which page of results you would like to retrieve.","disabled":true},{"key":"search","value":"","description":"(string) Use a search string to filter your results. ","disabled":true},{"key":"sort","value":"","description":"(string) Sort the results by a requested field. Supported options are: \n* created_desc \n* created_asc\n* event_start_desc\n* event_start_asc\n* title_asc\n* title_desc","disabled":true},{"key":"upcoming","value":"","description":"(boolean) Include or exclude upcoming events.","disabled":true},{"key":"past","value":"","description":"(boolean) Include or exclude past events.","disabled":true},{"key":"tbd","value":"","description":"(boolean) Include or exclude events with TBD dates. ","disabled":true},{"key":"include_themes","value":"","description":"(boolean) Include themes in the event list.","disabled":true},{"key":"rsvp_events","value":"","description":"(boolean) Limit your request to only return RSVP events.","disabled":true},{"key":"ticketed_events","value":"","description":"(boolean) Limit your request to only return ticketed events.","disabled":true},{"key":"exclude_ids","value":"","description":"(array [integer]) Exclude specific event IDs from your request. ","disabled":true},{"key":"tag_names[0]","value":"Finals","disabled":true},{"key":"event_start_after","value":"2025-06-2 00:00:00","disabled":true}],"variable":[{"key":"event_id","value":"457443340"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 19:05:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 2\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 4\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 1\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443340,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 51618,\n \"name\": \"Office Hours\"\n },\n \"time_zone\": [],\n \"event_stages\": [],\n \"splash_theme\": {\n \"id\": 1200658,\n \"name\": \"Madison\",\n \"abbr\": \"Madison\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129255/assets/1db.2019-05-13-19-20-madison-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 30,\n \"active\": true,\n \"created\": \"2015-04-20T11:09:19-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/200/2002982/assets/573.HWijjF7RwOPGEJ1nb4Zb_IMG_3773.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439341,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#MadisonV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/stormsofficehours.splashthat.com%3Fpartial%3D80765%26screenshotHash%3Da1365cfba24c3c35%26showWorkspace%3D1%26t%3D1568149534%26isTakingScreenshot%3D119.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/stormsofficehours.splashthat.com%3Fpartial%3D80765%26screenshotHash%3Da1365cfba24c3c35%26showWorkspace%3D1%26t%3D1568149534%26isTakingScreenshot%3D122.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/stormsofficehours.splashthat.com%3Fpartial%3D80765%26screenshotHash%3Da1365cfba24c3c35%26showWorkspace%3D1%26t%3D1568149534%26isTakingScreenshot%3D178.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-06-10T13:03:55-0400\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": [],\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Storm's Office Hours\",\n \"description\": \"\",\n \"description_text\": \"\",\n \"event_start\": \"2025-05-15T13:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2019-09-10T17:05:30-0400\",\n \"modified_at\": \"2019-09-10T17:05:33-0400\",\n \"domain\": \"stormsofficehours\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://stormsofficehours.splashthat.com\",\n \"mobile_check_in_url\": \"https://stormsofficehours.splashthat.com/checkin/2ecd86e75b779fab34300d6cc252f675c35d5f611b4902f313b4a4c630d2f3aa\"\n },\n \"success\": true\n}"}],"_postman_id":"0b1ef42d-dd69-4298-97e2-df7d55cb56c2"},{"name":"Event Details","id":"2d121a2e-3c73-4276-9acc-70278208b91c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"title\": \"The Birthday of the Millennium\",\n \"domain\": \"https://millenniumbirthday.splashthat.com\",\n \"start_time\": \"your_start_time\",\n \"end_time\": \"your_end_time\",\n \"venue\": {\n \"name\": \"Super Delicious Restaurant\",\n \"address\": \"101 Dope Avenue\",\n \"city\": \"New York City\",\n \"region\": \"New York\",\n \"country\": \"USA\",\n \"postal_code\": \"1234567\",\n \"lat\": \"your_latitutde\",\n \"lon\": \"your_longitude\"\n },\n \"type\": \"Birthday\",\n \"event_host\": \"Quinn Soutar\",\n \"status\": \"your_status\",\n \"page_action\": \"RSVP\",\n \"tags\": \"Birthday, Party, Dinner\",\n \"waitlist\": true,\n \"currency\": \"USD\",\n \"meta_title\": \"your_meta_title\",\n \"meta_description\": \"your_meta_desc\",\n \"meta_calendar_description\": \"your_meta_cal\",\n \"favicon_url\": \"your_favicon_url\",\n \"no_index\": true,\n \"limit_one_per_email\": true,\n \"is_invite_only\": true,\n \"page_password\": \"your_page_password\",\n \"page_privacy_type\": \"Public\",\n \"require_captcha\": true,\n \"facebook_title\": \"your_facebook_title\",\n \"facebook_description\": \"your_facebook_description\",\n \"twitter_default\": \"your_twitter_default\",\n \"linkedin_title\": \"your_linkedin_title\",\n \"linkedin_description\": \"your_linkedin_description\",\n \"hashtag\": \"#millenniumbirthday\",\n \"salesforce_campaign_id\": \"campaign_id_for_sfdc_integration\",\n \"sessions_overlap\": true,\n \"registration_updating_enabled\": true,\n \"registration_updating_deadline\": 0,\n \"splash_hub_auto_subscribe\": true,\n \"email_white_label_key\": \"your_key\"\n}\n"},"url":"https://api.splashthat.com/events/:event_id/settings","description":"

Some event object fields are not found at the /events endpoint. You can find additional details about your events at the /settings endpoint. Just use a known event ID to specify the event for this extra information.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["events",":event_id","settings"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"description":{"content":"

The ID of the event for which details are needed.

\n","type":"text/plain"},"type":"string","value":"{{my_event_id}}","key":"event_id"}]}},"response":[{"id":"1912420f-c33c-4d8b-9b13-4e32afca20af","name":"Get an Event's Details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"title\": \"The Birthday of the Millennium\",\n \"domain\": \"https://millenniumbirthday.splashthat.com\",\n \"start_time\": \"your_start_time\",\n \"end_time\": \"your_end_time\",\n \"venue\": {\n \"name\": \"Super Delicious Restaurant\",\n \"address\": \"101 Dope Avenue\",\n \"city\": \"New York City\",\n \"region\": \"New York\",\n \"country\": \"USA\",\n \"postal_code\": \"1234567\",\n \"lat\": \"your_latitutde\",\n \"lon\": \"your_longitude\"\n },\n \"type\": \"Birthday\",\n \"event_host\": \"Quinn Soutar\",\n \"status\": \"your_status\",\n \"page_action\": \"RSVP\",\n \"tags\": \"Birthday, Party, Dinner\",\n \"waitlist\": true,\n \"currency\": \"USD\",\n \"meta_title\": \"your_meta_title\",\n \"meta_description\": \"your_meta_desc\",\n \"meta_calendar_description\": \"your_meta_cal\",\n \"favicon_url\": \"your_favicon_url\",\n \"no_index\": true,\n \"limit_one_per_email\": true,\n \"is_invite_only\": true,\n \"page_password\": \"your_page_password\",\n \"page_privacy_type\": \"Public\",\n \"require_captcha\": true,\n \"facebook_title\": \"your_facebook_title\",\n \"facebook_description\": \"your_facebook_description\",\n \"twitter_default\": \"your_twitter_default\",\n \"linkedin_title\": \"your_linkedin_title\",\n \"linkedin_description\": \"your_linkedin_description\",\n \"hashtag\": \"#millenniumbirthday\",\n \"salesforce_campaign_id\": \"campaign_id_for_sfdc_integration\",\n \"sessions_overlap\": true,\n \"registration_updating_enabled\": true,\n \"registration_updating_deadline\": 0,\n \"splash_hub_auto_subscribe\": true,\n \"email_white_label_key\": \"your_key\"\n}\n"},"url":{"raw":"https://api.splashthat.com/events/:event_id/settings","host":["https://api.splashthat.com"],"path":["events",":event_id","settings"],"variable":[{"key":"event_id","value":"457443340"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 20:27:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"title\": \"Storm's Office Hours\",\n \"domain\": \"stormsofficehours\",\n \"custom_domain\": \"\",\n \"paid_for_domain\": false,\n \"white_label\": 1,\n \"start_time\": \"2025-05-15T13:00:00\",\n \"end_time\": null,\n \"venue\": {\n \"name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"region\": \"\",\n \"country\": \"\",\n \"postal_code\": \"\",\n \"lat\": \"NaN\",\n \"lon\": \"NaN\"\n },\n \"type\": \"Office Hours\",\n \"event_host\": \"Quinn API\",\n \"status\": \"tminus0hours\",\n \"page_action\": \"collect\",\n \"tags\": [\n \"Study\"\n ],\n \"waitlist\": false,\n \"currency\": \"USD\",\n \"meta_title\": null,\n \"meta_description\": null,\n \"meta_calendar_description\": null,\n \"favicon_url\": \"\",\n \"no_index\": false,\n \"limit_one_per_email\": false,\n \"is_invite_only\": false,\n \"page_password\": null,\n \"page_privacy_type\": \"none\",\n \"require_captcha\": false,\n \"facebook_title\": null,\n \"facebook_description\": null,\n \"twitter_default\": null,\n \"linkedin_title\": null,\n \"linkedin_description\": null,\n \"hashtag\": \"#MadisonV2\",\n \"salesforce_campaign_id\": \"\",\n \"sessions_overlap\": false,\n \"share_image_url\": \"\",\n \"time_zone_id\": 1,\n \"invite_link_privacy_bypass\": false,\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"splash_hub_auto_subscribe\": 0,\n \"form_email_domain_restriction\": null,\n \"email_white_label_key\": null,\n \"description_text\": \"\",\n \"user\": {\n \"event_types\": [\n {\n \"id\": 18865,\n \"name\": \"Concert\"\n },\n {\n \"id\": 18867,\n \"name\": \"Networking Event\"\n },\n {\n \"id\": 18868,\n \"name\": \"Conference\"\n },\n {\n \"id\": 18870,\n \"name\": \"Launch Event\"\n },\n {\n \"id\": 18871,\n \"name\": \"Recruiting Event\"\n },\n {\n \"id\": 18872,\n \"name\": \"Sweepstakes\"\n },\n {\n \"id\": 18874,\n \"name\": \"Birthday\"\n },\n {\n \"id\": 18875,\n \"name\": \"Other\"\n },\n {\n \"id\": 24548,\n \"name\": \"Happy Hours\"\n },\n {\n \"id\": 24549,\n \"name\": \"Exhibits & Shows\"\n },\n {\n \"id\": 24550,\n \"name\": \"Party Just to Party\"\n },\n {\n \"id\": 24551,\n \"name\": \"Seminars & Workshops\"\n },\n {\n \"id\": 32649,\n \"name\": \"In-Store Engagement\"\n }\n ]\n },\n \"is_rsvp_open\": true\n },\n \"success\": true\n}"},{"id":"f4c77814-0eb5-4a22-95e1-4c62d2da9c91","name":"Event Details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.","type":"text"}],"body":{"mode":"raw","raw":"{\n \"title\": \"The Birthday of the Millennium\",\n \"domain\": \"https://millenniumbirthday.splashthat.com\",\n \"start_time\": \"your_start_time\",\n \"end_time\": \"your_end_time\",\n \"venue\": {\n \"name\": \"Super Delicious Restaurant\",\n \"address\": \"101 Dope Avenue\",\n \"city\": \"New York City\",\n \"region\": \"New York\",\n \"country\": \"USA\",\n \"postal_code\": \"1234567\",\n \"lat\": \"your_latitutde\",\n \"lon\": \"your_longitude\"\n },\n \"type\": \"Birthday\",\n \"event_host\": \"Quinn Soutar\",\n \"status\": \"your_status\",\n \"page_action\": \"RSVP\",\n \"tags\": \"Birthday, Party, Dinner\",\n \"waitlist\": true,\n \"currency\": \"USD\",\n \"meta_title\": \"your_meta_title\",\n \"meta_description\": \"your_meta_desc\",\n \"meta_calendar_description\": \"your_meta_cal\",\n \"favicon_url\": \"your_favicon_url\",\n \"no_index\": true,\n \"limit_one_per_email\": true,\n \"is_invite_only\": true,\n \"page_password\": \"your_page_password\",\n \"page_privacy_type\": \"Public\",\n \"require_captcha\": true,\n \"facebook_title\": \"your_facebook_title\",\n \"facebook_description\": \"your_facebook_description\",\n \"twitter_default\": \"your_twitter_default\",\n \"linkedin_title\": \"your_linkedin_title\",\n \"linkedin_description\": \"your_linkedin_description\",\n \"hashtag\": \"#millenniumbirthday\",\n \"salesforce_campaign_id\": \"campaign_id_for_sfdc_integration\",\n \"sessions_overlap\": true,\n \"registration_updating_enabled\": true,\n \"registration_updating_deadline\": 0,\n \"splash_hub_auto_subscribe\": true,\n \"email_white_label_key\": \"your_key\"\n}\n"},"url":{"raw":"https://api.splashthat.com/events/:event_id/settings","host":["https://api.splashthat.com"],"path":["events",":event_id","settings"],"variable":[{"key":"event_id","value":"459174409","description":"The ID of the event for which details are needed. ","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"x-ratelimit-limit-second","value":"100000"},{"key":"via","value":"kong/3.4.2, 1.1 varnish, 1.1 varnish"},{"key":"content-type","value":"application/json"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"server","value":"nginx"},{"key":"ratelimit-remaining","value":"99999"},{"key":"x-ratelimit-remaining-second","value":"99999"},{"key":"cache-control","value":"no-cache, private"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-kong-proxy-latency","value":"2"},{"key":"allow","value":"GET, PATCH"},{"key":"accept-ranges","value":"bytes"},{"key":"x-kong-upstream-latency","value":"425"},{"key":"ratelimit-reset","value":"1"},{"key":"ratelimit-limit","value":"100000"},{"key":"Date","value":"Thu, 17 Apr 2025 14:30:23 GMT"},{"key":"X-Served-By","value":"cache-iad-kcgs7200060-IAD, cache-iad-kiad7000110-IAD"},{"key":"X-Cache","value":"MISS, MISS"},{"key":"X-Cache-Hits","value":"0, 0"},{"key":"X-Timer","value":"S1744900223.225332,VS0,VE452"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"title\": \"GBG Leadership Offsite, 2025\",\n \"domain\": \"gbgleaders25\",\n \"custom_domain\": \"events.atmeta.com/gbgleaders25\",\n \"paid_for_domain\": true,\n \"white_label\": 1,\n \"start_time\": \"2025-10-29T09:00:00\",\n \"end_time\": \"2025-10-30T17:00:00\",\n \"venue\": {\n \"name\": \"Meta, HY50\",\n \"address\": \"50 Hudson Yards\",\n \"city\": \"New York\",\n \"region\": \"NY\",\n \"country\": \"United States\",\n \"postal_code\": \"10001\",\n \"lat\": \"40.7545733\",\n \"lon\": \"-74.0001065\"\n },\n \"type\": \"In Person\",\n \"event_type_id\": 72138,\n \"event_host\": \" \",\n \"status\": \"open\",\n \"page_action\": \"collect\",\n \"tags\": [],\n \"waitlist\": false,\n \"currency\": \"USD\",\n \"meta_title\": null,\n \"meta_description\": null,\n \"meta_calendar_description\": null,\n \"favicon_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/458/458261300/assets/244b6e649f1f0b4805ff27f942000302.M_Favicon_270x270.png\",\n \"hide_footer\": false,\n \"no_index\": true,\n \"limit_one_per_email\": true,\n \"is_invite_only\": false,\n \"page_password\": null,\n \"page_privacy_type\": \"none\",\n \"require_captcha\": false,\n \"facebook_title\": null,\n \"facebook_description\": null,\n \"twitter_default\": null,\n \"linkedin_title\": null,\n \"linkedin_description\": null,\n \"hashtag\": \"#FacebookRecruitingFlow\",\n \"salesforce_campaign_id\": \"\",\n \"sessions_overlap\": true,\n \"share_image_url\": \"\",\n \"time_zone_id\": 1,\n \"invite_link_privacy_bypass\": false,\n \"registration_updating_enabled\": true,\n \"registration_updating_deadline\": 24,\n \"splash_hub_auto_subscribe\": false,\n \"form_email_domain_restriction\": {\n \"restriction_mode\": \"off\",\n \"domains\": [],\n \"only_main_email\": true\n },\n \"email_white_label_key\": \"eventmetamail\",\n \"description_text\": \"Clear your calendar - It's going down! Splash Blocks kicks off on April 20th, and you're invited to take part in the festivities. Splash HQ (122 W 26th St) is our meeting spot for a night of fun and excitement. Come one, come all, bring a guest, and hang loose.\",\n \"button_closed_message\": \"\",\n \"send_guest_confirmation\": false,\n \"published\": true,\n \"autosave\": false,\n \"locale\": \"\",\n \"redirect_to\": \"\",\n \"attendance_types\": [\n \"in-person\"\n ],\n \"multisession\": true,\n \"has_virtual\": false,\n \"limit_one_order_per_email\": false,\n \"limit_one_ticket_type_per_email\": false,\n \"meta_sitemap_xml\": \"\",\n \"meta_robots_txt\": \"\",\n \"hub\": 0,\n \"multi_currency_options\": [\n {\n \"id\": 1,\n \"code\": \"USD\",\n \"name\": \"United States Dollar\"\n },\n {\n \"id\": 2,\n \"code\": \"EUR\",\n \"name\": \"Euro\"\n },\n {\n \"id\": 3,\n \"code\": \"GBP\",\n \"name\": \"British Pound\"\n },\n {\n \"id\": 4,\n \"code\": \"ILS\",\n \"name\": \"Israeli Shekel\"\n },\n {\n \"id\": 5,\n \"code\": \"ZAR\",\n \"name\": \"South African Rand\"\n },\n {\n \"id\": 6,\n \"code\": \"JPY\",\n \"name\": \"Japanese Yen\"\n },\n {\n \"id\": 7,\n \"code\": \"BRL\",\n \"name\": \"Brazillian Real\"\n },\n {\n \"id\": 8,\n \"code\": \"INR\",\n \"name\": \"Indian Rupees\"\n },\n {\n \"id\": 9,\n \"code\": \"HKD\",\n \"name\": \"Hong Kong Dollar\"\n },\n {\n \"id\": 10,\n \"code\": \"CAD\",\n \"name\": \"Canadian Dollar\"\n },\n {\n \"id\": 12,\n \"code\": \"AUD\",\n \"name\": \"Australian Dollar\"\n },\n {\n \"id\": 13,\n \"code\": \"TWD\",\n \"name\": \"Taiwanese Dollar\"\n },\n {\n \"id\": 14,\n \"code\": \"SGD\",\n \"name\": \"Singapore Dollar\"\n }\n ],\n \"has_event_sold_tickets\": false,\n \"has_event_sold_or_pending_tickets\": false,\n \"vat_settings\": null,\n \"user\": {\n \"event_types\": [\n {\n \"id\": 72137,\n \"name\": \"Hybrid: Splash integrated with Zoom\"\n },\n {\n \"id\": 72138,\n \"name\": \"In Person\"\n },\n {\n \"id\": 72140,\n \"name\": \"Virtual: Splash integrated with Zoom\"\n },\n {\n \"id\": 72199,\n \"name\": \"Virtual: Splash microsite only\"\n },\n {\n \"id\": 72200,\n \"name\": \"Virtual: Splash with embedded video\"\n }\n ],\n \"email_white_label_options\": \"{\\\"eventmetamail\\\":{\\\"default\\\":true,\\\"label\\\":\\\"@splash.metamail.com\\\",\\\"domain\\\":\\\"splash.metamail.com\\\",\\\"sendgrid_apikey\\\":\\\"REDACTED_SENDGRID_EXAMPLE_KEY.Fk2QGgzc5rUCom13URgQvgaCKIJS4fL0xrXMtjEHPtA\\\"},\\\"dach\\\":{\\\"domain\\\":\\\"splash.metamail.com\\\",\\\"label\\\":\\\"dach@splash.metamail.com\\\",\\\"static_address\\\":\\\"dach@splash.metamail.com\\\",\\\"sendgrid_apikey\\\":\\\"REDACTED_SENDGRID_EXAMPLE_KEY.Fk2QGgzc5rUCom13URgQvgaCKIJS4fL0xrXMtjEHPtA\\\"},\\\"no-reply\\\":{\\\"domain\\\":\\\"splash.metamail.com\\\",\\\"label\\\":\\\"no-reply@splash.metamail.com\\\",\\\"static_address\\\":\\\"no-reply@splash.metamail.com\\\",\\\"sendgrid_apikey\\\":\\\"REDACTED_SENDGRID_EXAMPLE_KEY.Fk2QGgzc5rUCom13URgQvgaCKIJS4fL0xrXMtjEHPtA\\\"},\\\"Meta Summit\\\":{\\\"label\\\":\\\"MetaSummit@splash.metamail.com\\\",\\\"domain\\\":\\\"splash.metamail.com\\\",\\\"static_address\\\":\\\"splash.metamail.com\\\",\\\"sendgrid_apikey\\\":\\\"REDACTED_SENDGRID_EXAMPLE_KEY.Fk2QGgzc5rUCom13URgQvgaCKIJS4fL0xrXMtjEHPtA\\\"}}\",\n \"locales\": [\n {\n \"code\": \"af-na\",\n \"name\": \"Afrikaans (Namibia)\"\n },\n {\n \"code\": \"af-za\",\n \"name\": \"Afrikaans (South Africa)\"\n },\n {\n \"code\": \"ak-gh\",\n \"name\": \"Akan (Ghana)\"\n },\n {\n \"code\": \"sq-al\",\n \"name\": \"Albanian (Albania)\"\n },\n {\n \"code\": \"sq-xk\",\n \"name\": \"Albanian (Kosovo)\"\n },\n {\n \"code\": \"sq-mk\",\n \"name\": \"Albanian (Macedonia)\"\n },\n {\n \"code\": \"am-et\",\n \"name\": \"Amharic (Ethiopia)\"\n },\n {\n \"code\": \"ar-dz\",\n \"name\": \"Arabic (Algeria)\"\n },\n {\n \"code\": \"ar-bh\",\n \"name\": \"Arabic (Bahrain)\"\n },\n {\n \"code\": \"ar-td\",\n \"name\": \"Arabic (Chad)\"\n },\n {\n \"code\": \"ar-km\",\n \"name\": \"Arabic (Comoros)\"\n },\n {\n \"code\": \"ar-dj\",\n \"name\": \"Arabic (Djibouti)\"\n },\n {\n \"code\": \"ar-eg\",\n \"name\": \"Arabic (Egypt)\"\n },\n {\n \"code\": \"ar-er\",\n \"name\": \"Arabic (Eritrea)\"\n },\n {\n \"code\": \"ar-iq\",\n \"name\": \"Arabic (Iraq)\"\n },\n {\n \"code\": \"ar-il\",\n \"name\": \"Arabic (Israel)\"\n },\n {\n \"code\": \"ar-jo\",\n \"name\": \"Arabic (Jordan)\"\n },\n {\n \"code\": \"ar-kw\",\n \"name\": \"Arabic (Kuwait)\"\n },\n {\n \"code\": \"ar-lb\",\n \"name\": \"Arabic (Lebanon)\"\n },\n {\n \"code\": \"ar-ly\",\n \"name\": \"Arabic (Libya)\"\n },\n {\n \"code\": \"ar-mr\",\n \"name\": \"Arabic (Mauritania)\"\n },\n {\n \"code\": \"ar-ma\",\n \"name\": \"Arabic (Morocco)\"\n },\n {\n \"code\": \"ar-om\",\n \"name\": \"Arabic (Oman)\"\n },\n {\n \"code\": \"ar-ps\",\n \"name\": \"Arabic (Palestinian Territories)\"\n },\n {\n \"code\": \"ar-qa\",\n \"name\": \"Arabic (Qatar)\"\n },\n {\n \"code\": \"ar-sa\",\n \"name\": \"Arabic (Saudi Arabia)\"\n },\n {\n \"code\": \"ar-so\",\n \"name\": \"Arabic (Somalia)\"\n },\n {\n \"code\": \"ar-ss\",\n \"name\": \"Arabic (South Sudan)\"\n },\n {\n \"code\": \"ar-sd\",\n \"name\": \"Arabic (Sudan)\"\n },\n {\n \"code\": \"ar-sy\",\n \"name\": \"Arabic (Syria)\"\n },\n {\n \"code\": \"ar-tn\",\n \"name\": \"Arabic (Tunisia)\"\n },\n {\n \"code\": \"ar-ae\",\n \"name\": \"Arabic (United Arab Emirates)\"\n },\n {\n \"code\": \"ar-eh\",\n \"name\": \"Arabic (Western Sahara)\"\n },\n {\n \"code\": \"ar-ye\",\n \"name\": \"Arabic (Yemen)\"\n },\n {\n \"code\": \"hy-am\",\n \"name\": \"Armenian (Armenia)\"\n },\n {\n \"code\": \"as-in\",\n \"name\": \"Assamese (India)\"\n },\n {\n \"code\": \"az-az\",\n \"name\": \"Azerbaijani (Azerbaijan)\"\n },\n {\n \"code\": \"az-cyrl\",\n \"name\": \"Azerbaijani (Cyrillic)\"\n },\n {\n \"code\": \"az-cyrl-az\",\n \"name\": \"Azerbaijani (Cyrillic, Azerbaijan)\"\n },\n {\n \"code\": \"az-latn\",\n \"name\": \"Azerbaijani (Latin)\"\n },\n {\n \"code\": \"az-latn-az\",\n \"name\": \"Azerbaijani (Latin, Azerbaijan)\"\n },\n {\n \"code\": \"bm-latn\",\n \"name\": \"Bambara (Latin)\"\n },\n {\n \"code\": \"bm-latn-ml\",\n \"name\": \"Bambara (Latin, Mali)\"\n },\n {\n \"code\": \"eu-es\",\n \"name\": \"Basque (Spain)\"\n },\n {\n \"code\": \"be-by\",\n \"name\": \"Belarusian (Belarus)\"\n },\n {\n \"code\": \"bn-bd\",\n \"name\": \"Bengali (Bangladesh)\"\n },\n {\n \"code\": \"bn-in\",\n \"name\": \"Bengali (India)\"\n },\n {\n \"code\": \"bs-ba\",\n \"name\": \"Bosnian (Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"bs-cyrl\",\n \"name\": \"Bosnian (Cyrillic)\"\n },\n {\n \"code\": \"bs-cyrl-ba\",\n \"name\": \"Bosnian (Cyrillic, Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"bs-latn\",\n \"name\": \"Bosnian (Latin)\"\n },\n {\n \"code\": \"bs-latn-ba\",\n \"name\": \"Bosnian (Latin, Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"br-fr\",\n \"name\": \"Breton (France)\"\n },\n {\n \"code\": \"bg-bg\",\n \"name\": \"Bulgarian (Bulgaria)\"\n },\n {\n \"code\": \"my-mm\",\n \"name\": \"Burmese (Myanmar (Burma))\"\n },\n {\n \"code\": \"ca-ad\",\n \"name\": \"Catalan (Andorra)\"\n },\n {\n \"code\": \"ca-fr\",\n \"name\": \"Catalan (France)\"\n },\n {\n \"code\": \"ca-it\",\n \"name\": \"Catalan (Italy)\"\n },\n {\n \"code\": \"ca-es\",\n \"name\": \"Catalan (Spain)\"\n },\n {\n \"code\": \"zh-cn\",\n \"name\": \"Chinese (China)\"\n },\n {\n \"code\": \"zh-hk\",\n \"name\": \"Chinese (Hong Kong SAR China)\"\n },\n {\n \"code\": \"zh-mo\",\n \"name\": \"Chinese (Macau SAR China)\"\n },\n {\n \"code\": \"zh-hans\",\n \"name\": \"Chinese (Simplified)\"\n },\n {\n \"code\": \"zh-hans-cn\",\n \"name\": \"Chinese (Simplified, China)\"\n },\n {\n \"code\": \"zh-hans-hk\",\n \"name\": \"Chinese (Simplified, Hong Kong SAR China)\"\n },\n {\n \"code\": \"zh-hans-mo\",\n \"name\": \"Chinese (Simplified, Macau SAR China)\"\n },\n {\n \"code\": \"zh-hans-sg\",\n \"name\": \"Chinese (Simplified, Singapore)\"\n },\n {\n \"code\": \"zh-sg\",\n \"name\": \"Chinese (Singapore)\"\n },\n {\n \"code\": \"zh-tw\",\n \"name\": \"Chinese (Taiwan)\"\n },\n {\n \"code\": \"zh-hant\",\n \"name\": \"Chinese (Traditional)\"\n },\n {\n \"code\": \"zh-hant-hk\",\n \"name\": \"Chinese (Traditional, Hong Kong SAR China)\"\n },\n {\n \"code\": \"zh-hant-mo\",\n \"name\": \"Chinese (Traditional, Macau SAR China)\"\n },\n {\n \"code\": \"zh-hant-tw\",\n \"name\": \"Chinese (Traditional, Taiwan)\"\n },\n {\n \"code\": \"kw-gb\",\n \"name\": \"Cornish (United Kingdom)\"\n },\n {\n \"code\": \"hr-ba\",\n \"name\": \"Croatian (Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"hr-hr\",\n \"name\": \"Croatian (Croatia)\"\n },\n {\n \"code\": \"cs-cz\",\n \"name\": \"Czech (Czech Republic)\"\n },\n {\n \"code\": \"da-dk\",\n \"name\": \"Danish (Denmark)\"\n },\n {\n \"code\": \"da-gl\",\n \"name\": \"Danish (Greenland)\"\n },\n {\n \"code\": \"nl-aw\",\n \"name\": \"Dutch (Aruba)\"\n },\n {\n \"code\": \"nl-be\",\n \"name\": \"Dutch (Belgium)\"\n },\n {\n \"code\": \"nl-bq\",\n \"name\": \"Dutch (Caribbean Netherlands)\"\n },\n {\n \"code\": \"nl-cw\",\n \"name\": \"Dutch (Curaçao)\"\n },\n {\n \"code\": \"nl-nl\",\n \"name\": \"Dutch (Netherlands)\"\n },\n {\n \"code\": \"nl-sx\",\n \"name\": \"Dutch (Sint Maarten)\"\n },\n {\n \"code\": \"nl-sr\",\n \"name\": \"Dutch (Suriname)\"\n },\n {\n \"code\": \"dz-bt\",\n \"name\": \"Dzongkha (Bhutan)\"\n },\n {\n \"code\": \"en-as\",\n \"name\": \"English (American Samoa)\"\n },\n {\n \"code\": \"en-ai\",\n \"name\": \"English (Anguilla)\"\n },\n {\n \"code\": \"en-ag\",\n \"name\": \"English (Antigua & Barbuda)\"\n },\n {\n \"code\": \"en-au\",\n \"name\": \"English (Australia)\"\n },\n {\n \"code\": \"en-bs\",\n \"name\": \"English (Bahamas)\"\n },\n {\n \"code\": \"en-bb\",\n \"name\": \"English (Barbados)\"\n },\n {\n \"code\": \"en-be\",\n \"name\": \"English (Belgium)\"\n },\n {\n \"code\": \"en-bz\",\n \"name\": \"English (Belize)\"\n },\n {\n \"code\": \"en-bm\",\n \"name\": \"English (Bermuda)\"\n },\n {\n \"code\": \"en-bw\",\n \"name\": \"English (Botswana)\"\n },\n {\n \"code\": \"en-io\",\n \"name\": \"English (British Indian Ocean Territory)\"\n },\n {\n \"code\": \"en-vg\",\n \"name\": \"English (British Virgin Islands)\"\n },\n {\n \"code\": \"en-cm\",\n \"name\": \"English (Cameroon)\"\n },\n {\n \"code\": \"en-ca\",\n \"name\": \"English (Canada)\"\n },\n {\n \"code\": \"en-ky\",\n \"name\": \"English (Cayman Islands)\"\n },\n {\n \"code\": \"en-cx\",\n \"name\": \"English (Christmas Island)\"\n },\n {\n \"code\": \"en-cc\",\n \"name\": \"English (Cocos (Keeling) Islands)\"\n },\n {\n \"code\": \"en-ck\",\n \"name\": \"English (Cook Islands)\"\n },\n {\n \"code\": \"en-dg\",\n \"name\": \"English (Diego Garcia)\"\n },\n {\n \"code\": \"en-dm\",\n \"name\": \"English (Dominica)\"\n },\n {\n \"code\": \"en-er\",\n \"name\": \"English (Eritrea)\"\n },\n {\n \"code\": \"en-fk\",\n \"name\": \"English (Falkland Islands)\"\n },\n {\n \"code\": \"en-fj\",\n \"name\": \"English (Fiji)\"\n },\n {\n \"code\": \"en-gm\",\n \"name\": \"English (Gambia)\"\n },\n {\n \"code\": \"en-gh\",\n \"name\": \"English (Ghana)\"\n },\n {\n \"code\": \"en-gi\",\n \"name\": \"English (Gibraltar)\"\n },\n {\n \"code\": \"en-gd\",\n \"name\": \"English (Grenada)\"\n },\n {\n \"code\": \"en-gu\",\n \"name\": \"English (Guam)\"\n },\n {\n \"code\": \"en-gg\",\n \"name\": \"English (Guernsey)\"\n },\n {\n \"code\": \"en-gy\",\n \"name\": \"English (Guyana)\"\n },\n {\n \"code\": \"en-hk\",\n \"name\": \"English (Hong Kong SAR China)\"\n },\n {\n \"code\": \"en-in\",\n \"name\": \"English (India)\"\n },\n {\n \"code\": \"en-ie\",\n \"name\": \"English (Ireland)\"\n },\n {\n \"code\": \"en-im\",\n \"name\": \"English (Isle of Man)\"\n },\n {\n \"code\": \"en-jm\",\n \"name\": \"English (Jamaica)\"\n },\n {\n \"code\": \"en-je\",\n \"name\": \"English (Jersey)\"\n },\n {\n \"code\": \"en-ke\",\n \"name\": \"English (Kenya)\"\n },\n {\n \"code\": \"en-ki\",\n \"name\": \"English (Kiribati)\"\n },\n {\n \"code\": \"en-ls\",\n \"name\": \"English (Lesotho)\"\n },\n {\n \"code\": \"en-lr\",\n \"name\": \"English (Liberia)\"\n },\n {\n \"code\": \"en-mo\",\n \"name\": \"English (Macau SAR China)\"\n },\n {\n \"code\": \"en-mg\",\n \"name\": \"English (Madagascar)\"\n },\n {\n \"code\": \"en-mw\",\n \"name\": \"English (Malawi)\"\n },\n {\n \"code\": \"en-my\",\n \"name\": \"English (Malaysia)\"\n },\n {\n \"code\": \"en-mt\",\n \"name\": \"English (Malta)\"\n },\n {\n \"code\": \"en-mh\",\n \"name\": \"English (Marshall Islands)\"\n },\n {\n \"code\": \"en-mu\",\n \"name\": \"English (Mauritius)\"\n },\n {\n \"code\": \"en-fm\",\n \"name\": \"English (Micronesia)\"\n },\n {\n \"code\": \"en-ms\",\n \"name\": \"English (Montserrat)\"\n },\n {\n \"code\": \"en-na\",\n \"name\": \"English (Namibia)\"\n },\n {\n \"code\": \"en-nr\",\n \"name\": \"English (Nauru)\"\n },\n {\n \"code\": \"en-nz\",\n \"name\": \"English (New Zealand)\"\n },\n {\n \"code\": \"en-ng\",\n \"name\": \"English (Nigeria)\"\n },\n {\n \"code\": \"en-nu\",\n \"name\": \"English (Niue)\"\n },\n {\n \"code\": \"en-nf\",\n \"name\": \"English (Norfolk Island)\"\n },\n {\n \"code\": \"en-mp\",\n \"name\": \"English (Northern Mariana Islands)\"\n },\n {\n \"code\": \"en-pk\",\n \"name\": \"English (Pakistan)\"\n },\n {\n \"code\": \"en-pw\",\n \"name\": \"English (Palau)\"\n },\n {\n \"code\": \"en-pg\",\n \"name\": \"English (Papua New Guinea)\"\n },\n {\n \"code\": \"en-ph\",\n \"name\": \"English (Philippines)\"\n },\n {\n \"code\": \"en-pn\",\n \"name\": \"English (Pitcairn Islands)\"\n },\n {\n \"code\": \"en-pr\",\n \"name\": \"English (Puerto Rico)\"\n },\n {\n \"code\": \"en-rw\",\n \"name\": \"English (Rwanda)\"\n },\n {\n \"code\": \"en-ws\",\n \"name\": \"English (Samoa)\"\n },\n {\n \"code\": \"en-sc\",\n \"name\": \"English (Seychelles)\"\n },\n {\n \"code\": \"en-sl\",\n \"name\": \"English (Sierra Leone)\"\n },\n {\n \"code\": \"en-sg\",\n \"name\": \"English (Singapore)\"\n },\n {\n \"code\": \"en-sx\",\n \"name\": \"English (Sint Maarten)\"\n },\n {\n \"code\": \"en-sb\",\n \"name\": \"English (Solomon Islands)\"\n },\n {\n \"code\": \"en-za\",\n \"name\": \"English (South Africa)\"\n },\n {\n \"code\": \"en-ss\",\n \"name\": \"English (South Sudan)\"\n },\n {\n \"code\": \"en-sh\",\n \"name\": \"English (St. Helena)\"\n },\n {\n \"code\": \"en-kn\",\n \"name\": \"English (St. Kitts & Nevis)\"\n },\n {\n \"code\": \"en-lc\",\n \"name\": \"English (St. Lucia)\"\n },\n {\n \"code\": \"en-vc\",\n \"name\": \"English (St. Vincent & Grenadines)\"\n },\n {\n \"code\": \"en-sd\",\n \"name\": \"English (Sudan)\"\n },\n {\n \"code\": \"en-sz\",\n \"name\": \"English (Swaziland)\"\n },\n {\n \"code\": \"en-tz\",\n \"name\": \"English (Tanzania)\"\n },\n {\n \"code\": \"en-tk\",\n \"name\": \"English (Tokelau)\"\n },\n {\n \"code\": \"en-to\",\n \"name\": \"English (Tonga)\"\n },\n {\n \"code\": \"en-tt\",\n \"name\": \"English (Trinidad & Tobago)\"\n },\n {\n \"code\": \"en-tc\",\n \"name\": \"English (Turks & Caicos Islands)\"\n },\n {\n \"code\": \"en-tv\",\n \"name\": \"English (Tuvalu)\"\n },\n {\n \"code\": \"en-um\",\n \"name\": \"English (U.S. Outlying Islands)\"\n },\n {\n \"code\": \"en-vi\",\n \"name\": \"English (U.S. Virgin Islands)\"\n },\n {\n \"code\": \"en-ug\",\n \"name\": \"English (Uganda)\"\n },\n {\n \"code\": \"en-gb\",\n \"name\": \"English (United Kingdom)\"\n },\n {\n \"code\": \"en-us\",\n \"name\": \"English (United States)\"\n },\n {\n \"code\": \"en-vu\",\n \"name\": \"English (Vanuatu)\"\n },\n {\n \"code\": \"en-zm\",\n \"name\": \"English (Zambia)\"\n },\n {\n \"code\": \"en-zw\",\n \"name\": \"English (Zimbabwe)\"\n },\n {\n \"code\": \"et-ee\",\n \"name\": \"Estonian (Estonia)\"\n },\n {\n \"code\": \"ee-gh\",\n \"name\": \"Ewe (Ghana)\"\n },\n {\n \"code\": \"ee-tg\",\n \"name\": \"Ewe (Togo)\"\n },\n {\n \"code\": \"fo-fo\",\n \"name\": \"Faroese (Faroe Islands)\"\n },\n {\n \"code\": \"fi-fi\",\n \"name\": \"Finnish (Finland)\"\n },\n {\n \"code\": \"fr-dz\",\n \"name\": \"French (Algeria)\"\n },\n {\n \"code\": \"fr-be\",\n \"name\": \"French (Belgium)\"\n },\n {\n \"code\": \"fr-bj\",\n \"name\": \"French (Benin)\"\n },\n {\n \"code\": \"fr-bf\",\n \"name\": \"French (Burkina Faso)\"\n },\n {\n \"code\": \"fr-bi\",\n \"name\": \"French (Burundi)\"\n },\n {\n \"code\": \"fr-cm\",\n \"name\": \"French (Cameroon)\"\n },\n {\n \"code\": \"fr-ca\",\n \"name\": \"French (Canada)\"\n },\n {\n \"code\": \"fr-cf\",\n \"name\": \"French (Central African Republic)\"\n },\n {\n \"code\": \"fr-td\",\n \"name\": \"French (Chad)\"\n },\n {\n \"code\": \"fr-km\",\n \"name\": \"French (Comoros)\"\n },\n {\n \"code\": \"fr-cg\",\n \"name\": \"French (Congo - Brazzaville)\"\n },\n {\n \"code\": \"fr-cd\",\n \"name\": \"French (Congo - Kinshasa)\"\n },\n {\n \"code\": \"fr-ci\",\n \"name\": \"French (Côte d\\u0092Ivoire)\"\n },\n {\n \"code\": \"fr-dj\",\n \"name\": \"French (Djibouti)\"\n },\n {\n \"code\": \"fr-gq\",\n \"name\": \"French (Equatorial Guinea)\"\n },\n {\n \"code\": \"fr-fr\",\n \"name\": \"French (France)\"\n },\n {\n \"code\": \"fr-gf\",\n \"name\": \"French (French Guiana)\"\n },\n {\n \"code\": \"fr-pf\",\n \"name\": \"French (French Polynesia)\"\n },\n {\n \"code\": \"fr-ga\",\n \"name\": \"French (Gabon)\"\n },\n {\n \"code\": \"fr-gp\",\n \"name\": \"French (Guadeloupe)\"\n },\n {\n \"code\": \"fr-gn\",\n \"name\": \"French (Guinea)\"\n },\n {\n \"code\": \"fr-ht\",\n \"name\": \"French (Haiti)\"\n },\n {\n \"code\": \"fr-lu\",\n \"name\": \"French (Luxembourg)\"\n },\n {\n \"code\": \"fr-mg\",\n \"name\": \"French (Madagascar)\"\n },\n {\n \"code\": \"fr-ml\",\n \"name\": \"French (Mali)\"\n },\n {\n \"code\": \"fr-mq\",\n \"name\": \"French (Martinique)\"\n },\n {\n \"code\": \"fr-mr\",\n \"name\": \"French (Mauritania)\"\n },\n {\n \"code\": \"fr-mu\",\n \"name\": \"French (Mauritius)\"\n },\n {\n \"code\": \"fr-yt\",\n \"name\": \"French (Mayotte)\"\n },\n {\n \"code\": \"fr-mc\",\n \"name\": \"French (Monaco)\"\n },\n {\n \"code\": \"fr-ma\",\n \"name\": \"French (Morocco)\"\n },\n {\n \"code\": \"fr-nc\",\n \"name\": \"French (New Caledonia)\"\n },\n {\n \"code\": \"fr-ne\",\n \"name\": \"French (Niger)\"\n },\n {\n \"code\": \"fr-rw\",\n \"name\": \"French (Rwanda)\"\n },\n {\n \"code\": \"fr-re\",\n \"name\": \"French (Réunion)\"\n },\n {\n \"code\": \"fr-sn\",\n \"name\": \"French (Senegal)\"\n },\n {\n \"code\": \"fr-sc\",\n \"name\": \"French (Seychelles)\"\n },\n {\n \"code\": \"fr-bl\",\n \"name\": \"French (St. Barthélemy)\"\n },\n {\n \"code\": \"fr-mf\",\n \"name\": \"French (St. Martin)\"\n },\n {\n \"code\": \"fr-pm\",\n \"name\": \"French (St. Pierre & Miquelon)\"\n },\n {\n \"code\": \"fr-ch\",\n \"name\": \"French (Switzerland)\"\n },\n {\n \"code\": \"fr-sy\",\n \"name\": \"French (Syria)\"\n },\n {\n \"code\": \"fr-tg\",\n \"name\": \"French (Togo)\"\n },\n {\n \"code\": \"fr-tn\",\n \"name\": \"French (Tunisia)\"\n },\n {\n \"code\": \"fr-vu\",\n \"name\": \"French (Vanuatu)\"\n },\n {\n \"code\": \"fr-wf\",\n \"name\": \"French (Wallis & Futuna)\"\n },\n {\n \"code\": \"ff-cm\",\n \"name\": \"Fulah (Cameroon)\"\n },\n {\n \"code\": \"ff-gn\",\n \"name\": \"Fulah (Guinea)\"\n },\n {\n \"code\": \"ff-mr\",\n \"name\": \"Fulah (Mauritania)\"\n },\n {\n \"code\": \"ff-sn\",\n \"name\": \"Fulah (Senegal)\"\n },\n {\n \"code\": \"gl-es\",\n \"name\": \"Galician (Spain)\"\n },\n {\n \"code\": \"lg-ug\",\n \"name\": \"Ganda (Uganda)\"\n },\n {\n \"code\": \"ka-ge\",\n \"name\": \"Georgian (Georgia)\"\n },\n {\n \"code\": \"de-at\",\n \"name\": \"German (Austria)\"\n },\n {\n \"code\": \"de-be\",\n \"name\": \"German (Belgium)\"\n },\n {\n \"code\": \"de-de\",\n \"name\": \"German (Germany)\"\n },\n {\n \"code\": \"de-li\",\n \"name\": \"German (Liechtenstein)\"\n },\n {\n \"code\": \"de-lu\",\n \"name\": \"German (Luxembourg)\"\n },\n {\n \"code\": \"de-ch\",\n \"name\": \"German (Switzerland)\"\n },\n {\n \"code\": \"el-cy\",\n \"name\": \"Greek (Cyprus)\"\n },\n {\n \"code\": \"el-gr\",\n \"name\": \"Greek (Greece)\"\n },\n {\n \"code\": \"gu-in\",\n \"name\": \"Gujarati (India)\"\n },\n {\n \"code\": \"ha-gh\",\n \"name\": \"Hausa (Ghana)\"\n },\n {\n \"code\": \"ha-latn\",\n \"name\": \"Hausa (Latin)\"\n },\n {\n \"code\": \"ha-latn-gh\",\n \"name\": \"Hausa (Latin, Ghana)\"\n },\n {\n \"code\": \"ha-latn-ne\",\n \"name\": \"Hausa (Latin, Niger)\"\n },\n {\n \"code\": \"ha-latn-ng\",\n \"name\": \"Hausa (Latin, Nigeria)\"\n },\n {\n \"code\": \"ha-ne\",\n \"name\": \"Hausa (Niger)\"\n },\n {\n \"code\": \"ha-ng\",\n \"name\": \"Hausa (Nigeria)\"\n },\n {\n \"code\": \"he-il\",\n \"name\": \"Hebrew (Israel)\"\n },\n {\n \"code\": \"hi-in\",\n \"name\": \"Hindi (India)\"\n },\n {\n \"code\": \"hu-hu\",\n \"name\": \"Hungarian (Hungary)\"\n },\n {\n \"code\": \"is-is\",\n \"name\": \"Icelandic (Iceland)\"\n },\n {\n \"code\": \"ig-ng\",\n \"name\": \"Igbo (Nigeria)\"\n },\n {\n \"code\": \"id-id\",\n \"name\": \"Indonesian (Indonesia)\"\n },\n {\n \"code\": \"ga-ie\",\n \"name\": \"Irish (Ireland)\"\n },\n {\n \"code\": \"it-it\",\n \"name\": \"Italian (Italy)\"\n },\n {\n \"code\": \"it-sm\",\n \"name\": \"Italian (San Marino)\"\n },\n {\n \"code\": \"it-ch\",\n \"name\": \"Italian (Switzerland)\"\n },\n {\n \"code\": \"ja-jp\",\n \"name\": \"Japanese (Japan)\"\n },\n {\n \"code\": \"kl-gl\",\n \"name\": \"Kalaallisut (Greenland)\"\n },\n {\n \"code\": \"kn-in\",\n \"name\": \"Kannada (India)\"\n },\n {\n \"code\": \"ks-arab\",\n \"name\": \"Kashmiri (Arabic)\"\n },\n {\n \"code\": \"ks-arab-in\",\n \"name\": \"Kashmiri (Arabic, India)\"\n },\n {\n \"code\": \"ks-in\",\n \"name\": \"Kashmiri (India)\"\n },\n {\n \"code\": \"kk-cyrl\",\n \"name\": \"Kazakh (Cyrillic)\"\n },\n {\n \"code\": \"kk-cyrl-kz\",\n \"name\": \"Kazakh (Cyrillic, Kazakhstan)\"\n },\n {\n \"code\": \"kk-kz\",\n \"name\": \"Kazakh (Kazakhstan)\"\n },\n {\n \"code\": \"km-kh\",\n \"name\": \"Khmer (Cambodia)\"\n },\n {\n \"code\": \"ki-ke\",\n \"name\": \"Kikuyu (Kenya)\"\n },\n {\n \"code\": \"rw-rw\",\n \"name\": \"Kinyarwanda (Rwanda)\"\n },\n {\n \"code\": \"ko-kp\",\n \"name\": \"Korean (North Korea)\"\n },\n {\n \"code\": \"ko-kr\",\n \"name\": \"Korean (South Korea)\"\n },\n {\n \"code\": \"ky-cyrl\",\n \"name\": \"Kyrgyz (Cyrillic)\"\n },\n {\n \"code\": \"ky-cyrl-kg\",\n \"name\": \"Kyrgyz (Cyrillic, Kyrgyzstan)\"\n },\n {\n \"code\": \"ky-kg\",\n \"name\": \"Kyrgyz (Kyrgyzstan)\"\n },\n {\n \"code\": \"lo-la\",\n \"name\": \"Lao (Laos)\"\n },\n {\n \"code\": \"lv-lv\",\n \"name\": \"Latvian (Latvia)\"\n },\n {\n \"code\": \"ln-ao\",\n \"name\": \"Lingala (Angola)\"\n },\n {\n \"code\": \"ln-cf\",\n \"name\": \"Lingala (Central African Republic)\"\n },\n {\n \"code\": \"ln-cg\",\n \"name\": \"Lingala (Congo - Brazzaville)\"\n },\n {\n \"code\": \"ln-cd\",\n \"name\": \"Lingala (Congo - Kinshasa)\"\n },\n {\n \"code\": \"lt-lt\",\n \"name\": \"Lithuanian (Lithuania)\"\n },\n {\n \"code\": \"lu-cd\",\n \"name\": \"Luba-Katanga (Congo - Kinshasa)\"\n },\n {\n \"code\": \"lb-lu\",\n \"name\": \"Luxembourgish (Luxembourg)\"\n },\n {\n \"code\": \"mk-mk\",\n \"name\": \"Macedonian (Macedonia)\"\n },\n {\n \"code\": \"mg-mg\",\n \"name\": \"Malagasy (Madagascar)\"\n },\n {\n \"code\": \"ms-bn\",\n \"name\": \"Malay (Brunei)\"\n },\n {\n \"code\": \"ms-latn\",\n \"name\": \"Malay (Latin)\"\n },\n {\n \"code\": \"ms-latn-bn\",\n \"name\": \"Malay (Latin, Brunei)\"\n },\n {\n \"code\": \"ms-latn-my\",\n \"name\": \"Malay (Latin, Malaysia)\"\n },\n {\n \"code\": \"ms-latn-sg\",\n \"name\": \"Malay (Latin, Singapore)\"\n },\n {\n \"code\": \"ms-my\",\n \"name\": \"Malay (Malaysia)\"\n },\n {\n \"code\": \"ms-sg\",\n \"name\": \"Malay (Singapore)\"\n },\n {\n \"code\": \"ml-in\",\n \"name\": \"Malayalam (India)\"\n },\n {\n \"code\": \"mt-mt\",\n \"name\": \"Maltese (Malta)\"\n },\n {\n \"code\": \"gv-im\",\n \"name\": \"Manx (Isle of Man)\"\n },\n {\n \"code\": \"mr-in\",\n \"name\": \"Marathi (India)\"\n },\n {\n \"code\": \"mn-cyrl\",\n \"name\": \"Mongolian (Cyrillic)\"\n },\n {\n \"code\": \"mn-cyrl-mn\",\n \"name\": \"Mongolian (Cyrillic, Mongolia)\"\n },\n {\n \"code\": \"mn-mn\",\n \"name\": \"Mongolian (Mongolia)\"\n },\n {\n \"code\": \"ne-in\",\n \"name\": \"Nepali (India)\"\n },\n {\n \"code\": \"ne-np\",\n \"name\": \"Nepali (Nepal)\"\n },\n {\n \"code\": \"nd-zw\",\n \"name\": \"North Ndebele (Zimbabwe)\"\n },\n {\n \"code\": \"se-fi\",\n \"name\": \"Northern Sami (Finland)\"\n },\n {\n \"code\": \"se-no\",\n \"name\": \"Northern Sami (Norway)\"\n },\n {\n \"code\": \"se-se\",\n \"name\": \"Northern Sami (Sweden)\"\n },\n {\n \"code\": \"no-no\",\n \"name\": \"Norwegian (Norway)\"\n },\n {\n \"code\": \"nb-no\",\n \"name\": \"Norwegian Bokmål (Norway)\"\n },\n {\n \"code\": \"nb-sj\",\n \"name\": \"Norwegian Bokmål (Svalbard & Jan Mayen)\"\n },\n {\n \"code\": \"nn-no\",\n \"name\": \"Norwegian Nynorsk (Norway)\"\n },\n {\n \"code\": \"or-in\",\n \"name\": \"Oriya (India)\"\n },\n {\n \"code\": \"om-et\",\n \"name\": \"Oromo (Ethiopia)\"\n },\n {\n \"code\": \"om-ke\",\n \"name\": \"Oromo (Kenya)\"\n },\n {\n \"code\": \"os-ge\",\n \"name\": \"Ossetic (Georgia)\"\n },\n {\n \"code\": \"os-ru\",\n \"name\": \"Ossetic (Russia)\"\n },\n {\n \"code\": \"ps-af\",\n \"name\": \"Pashto (Afghanistan)\"\n },\n {\n \"code\": \"fa-af\",\n \"name\": \"Persian (Afghanistan)\"\n },\n {\n \"code\": \"fa-ir\",\n \"name\": \"Persian (Iran)\"\n },\n {\n \"code\": \"pl-pl\",\n \"name\": \"Polish (Poland)\"\n },\n {\n \"code\": \"pt-ao\",\n \"name\": \"Portuguese (Angola)\"\n },\n {\n \"code\": \"pt-br\",\n \"name\": \"Portuguese (Brazil)\"\n },\n {\n \"code\": \"pt-cv\",\n \"name\": \"Portuguese (Cape Verde)\"\n },\n {\n \"code\": \"pt-gw\",\n \"name\": \"Portuguese (Guinea-Bissau)\"\n },\n {\n \"code\": \"pt-mo\",\n \"name\": \"Portuguese (Macau SAR China)\"\n },\n {\n \"code\": \"pt-mz\",\n \"name\": \"Portuguese (Mozambique)\"\n },\n {\n \"code\": \"pt-pt\",\n \"name\": \"Portuguese (Portugal)\"\n },\n {\n \"code\": \"pt-st\",\n \"name\": \"Portuguese (São Tomé & Príncipe)\"\n },\n {\n \"code\": \"pt-tl\",\n \"name\": \"Portuguese (Timor-Leste)\"\n },\n {\n \"code\": \"pa-arab\",\n \"name\": \"Punjabi (Arabic)\"\n },\n {\n \"code\": \"pa-arab-pk\",\n \"name\": \"Punjabi (Arabic, Pakistan)\"\n },\n {\n \"code\": \"pa-guru\",\n \"name\": \"Punjabi (Gurmukhi)\"\n },\n {\n \"code\": \"pa-guru-in\",\n \"name\": \"Punjabi (Gurmukhi, India)\"\n },\n {\n \"code\": \"pa-in\",\n \"name\": \"Punjabi (India)\"\n },\n {\n \"code\": \"pa-pk\",\n \"name\": \"Punjabi (Pakistan)\"\n },\n {\n \"code\": \"qu-bo\",\n \"name\": \"Quechua (Bolivia)\"\n },\n {\n \"code\": \"qu-ec\",\n \"name\": \"Quechua (Ecuador)\"\n },\n {\n \"code\": \"qu-pe\",\n \"name\": \"Quechua (Peru)\"\n },\n {\n \"code\": \"ro-md\",\n \"name\": \"Romanian (Moldova)\"\n },\n {\n \"code\": \"ro-ro\",\n \"name\": \"Romanian (Romania)\"\n },\n {\n \"code\": \"rm-ch\",\n \"name\": \"Romansh (Switzerland)\"\n },\n {\n \"code\": \"rn-bi\",\n \"name\": \"Rundi (Burundi)\"\n },\n {\n \"code\": \"ru-by\",\n \"name\": \"Russian (Belarus)\"\n },\n {\n \"code\": \"ru-kz\",\n \"name\": \"Russian (Kazakhstan)\"\n },\n {\n \"code\": \"ru-kg\",\n \"name\": \"Russian (Kyrgyzstan)\"\n },\n {\n \"code\": \"ru-md\",\n \"name\": \"Russian (Moldova)\"\n },\n {\n \"code\": \"ru-ru\",\n \"name\": \"Russian (Russia)\"\n },\n {\n \"code\": \"ru-ua\",\n \"name\": \"Russian (Ukraine)\"\n },\n {\n \"code\": \"sg-cf\",\n \"name\": \"Sango (Central African Republic)\"\n },\n {\n \"code\": \"gd-gb\",\n \"name\": \"Scottish Gaelic (United Kingdom)\"\n },\n {\n \"code\": \"sr-ba\",\n \"name\": \"Serbian (Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"sr-cyrl\",\n \"name\": \"Serbian (Cyrillic)\"\n },\n {\n \"code\": \"sr-cyrl-ba\",\n \"name\": \"Serbian (Cyrillic, Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"sr-cyrl-xk\",\n \"name\": \"Serbian (Cyrillic, Kosovo)\"\n },\n {\n \"code\": \"sr-cyrl-me\",\n \"name\": \"Serbian (Cyrillic, Montenegro)\"\n },\n {\n \"code\": \"sr-cyrl-rs\",\n \"name\": \"Serbian (Cyrillic, Serbia)\"\n },\n {\n \"code\": \"sr-xk\",\n \"name\": \"Serbian (Kosovo)\"\n },\n {\n \"code\": \"sr-latn\",\n \"name\": \"Serbian (Latin)\"\n },\n {\n \"code\": \"sr-latn-ba\",\n \"name\": \"Serbian (Latin, Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"sr-latn-xk\",\n \"name\": \"Serbian (Latin, Kosovo)\"\n },\n {\n \"code\": \"sr-latn-me\",\n \"name\": \"Serbian (Latin, Montenegro)\"\n },\n {\n \"code\": \"sr-latn-rs\",\n \"name\": \"Serbian (Latin, Serbia)\"\n },\n {\n \"code\": \"sr-me\",\n \"name\": \"Serbian (Montenegro)\"\n },\n {\n \"code\": \"sr-rs\",\n \"name\": \"Serbian (Serbia)\"\n },\n {\n \"code\": \"sh-ba\",\n \"name\": \"Serbo-Croatian (Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"sn-zw\",\n \"name\": \"Shona (Zimbabwe)\"\n },\n {\n \"code\": \"ii-cn\",\n \"name\": \"Sichuan Yi (China)\"\n },\n {\n \"code\": \"si-lk\",\n \"name\": \"Sinhala (Sri Lanka)\"\n },\n {\n \"code\": \"sk-sk\",\n \"name\": \"Slovak (Slovakia)\"\n },\n {\n \"code\": \"sl-si\",\n \"name\": \"Slovenian (Slovenia)\"\n },\n {\n \"code\": \"so-dj\",\n \"name\": \"Somali (Djibouti)\"\n },\n {\n \"code\": \"so-et\",\n \"name\": \"Somali (Ethiopia)\"\n },\n {\n \"code\": \"so-ke\",\n \"name\": \"Somali (Kenya)\"\n },\n {\n \"code\": \"so-so\",\n \"name\": \"Somali (Somalia)\"\n },\n {\n \"code\": \"es-ar\",\n \"name\": \"Spanish (Argentina)\"\n },\n {\n \"code\": \"es-bo\",\n \"name\": \"Spanish (Bolivia)\"\n },\n {\n \"code\": \"es-ic\",\n \"name\": \"Spanish (Canary Islands)\"\n },\n {\n \"code\": \"es-ea\",\n \"name\": \"Spanish (Ceuta & Melilla)\"\n },\n {\n \"code\": \"es-cl\",\n \"name\": \"Spanish (Chile)\"\n },\n {\n \"code\": \"es-co\",\n \"name\": \"Spanish (Colombia)\"\n },\n {\n \"code\": \"es-cr\",\n \"name\": \"Spanish (Costa Rica)\"\n },\n {\n \"code\": \"es-cu\",\n \"name\": \"Spanish (Cuba)\"\n },\n {\n \"code\": \"es-do\",\n \"name\": \"Spanish (Dominican Republic)\"\n },\n {\n \"code\": \"es-ec\",\n \"name\": \"Spanish (Ecuador)\"\n },\n {\n \"code\": \"es-sv\",\n \"name\": \"Spanish (El Salvador)\"\n },\n {\n \"code\": \"es-gq\",\n \"name\": \"Spanish (Equatorial Guinea)\"\n },\n {\n \"code\": \"es-gt\",\n \"name\": \"Spanish (Guatemala)\"\n },\n {\n \"code\": \"es-hn\",\n \"name\": \"Spanish (Honduras)\"\n },\n {\n \"code\": \"es-mx\",\n \"name\": \"Spanish (Mexico)\"\n },\n {\n \"code\": \"es-ni\",\n \"name\": \"Spanish (Nicaragua)\"\n },\n {\n \"code\": \"es-pa\",\n \"name\": \"Spanish (Panama)\"\n },\n {\n \"code\": \"es-py\",\n \"name\": \"Spanish (Paraguay)\"\n },\n {\n \"code\": \"es-pe\",\n \"name\": \"Spanish (Peru)\"\n },\n {\n \"code\": \"es-ph\",\n \"name\": \"Spanish (Philippines)\"\n },\n {\n \"code\": \"es-pr\",\n \"name\": \"Spanish (Puerto Rico)\"\n },\n {\n \"code\": \"es-es\",\n \"name\": \"Spanish (Spain)\"\n },\n {\n \"code\": \"es-us\",\n \"name\": \"Spanish (United States)\"\n },\n {\n \"code\": \"es-uy\",\n \"name\": \"Spanish (Uruguay)\"\n },\n {\n \"code\": \"es-ve\",\n \"name\": \"Spanish (Venezuela)\"\n },\n {\n \"code\": \"sw-ke\",\n \"name\": \"Swahili (Kenya)\"\n },\n {\n \"code\": \"sw-tz\",\n \"name\": \"Swahili (Tanzania)\"\n },\n {\n \"code\": \"sw-ug\",\n \"name\": \"Swahili (Uganda)\"\n },\n {\n \"code\": \"sv-fi\",\n \"name\": \"Swedish (Finland)\"\n },\n {\n \"code\": \"sv-se\",\n \"name\": \"Swedish (Sweden)\"\n },\n {\n \"code\": \"sv-ax\",\n \"name\": \"Swedish (Åland Islands)\"\n },\n {\n \"code\": \"tl-ph\",\n \"name\": \"Tagalog (Philippines)\"\n },\n {\n \"code\": \"ta-in\",\n \"name\": \"Tamil (India)\"\n },\n {\n \"code\": \"ta-my\",\n \"name\": \"Tamil (Malaysia)\"\n },\n {\n \"code\": \"ta-sg\",\n \"name\": \"Tamil (Singapore)\"\n },\n {\n \"code\": \"ta-lk\",\n \"name\": \"Tamil (Sri Lanka)\"\n },\n {\n \"code\": \"te-in\",\n \"name\": \"Telugu (India)\"\n },\n {\n \"code\": \"th-th\",\n \"name\": \"Thai (Thailand)\"\n },\n {\n \"code\": \"bo-cn\",\n \"name\": \"Tibetan (China)\"\n },\n {\n \"code\": \"bo-in\",\n \"name\": \"Tibetan (India)\"\n },\n {\n \"code\": \"ti-er\",\n \"name\": \"Tigrinya (Eritrea)\"\n },\n {\n \"code\": \"ti-et\",\n \"name\": \"Tigrinya (Ethiopia)\"\n },\n {\n \"code\": \"to-to\",\n \"name\": \"Tongan (Tonga)\"\n },\n {\n \"code\": \"tr-cy\",\n \"name\": \"Turkish (Cyprus)\"\n },\n {\n \"code\": \"tr-tr\",\n \"name\": \"Turkish (Turkey)\"\n },\n {\n \"code\": \"uk-ua\",\n \"name\": \"Ukrainian (Ukraine)\"\n },\n {\n \"code\": \"ur-in\",\n \"name\": \"Urdu (India)\"\n },\n {\n \"code\": \"ur-pk\",\n \"name\": \"Urdu (Pakistan)\"\n },\n {\n \"code\": \"ug-arab\",\n \"name\": \"Uyghur (Arabic)\"\n },\n {\n \"code\": \"ug-arab-cn\",\n \"name\": \"Uyghur (Arabic, China)\"\n },\n {\n \"code\": \"ug-cn\",\n \"name\": \"Uyghur (China)\"\n },\n {\n \"code\": \"uz-af\",\n \"name\": \"Uzbek (Afghanistan)\"\n },\n {\n \"code\": \"uz-arab\",\n \"name\": \"Uzbek (Arabic)\"\n },\n {\n \"code\": \"uz-arab-af\",\n \"name\": \"Uzbek (Arabic, Afghanistan)\"\n },\n {\n \"code\": \"uz-cyrl\",\n \"name\": \"Uzbek (Cyrillic)\"\n },\n {\n \"code\": \"uz-cyrl-uz\",\n \"name\": \"Uzbek (Cyrillic, Uzbekistan)\"\n },\n {\n \"code\": \"uz-latn\",\n \"name\": \"Uzbek (Latin)\"\n },\n {\n \"code\": \"uz-latn-uz\",\n \"name\": \"Uzbek (Latin, Uzbekistan)\"\n },\n {\n \"code\": \"uz-uz\",\n \"name\": \"Uzbek (Uzbekistan)\"\n },\n {\n \"code\": \"vi-vn\",\n \"name\": \"Vietnamese (Vietnam)\"\n },\n {\n \"code\": \"cy-gb\",\n \"name\": \"Welsh (United Kingdom)\"\n },\n {\n \"code\": \"fy-nl\",\n \"name\": \"Western Frisian (Netherlands)\"\n },\n {\n \"code\": \"yo-bj\",\n \"name\": \"Yoruba (Benin)\"\n },\n {\n \"code\": \"yo-ng\",\n \"name\": \"Yoruba (Nigeria)\"\n },\n {\n \"code\": \"zu-za\",\n \"name\": \"Zulu (South Africa)\"\n }\n ]\n },\n \"is_rsvp_open\": true,\n \"event_workflow\": null,\n \"form\": {\n \"isInLibrary\": false\n }\n },\n \"success\": true\n}"}],"_postman_id":"2d121a2e-3c73-4276-9acc-70278208b91c"},{"name":"Update an Event","id":"73f83da3-9952-4300-9b15-cb2f12bad8d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"title\": \"The Birthday of the Millennium\",\n \"domain\": \"https://millenniumbirthday.splashthat.com\",\n \"start_time\": \"your_start_time\",\n \"end_time\": \"your_end_time\",\n \"venue\": {\n \"name\": \"Super Delicious Restaurant\",\n \"address\": \"101 Dope Avenue\",\n \"city\": \"New York City\",\n \"region\": \"New York\",\n \"country\": \"USA\",\n \"postal_code\": \"1234567\",\n \"lat\": \"your_latitutde\",\n \"lon\": \"your_longitude\"\n },\n \"type\": \"Birthday\",\n \"event_host\": \"Quinn Soutar\",\n \"status\": \"your_status\",\n \"page_action\": \"RSVP\",\n \"tags\": \"Birthday, Party, Dinner\",\n \"waitlist\": true,\n \"currency\": \"USD\",\n \"meta_title\": \"your_meta_title\",\n \"meta_description\": \"your_meta_desc\",\n \"meta_calendar_description\": \"your_meta_cal\",\n \"favicon_url\": \"your_favicon_url\",\n \"no_index\": true,\n \"limit_one_per_email\": true,\n \"is_invite_only\": true,\n \"page_password\": \"your_page_password\",\n \"page_privacy_type\": \"Public\",\n \"require_captcha\": true,\n \"facebook_title\": \"your_facebook_title\",\n \"facebook_description\": \"your_facebook_description\",\n \"twitter_default\": \"your_twitter_default\",\n \"linkedin_title\": \"your_linkedin_title\",\n \"linkedin_description\": \"your_linkedin_description\",\n \"hashtag\": \"#millenniumbirthday\",\n \"salesforce_campaign_id\": \"campaign_id_for_sfdc_integration\",\n \"sessions_overlap\": true,\n \"registration_updating_enabled\": true,\n \"registration_updating_deadline\": 0,\n \"splash_hub_auto_subscribe\": true,\n \"email_white_label_key\": \"your_key\"\n }"},"url":"https://api.splashthat.com/events/:event_id/settings","description":"

Use this endpoint to update and make changes to an existing Event with a known ID. Specify an Event ID in the path, then format the new Event information as JSON in the message body. See the example body to see the types of fields available to be updated.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["events",":event_id","settings"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"description":{"content":"

The ID of the event you would like to update.

\n","type":"text/plain"},"type":"string","value":"{{my_event_id}}","key":"event_id"}]}},"response":[{"id":"78cfbb84-8be7-4a3d-8d68-fc6d91f9181e","name":"Update an Event's Information","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"venue\": {\n \"name\": \"Storms Office\"\n }\n}\n"},"url":{"raw":"https://api.splashthat.com/events/:event_id/settings","host":["https://api.splashthat.com"],"path":["events",":event_id","settings"],"variable":[{"key":"event_id","value":"457443340"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 20:39:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"title\": \"Storm's Office Hours\",\n \"domain\": \"stormsofficehours\",\n \"custom_domain\": \"\",\n \"paid_for_domain\": false,\n \"white_label\": 1,\n \"start_time\": \"2025-05-15T13:00:00\",\n \"end_time\": null,\n \"venue\": {\n \"name\": \"Storms Office\",\n \"address\": null,\n \"city\": null,\n \"region\": null,\n \"country\": null,\n \"postal_code\": null,\n \"lat\": null,\n \"lon\": null\n },\n \"type\": \"Office Hours\",\n \"event_host\": \"Quinn API\",\n \"status\": \"tminus0hours\",\n \"page_action\": \"collect\",\n \"tags\": [\n \"Study\"\n ],\n \"waitlist\": false,\n \"currency\": \"USD\",\n \"meta_title\": null,\n \"meta_description\": null,\n \"meta_calendar_description\": null,\n \"favicon_url\": \"\",\n \"no_index\": false,\n \"limit_one_per_email\": false,\n \"is_invite_only\": false,\n \"page_password\": null,\n \"page_privacy_type\": \"none\",\n \"require_captcha\": false,\n \"facebook_title\": null,\n \"facebook_description\": null,\n \"twitter_default\": null,\n \"linkedin_title\": null,\n \"linkedin_description\": null,\n \"hashtag\": \"#MadisonV2\",\n \"salesforce_campaign_id\": \"\",\n \"sessions_overlap\": false,\n \"share_image_url\": \"\",\n \"time_zone_id\": 1,\n \"invite_link_privacy_bypass\": false,\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"splash_hub_auto_subscribe\": 0,\n \"form_email_domain_restriction\": null,\n \"email_white_label_key\": null,\n \"description_text\": \"\",\n \"user\": {\n \"event_types\": [\n {\n \"id\": 18865,\n \"name\": \"Concert\"\n },\n {\n \"id\": 18867,\n \"name\": \"Networking Event\"\n },\n {\n \"id\": 18868,\n \"name\": \"Conference\"\n },\n {\n \"id\": 18870,\n \"name\": \"Launch Event\"\n },\n {\n \"id\": 18871,\n \"name\": \"Recruiting Event\"\n },\n {\n \"id\": 18872,\n \"name\": \"Sweepstakes\"\n },\n {\n \"id\": 18874,\n \"name\": \"Birthday\"\n },\n {\n \"id\": 18875,\n \"name\": \"Other\"\n },\n {\n \"id\": 24548,\n \"name\": \"Happy Hours\"\n },\n {\n \"id\": 24549,\n \"name\": \"Exhibits & Shows\"\n },\n {\n \"id\": 24550,\n \"name\": \"Party Just to Party\"\n },\n {\n \"id\": 24551,\n \"name\": \"Seminars & Workshops\"\n },\n {\n \"id\": 32649,\n \"name\": \"In-Store Engagement\"\n }\n ]\n },\n \"is_rsvp_open\": true\n },\n \"success\": true\n}"},{"id":"da7e0d56-5ffb-4f8f-b7ab-2646e1e2177f","name":"Invalid JSON","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"cofee\": {\n \"roast\": \"medium\"\n }\n}\n"},"url":{"raw":"https://api.splashthat.com/events/:event_id/settings","host":["https://api.splashthat.com"],"path":["events",":event_id","settings"],"variable":[{"key":"event_id","value":"457443340"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 20:40:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 500,\n \"message\": \"Internal Server Error\",\n \"errors\": null\n },\n \"data\": {\n \"errors\": [\n {\n \"message\": \"The object must not contain additional properties ([\\\"cofee\\\"]).\",\n \"keyword\": \"additionalProperties\",\n \"parameter\": false,\n \"data\": {\n \"cofee\": {\n \"roast\": \"medium\"\n }\n },\n \"data_path\": \"/\",\n \"schema\": {\n \"title\": \"Event Settings Payload\",\n \"type\": \"object\",\n \"additional_properties\": false,\n \"properties\": {\n \"title\": {\n \"description\": \"Event Title\",\n \"type\": \"string\"\n },\n \"domain\": {\n \"description\": \"Event Domain (.splashthat.com)\",\n \"type\": \"string\"\n },\n \"custom_domain\": {\n \"description\": \"Event Custom Domain (customdomain.tld)\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"paid_for_domain\": {\n \"description\": \"Event has a paid for Domain\",\n \"type\": \"boolean\",\n \"default\": false\n },\n \"white_label\": {\n \"description\": \"Event white labeling of Splash branding\",\n \"type\": [\n \"number\"\n ]\n },\n \"start_time\": {\n \"description\": \"Event Start Date & Time\",\n \"type\": [\n \"string\",\n \"null\"\n ],\n \"format\": \"date-time\"\n },\n \"end_time\": {\n \"description\": \"Event End Date & Time\",\n \"type\": [\n \"string\",\n \"null\"\n ],\n \"format\": \"date-time\"\n },\n \"time_zone_id\": {\n \"description\": \"Event Timezone\",\n \"type\": [\n \"string\",\n \"number\",\n \"null\"\n ]\n },\n \"invite_link_privacy_bypass\": {\n \"description\": \"Invite Links Bypass Privacy Filters\",\n \"type\": \"boolean\"\n },\n \"venue\": {\n \"description\": \"Event Venue Information\",\n \"type\": [\n \"object\",\n \"null\"\n ],\n \"additional_properties\": false,\n \"properties\": {\n \"name\": {\n \"description\": \"My Basement\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"address\": {\n \"description\": \"45 Park Street\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"city\": {\n \"description\": \"Memphis\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"region\": {\n \"description\": \"TN\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"country\": {\n \"description\": \"United States\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"postal_code\": {\n \"description\": \"01824\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"lat\": {\n \"description\": \"44.82\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"lon\": {\n \"description\": \"48.82\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n }\n }\n },\n \"type\": {\n \"description\": \"Event Type (Party, Big Party, Reallllly Big Party)\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"event_host\": {\n \"description\": \"The name of the person hosting the event\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"status\": {\n \"description\": \"Event Status\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"page_action\": {\n \"description\": \"Event Page Action\",\n \"type\": \"string\",\n \"enum\": [\n \"collect\",\n \"tickets\",\n \"link\"\n ],\n \"default\": \"collect\"\n },\n \"tags\": {\n \"description\": \"Event Tags\",\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"waitlist\": {\n \"description\": \"Event Page Action Goes to Waitlist\",\n \"type\": \"boolean\"\n },\n \"currency\": {\n \"description\": \"Event Currency, Default: USD\",\n \"type\": [\n \"string\"\n ]\n },\n \"meta_title\": {\n \"description\": \"Event Meta Title\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"meta_description\": {\n \"description\": \"Event Meta Description\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"meta_calendar_description\": {\n \"description\": \"Event Meta Calendar Description\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"favicon_url\": {\n \"description\": \"Event Favicon URL\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"no_index\": {\n \"description\": \"Event No-Index For Search Engines\",\n \"type\": \"boolean\",\n \"default\": false\n },\n \"limit_one_per_email\": {\n \"description\": \"Event RSVP Limit One Per Email\",\n \"type\": \"boolean\"\n },\n \"is_invite_only\": {\n \"description\": \"Event RSVP is Invite-Only\",\n \"type\": \"boolean\"\n },\n \"page_password\": {\n \"description\": \"Event Page Password\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"page_privacy_type\": {\n \"description\": \"Event Page Privacy Type\",\n \"type\": [\n \"string\",\n \"null\"\n ],\n \"enum\": [\n \"none\",\n \"all\",\n \"min_age_18\",\n \"min_age\",\n \"attendee_sso_login\",\n \"invite_list\",\n \"when_where_rsvp\",\n \"splash_locked\",\n null,\n \"\"\n ],\n \"default\": \"none\"\n },\n \"require_captcha\": {\n \"description\": \"Event Requires Captcha for Page Action\",\n \"type\": \"boolean\",\n \"default\": false\n },\n \"facebook_title\": {\n \"description\": \"Facebook Title\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"facebook_description\": {\n \"description\": \"Facebook Description\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"twitter_default\": {\n \"description\": \"Twitter Default Tweet Body\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"linkedin_title\": {\n \"description\": \"LinkedIn Title\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"linkedin_description\": {\n \"description\": \"LinkedIn Description\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"hashtag\": {\n \"description\": \"Event Hashtag\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"salesforce_campaign_id\": {\n \"description\": \"Salesforce Campapaign ID\",\n \"type\": [\n \"string\",\n \"number\",\n \"null\"\n ]\n },\n \"sessions_overlap\": {\n \"description\": \"Sessions Overlap\",\n \"type\": \"boolean\",\n \"default\": false\n },\n \"share_image_url\": {\n \"description\": \"Share Image Url\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"registration_updating_enabled\": {\n \"description\": \"If attendees are allowed to update their registration\",\n \"type\": [\n \"boolean\",\n \"null\"\n ]\n },\n \"registration_updating_deadline\": {\n \"description\": \"How many hours before an event are attendees allowed to update their registration\",\n \"type\": [\n \"string\",\n \"number\",\n \"null\"\n ]\n },\n \"splash_hub_auto_subscribe\": {\n \"description\": \"Option to auto-subscribe anyone who subscribes to an event within this Hub is available\",\n \"type\": [\n \"boolean\",\n \"number\"\n ]\n },\n \"form_email_domain_restriction\": {\n \"description\": \"Email domain restriction settings\",\n \"type\": [\n \"object\",\n \"null\"\n ],\n \"additional_properties\": false,\n \"properties\": {\n \"restriction_mode\": {\n \"description\": \"Email restriction mode\",\n \"type\": \"string\",\n \"enum\": [\n \"off\",\n \"whitelist\",\n \"blacklist\"\n ]\n },\n \"domains\": {\n \"description\": \"Domain list to restrict\",\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"only_main_email\": {\n \"description\": \"Apply only to main guest email\",\n \"type\": \"boolean\"\n }\n }\n },\n \"email_white_label_key\": {\n \"description\": \"The email white label value for the event, from the organization's possible values\",\n \"type\": [\n \"string\",\n \"null\"\n ],\n \"default\": null\n },\n \"description_text\": {\n \"description\": \"Event Description text\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n }\n }\n },\n \"schema_path\": \"/additionalProperties\",\n \"cause\": [\n \"cofee\"\n ]\n }\n ]\n }\n}"}],"_postman_id":"73f83da3-9952-4300-9b15-cb2f12bad8d8"},{"name":"Delete Event","id":"3e920bc3-2465-4405-a5ff-9e2dee99b8c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"ids\": [\n 1234,\n 5678,\n 9012\n ]\n}"},"url":"https://api.splashthat.com/events","description":"

Use this endpoint to batch delete Events within your organization. The Events to be deleted should be sent as JSON, with an \"ids\" array containing each of the desired Event IDs. See the example below.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["events"],"host":["https://api.splashthat.com"],"query":[],"variable":[]}},"response":[{"id":"658bc9db-eacc-4d0c-8822-ad440220fd11","name":"Delete does not exist","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"ids\": [\n\t\t457443348\n\t]\n}"},"url":"https://api.splashthat.com/events"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:36:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 403,\n \"message\": \"Forbidden\",\n \"errors\": null\n },\n \"data\": []\n}"},{"id":"a6631b5f-7ea4-4c28-8175-8153abf68e53","name":"Event Deleted","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"ids\": [\n\t\t457443348\n\t]\n}"},"url":"https://api.splashthat.com/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:35:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": null,\n \"success\": true\n}"},{"id":"b583331b-084a-4ac5-a3c2-05fc4a740f32","name":"Delete Several Events","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"ids\": [\n\t\t457443340,\n\t\t457443330,\n\t\t457443324\n\t]\n}"},"url":"https://api.splashthat.com/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:37:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": null,\n \"success\": true\n}"}],"_postman_id":"3e920bc3-2465-4405-a5ff-9e2dee99b8c7"},{"name":"Workflow Status Update","id":"e5e879d0-b134-4b47-adb8-d976b16af320","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","type":"text"}],"url":"https://api.splashthat.com/workflows/:workflow_id/status/:status","description":"

This endpoint is used to update the workflow status of an event approval flow, using the workflow ID of that event. You can find the workflow ID for an event in the payload from the /events endpoint in the workflowId field. It will need to be explicitly included in the payload by adding the URL viewGroups[]=eventWorkflow URL parameter. This will include a new section called \"event_workflow\" that will include both the workflow ID and the status.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["workflows",":workflow_id","status",":status"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"description":{"content":"

A UUID formatted string that can be retrieved from the /events endpoint payload.

\n","type":"text/plain"},"type":"string","value":"some_workflow_id","key":"workflow_id"},{"description":{"content":"

A string with a fixed value of either approved or declined.

\n","type":"text/plain"},"type":"string","value":"approved","key":"status"}]}},"response":[{"id":"fcd5f314-65a0-4e13-96dc-3724ebf0dea9","name":"Approved Event","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.splashthat.com/workflows/:workflow_id/status/:status?access_token={{access_token}}","host":["https://api.splashthat.com"],"path":["workflows",":workflow_id","status",":status"],"query":[{"key":"access_token","value":"{{access_token}}"}],"variable":[{"description":"A UUID formatted string that can be retrieved from the /events endpoint payload. ","key":"workflow_id","value":"0212d6a0-fdad-11ea-be23-d7767e14ad3b"},{"description":"A string with a fixed value of either approved or declined.","key":"status","value":"approved"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 23 Sep 2020 16:16:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"id\": \"0212d6a0-fdad-11ea-be23-d7767e14ad3b\",\n \"workflowTypeId\": \"a3bb2f90-fdab-11ea-be23-d7767e14ad3b\",\n \"entityId\": \"457932652\",\n \"status\": \"approved\",\n \"data\": {\n \"requesterUser\": 434719,\n \"approverGroups\": [\n 12701\n ]\n },\n \"createdAt\": \"2020-09-23T14:56:49.000Z\",\n \"updatedAt\": \"2020-09-23T16:16:57.808Z\",\n \"deletedAt\": null,\n \"history\": [\n {\n \"status\": \"pending_approval\",\n \"date\": \"2020-09-23T14:56:49.000Z\",\n \"user\": {\n \"id\": 434719,\n \"firstName\": \"Peter\",\n \"lastName\": \"Parker\",\n \"email\": \"spiderman@splashthat.com\"\n }\n },\n {\n \"status\": \"approved\",\n \"date\": \"2020-09-23T16:16:57.000Z\",\n \"user\": {\n \"id\": 320977,\n \"firstName\": \"Peter\",\n \"lastName\": \"Parker\",\n \"email\": \"spiderman@splashthat.com\"\n }\n }\n ]\n },\n \"meta\": {\n \"code\": 200\n },\n \"success\": true\n}"}],"_postman_id":"e5e879d0-b134-4b47-adb8-d976b16af320"}],"id":"e4a89f97-4ae1-423c-a633-d96e3cfc418e","description":"

Event objects in Splash are interacted with via the /events endpoint. A number of operations can be carried out here:

\n
    \n
  • Retrieve information about your Events
  • \n
  • Delete your Events, individually or in batch
  • \n
  • Update the information for an Event
  • \n
\n","event":[{"listen":"prerequest","script":{"id":"f0cd7b2f-c798-464b-b23e-1262a7e822e1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0b52fd65-b827-4efe-a347-d72562484e78","type":"text/javascript","exec":[""]}}],"_postman_id":"e4a89f97-4ae1-423c-a633-d96e3cfc418e","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}}},{"name":"Group Contacts (Event Guests)","item":[{"name":"Single Group Contact","id":"417babba-01b8-4bb1-8237-ef8940eb2c09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"text/plain"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"url":"https://api.splashthat.com/groupcontact/:group_contact_id","description":"

You can retrieve a single group contact if their group contact ID is known. It is a simple GET request with no other parameters necessary. Splash responds with a JSON payload detailing the attendee.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["groupcontact",":group_contact_id"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"description":{"content":"

The group contact ID of the individual for which you would like to retrieve data.

\n","type":"text/plain"},"type":"string","value":"{{group_contact_id}}","key":"group_contact_id"}]}},"response":[{"id":"e3a7a48d-5ec8-417d-a582-0793f8759037","name":"Retrieve a single attendee","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/groupcontact/:group_contact_id","host":["https://api.splashthat.com"],"path":["groupcontact",":group_contact_id"],"query":[{"key":"event_id","value":"{{event_id}}","disabled":true},{"key":"limit","value":"5","disabled":true},{"key":"page","value":"1","disabled":true},{"key":"sort","value":"groupContact.id+DESC","disabled":true},{"key":"status[]","value":"checkin_yes","disabled":true},{"key":"text_filter","value":"","type":"text","disabled":true},{"key":"event_rsvp_conditions[]","value":"checkin_yes","type":"text","disabled":true},{"key":"custom_question_ids","value":"","type":"text","disabled":true},{"key":"statistics","value":"","type":"text","disabled":true},{"key":"additional_columns","value":"","type":"text","disabled":true},{"key":"view_groups","value":"","type":"text","disabled":true}],"variable":[{"key":"group_contact_id","value":"{{group_contact_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 17:24:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 255394544,\n \"contact\": {\n \"id\": 77135879,\n \"last_name\": \"Maximoff\",\n \"first_name\": \"Pietro\",\n \"primary_email\": \"quicksilver1025@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443344,\n \"contact_id\": 77135879,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367196,\n \"first_name\": \"Pietro\",\n \"last_name\": \"Maximoff\",\n \"guest_name\": null,\n \"email\": \"quicksilver1025@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:27:34-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"date_rsvped\": \"2019-09-10T17:27:34-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"497619b30f36d65c\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"cyclopsbigexam.splashthat.com/tc/497619b30f36d65c\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:18:37-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n \"success\": true\n}"}],"_postman_id":"417babba-01b8-4bb1-8237-ef8940eb2c09"},{"name":"Group Contacts for One Event","id":"98d629dc-3435-4a84-a050-c21af8b976ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"url":"https://api.splashthat.com/groupcontacts?event_id={{event_id}}&limit=5&page=1&sort={{sort_type}}&status[0]={{guest_status}}&text_filter={{search_string}}&additional_columns[0]={{column_name}}","description":"

Using an event ID, you can retrieve the group contacts just for that specific event. Additionally, pagination and other filters can be applied to better navigate the response data.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["groupcontacts"],"host":["https://api.splashthat.com"],"query":[{"description":{"content":"

The ID of the event for which you would like to see the group contacts (attendees).

\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"},{"description":{"content":"

Limits how many group contacts are returned. If no limit is specified, Splash will default to 5.

\n","type":"text/plain"},"key":"limit","value":"5"},{"description":{"content":"

When using a limit, this allows you to specify which page of results you would like to retrieve.

\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"

Sort the results by a requested field.

\n","type":"text/plain"},"key":"sort","value":"{{sort_type}}"},{"description":{"content":"

Use this parameter to limit your results by the RSVP status of the attendees.

\n","type":"text/plain"},"key":"status[0]","value":"{{guest_status}}"},{"description":{"content":"

This parameter can constrain results to those that match a particular text string.

\n","type":"text/plain"},"key":"text_filter","value":"{{search_string}}"},{"disabled":true,"key":"event_rsvp_conditions","value":""},{"disabled":true,"key":"custom_question_ids","value":""},{"disabled":true,"key":"statistics","value":""},{"description":{"content":"

Use this parameter to specify particular columns to be included in the response.

\n","type":"text/plain"},"key":"additional_columns[0]","value":"{{column_name}}"},{"disabled":true,"key":"viewGroups[]","value":""}],"variable":[]}},"response":[{"id":"de91a84d-58ce-458c-b22e-5f5de90dd461","name":"Retrieve the attendees from an event","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/groupcontacts?event_id={{event_id}}&limit=5&page=2","host":["https://api.splashthat.com"],"path":["groupcontacts"],"query":[{"key":"event_id","value":"{{event_id}}"},{"key":"limit","value":"5"},{"key":"page","value":"2"},{"key":"sort","value":"","type":"text","disabled":true},{"key":"status","value":"","type":"text","disabled":true},{"key":"text_filter","value":"","type":"text","disabled":true},{"key":"event_rsvp_conditions","value":"","type":"text","disabled":true},{"key":"custom_question_ids","value":"","type":"text","disabled":true},{"key":"statistics","value":"","type":"text","disabled":true},{"key":"additional_columns","value":"","type":"text","disabled":true},{"key":"view_groups","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 17:03:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [\n {\n \"id\": 255394767,\n \"contact\": {\n \"id\": 77135869,\n \"last_name\": \"LeBeau\",\n \"first_name\": \"Remy\",\n \"primary_email\": \"gambit1015@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443340,\n \"contact_id\": 77135869,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367472,\n \"first_name\": \"Remy\",\n \"last_name\": \"LeBeau\",\n \"guest_name\": null,\n \"email\": \"gambit1015@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:32:01-0400\",\n \"modified\": \"2019-09-10T17:32:01-0400\",\n \"date_rsvped\": \"2019-09-10T17:32:01-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"dbe46e7a9267de7d\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"stormsofficehours.splashthat.com/tc/dbe46e7a9267de7d\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:20:11-0400\",\n \"modified\": \"2019-09-10T17:32:01-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394768,\n \"contact\": {\n \"id\": 77135875,\n \"last_name\": \"Johnson\",\n \"first_name\": \"Tyrone\",\n \"primary_email\": \"cloak1021@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443340,\n \"contact_id\": 77135875,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367474,\n \"first_name\": \"Tyrone\",\n \"last_name\": \"Johnson\",\n \"guest_name\": null,\n \"email\": \"cloak1021@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:32:01-0400\",\n \"modified\": \"2019-09-10T17:32:01-0400\",\n \"date_rsvped\": \"2019-09-10T17:32:01-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"2cf9e42984eb407c\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"stormsofficehours.splashthat.com/tc/2cf9e42984eb407c\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:20:11-0400\",\n \"modified\": \"2019-09-10T17:32:01-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394769,\n \"contact\": {\n \"id\": 77135876,\n \"last_name\": \"Bowen\",\n \"first_name\": \"Tandy\",\n \"primary_email\": \"dagger1022@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": null,\n \"event_lists\": null,\n \"status\": \"invited\",\n \"created\": \"2019-09-10T17:20:11-0400\",\n \"modified\": \"2019-09-10T17:32:12-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394770,\n \"contact\": {\n \"id\": 77135878,\n \"last_name\": \"Ferguson\",\n \"first_name\": \"Clarice\",\n \"primary_email\": \"blink1024@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": null,\n \"event_lists\": null,\n \"status\": \"invited\",\n \"created\": \"2019-09-10T17:20:11-0400\",\n \"modified\": \"2019-09-10T17:32:12-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394771,\n \"contact\": {\n \"id\": 77135879,\n \"last_name\": \"Maximoff\",\n \"first_name\": \"Pietro\",\n \"primary_email\": \"quicksilver1025@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443340,\n \"contact_id\": 77135879,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367475,\n \"first_name\": \"Pietro\",\n \"last_name\": \"Maximoff\",\n \"guest_name\": null,\n \"email\": \"quicksilver1025@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:32:01-0400\",\n \"modified\": \"2019-09-10T17:32:01-0400\",\n \"date_rsvped\": \"2019-09-10T17:32:01-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"febe5e29a5a19f8f\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"stormsofficehours.splashthat.com/tc/febe5e29a5a19f8f\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:20:12-0400\",\n \"modified\": \"2019-09-10T17:32:01-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n }\n ],\n \"pagination\": {\n \"limit\": 5,\n \"count\": 10,\n \"page\": 2,\n \"pages\": 2,\n \"cursor\": null\n },\n \"limit\": 5,\n \"count\": 10,\n \"page\": 2,\n \"pages\": 2,\n \"cursor\": null\n}"},{"id":"f75563bf-4da0-4d08-b4ba-389691343c39","name":"Group contacts from a single event, sorted","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/groupcontacts?event_id={{event_id}}&limit=5&page=1&sort=groupContact.id+DESC","host":["https://api.splashthat.com"],"path":["groupcontacts"],"query":[{"key":"event_id","value":"{{event_id}}"},{"key":"limit","value":"5"},{"key":"page","value":"1"},{"key":"sort","value":"groupContact.id+DESC"},{"key":"status[]","value":"checkin_yes","disabled":true},{"key":"text_filter","value":"","type":"text","disabled":true},{"key":"event_rsvp_conditions[]","value":"checkin_yes","type":"text","disabled":true},{"key":"custom_question_ids","value":"","type":"text","disabled":true},{"key":"statistics","value":"","type":"text","disabled":true},{"key":"additional_columns","value":"","type":"text","disabled":true},{"key":"view_groups","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 17:19:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [\n {\n \"id\": 255394544,\n \"contact\": {\n \"id\": 77135879,\n \"last_name\": \"Maximoff\",\n \"first_name\": \"Pietro\",\n \"primary_email\": \"quicksilver1025@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443344,\n \"contact_id\": 77135879,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367196,\n \"first_name\": \"Pietro\",\n \"last_name\": \"Maximoff\",\n \"guest_name\": null,\n \"email\": \"quicksilver1025@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:27:34-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"date_rsvped\": \"2019-09-10T17:27:34-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"497619b30f36d65c\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"cyclopsbigexam.splashthat.com/tc/497619b30f36d65c\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:18:37-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394543,\n \"contact\": {\n \"id\": 77135878,\n \"last_name\": \"Ferguson\",\n \"first_name\": \"Clarice\",\n \"primary_email\": \"blink1024@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443344,\n \"contact_id\": 77135878,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367197,\n \"first_name\": \"Clarice\",\n \"last_name\": \"Ferguson\",\n \"guest_name\": null,\n \"email\": \"blink1024@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:27:34-0400\",\n \"modified\": \"2019-09-10T17:29:38-0400\",\n \"date_rsvped\": \"2019-09-10T17:27:34-0400\",\n \"ip_address\": null,\n \"attending\": false,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"4d14f39b6c47388d\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": true,\n \"qr_url\": \"cyclopsbigexam.splashthat.com/tc/4d14f39b6c47388d\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"waitlisted\",\n \"created\": \"2019-09-10T17:18:37-0400\",\n \"modified\": \"2019-09-10T17:29:38-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394542,\n \"contact\": {\n \"id\": 77135877,\n \"last_name\": \"Haller\",\n \"first_name\": \"David\",\n \"primary_email\": \"legion1023@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443344,\n \"contact_id\": 77135877,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": \"2019-09-10T17:29:28-0400\",\n \"id\": 460367198,\n \"first_name\": \"David\",\n \"last_name\": \"Haller\",\n \"guest_name\": null,\n \"email\": \"legion1023@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:27:34-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"date_rsvped\": \"2019-09-10T17:27:34-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"f90491ca8d25375a\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"cyclopsbigexam.splashthat.com/tc/f90491ca8d25375a\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"checkin_no\",\n \"created\": \"2019-09-10T17:18:37-0400\",\n \"modified\": \"2019-09-10T17:29:28-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394541,\n \"contact\": {\n \"id\": 77135876,\n \"last_name\": \"Bowen\",\n \"first_name\": \"Tandy\",\n \"primary_email\": \"dagger1022@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443344,\n \"contact_id\": 77135876,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367199,\n \"first_name\": \"Tandy\",\n \"last_name\": \"Bowen\",\n \"guest_name\": null,\n \"email\": \"dagger1022@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:27:34-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"date_rsvped\": \"2019-09-10T17:27:34-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"579f24ca89a2a14f\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"cyclopsbigexam.splashthat.com/tc/579f24ca89a2a14f\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:18:37-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394540,\n \"contact\": {\n \"id\": 77135875,\n \"last_name\": \"Johnson\",\n \"first_name\": \"Tyrone\",\n \"primary_email\": \"cloak1021@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443344,\n \"contact_id\": 77135875,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367200,\n \"first_name\": \"Tyrone\",\n \"last_name\": \"Johnson\",\n \"guest_name\": null,\n \"email\": \"cloak1021@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:27:34-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"date_rsvped\": \"2019-09-10T17:27:34-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"c0acbafb594145cc\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"cyclopsbigexam.splashthat.com/tc/c0acbafb594145cc\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:18:37-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n }\n ],\n \"pagination\": {\n \"limit\": 5,\n \"count\": 25,\n \"page\": 1,\n \"pages\": 5,\n \"cursor\": null\n },\n \"limit\": 5,\n \"count\": 25,\n \"page\": 1,\n \"pages\": 5,\n \"cursor\": null\n}"},{"id":"25ed26f7-58ea-494e-b838-0d278e1e3781","name":"Group Contacts for One Event","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.","type":"text"}],"url":{"raw":"https://api.splashthat.com/groupcontacts?event_id=459178487&limit=250&page=20&additional_columns[0]={{column_name}}","host":["https://api.splashthat.com"],"path":["groupcontacts"],"query":[{"key":"event_id","value":"459178487","description":"The ID of the event for which you would like to see the group contacts (attendees). "},{"key":"limit","value":"250","description":"Limits how many group contacts are returned. If no limit is specified, Splash will default to 5. "},{"key":"page","value":"20","description":"When using a limit, this allows you to specify which page of results you would like to retrieve."},{"key":"sort","value":"{{sort_type}}","description":"Sort the results by a requested field.","disabled":true},{"key":"status[0]","value":"{{guest_status}}","description":"Use this parameter to limit your results by the RSVP status of the attendees.","disabled":true},{"key":"text_filter","value":"{{search_string}}","description":"This parameter can constrain results to those that match a particular text string. ","disabled":true},{"key":"event_rsvp_conditions","value":"","type":"text","disabled":true},{"key":"custom_question_ids","value":"","type":"text","disabled":true},{"key":"statistics","value":"","type":"text","disabled":true},{"key":"additional_columns[0]","value":"{{column_name}}","description":"Use this parameter to specify particular columns to be included in the response. "},{"key":"viewGroups[]","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"ratelimit-remaining","value":"99994"},{"key":"x-ratelimit-limit-second","value":"100000"},{"key":"content-type","value":"application/json"},{"key":"x-ratelimit-remaining-second","value":"99994"},{"key":"x-content-type-options","value":"nosniff"},{"key":"ratelimit-limit","value":"100000"},{"key":"ratelimit-reset","value":"1"},{"key":"via","value":"kong/3.4.2, 1.1 varnish, 1.1 varnish"},{"key":"x-kong-proxy-latency","value":"2"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"accept-ranges","value":"bytes"},{"key":"server","value":"nginx"},{"key":"cache-control","value":"no-cache, private"},{"key":"x-kong-upstream-latency","value":"76"},{"key":"allow","value":"GET"},{"key":"Date","value":"Fri, 02 May 2025 19:19:54 GMT"},{"key":"X-Served-By","value":"cache-iad-kiad7000165-IAD, cache-iad-kiad7000057-IAD"},{"key":"X-Cache","value":"MISS, MISS"},{"key":"X-Cache-Hits","value":"0, 0"},{"key":"X-Timer","value":"S1746213595.658751,VS0,VE101"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [],\n \"pagination\": {\n \"limit\": 250,\n \"count\": 83,\n \"page\": 20,\n \"pages\": 1,\n \"cursor\": null\n },\n \"limit\": 250,\n \"count\": 83,\n \"page\": 20,\n \"pages\": 1,\n \"cursor\": null\n}"}],"_postman_id":"98d629dc-3435-4a84-a050-c21af8b976ff"},{"name":"All Group Contacts","id":"f6e811a2-7041-42b2-b130-5fce0928fe1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"url":"https://api.splashthat.com/groupcontacts?limit=5&page=1&sort={{sort_type}}&status[0]={{guest_status}}&text_filter={{search_string}}&additional_columns={{column_name}}","description":"

By excluding an event ID, you can query your entire group contacts database. This can return a large result set, so pagination is highly recommended. You can still apply all of the same search parameters to this call.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["groupcontacts"],"host":["https://api.splashthat.com"],"query":[{"disabled":true,"description":{"content":"

The ID of the event you would like to see the group contacts (attendees) for.

\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"},{"description":{"content":"

Limits how many group contacts are returned. If no limit is specified, Splash will default to 5.

\n","type":"text/plain"},"key":"limit","value":"5"},{"description":{"content":"

When using a limit, this allows you to specify which page of results you would like to retrieve.

\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"

Sort the results by a requested field.

\n","type":"text/plain"},"key":"sort","value":"{{sort_type}}"},{"description":{"content":"

Use this parameter to limit your results by the RSVP status of the attendees.

\n","type":"text/plain"},"key":"status[0]","value":"{{guest_status}}"},{"description":{"content":"

This parameter can constrain results to those that match a particular text string.

\n","type":"text/plain"},"key":"text_filter","value":"{{search_string}}"},{"disabled":true,"key":"event_rsvp_conditions","value":""},{"disabled":true,"key":"custom_question_ids","value":""},{"disabled":true,"key":"statistics","value":""},{"disabled":true,"description":{"content":"

Get additional data in the response. URL Parameter can be added multiple times in the same request (eg. ...viewGroups[]=groupContactAnswer&viewGroups[]=groupContactCode)

\n","type":"text/plain"},"key":"viewGroups[]","value":""},{"description":{"content":"

Use this parameter to specify particular columns to be included in the response.

\n","type":"text/plain"},"key":"additional_columns","value":"{{column_name}}"}],"variable":[]}},"response":[{"id":"34864565-2599-4368-9cca-bb91efd95d43","name":"Retrieve all event attendees","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/groupcontacts?limit=5&page=14","host":["https://api.splashthat.com"],"path":["groupcontacts"],"query":[{"key":"event_id","value":"{{event_id}}","disabled":true},{"key":"limit","value":"5"},{"key":"page","value":"14"},{"key":"sort","value":"","type":"text","disabled":true},{"key":"status","value":"","type":"text","disabled":true},{"key":"text_filter","value":"","type":"text","disabled":true},{"key":"event_rsvp_conditions","value":"","type":"text","disabled":true},{"key":"custom_question_ids","value":"","type":"text","disabled":true},{"key":"statistics","value":"","type":"text","disabled":true},{"key":"additional_columns","value":"","type":"text","disabled":true},{"key":"view_groups","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 17:05:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [\n {\n \"id\": 255395835,\n \"contact\": {\n \"id\": 77135870,\n \"last_name\": \"Lee\",\n \"first_name\": \"Jubilation\",\n \"primary_email\": \"jubilee1016@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443324,\n \"contact_id\": 77135870,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367368,\n \"first_name\": \"Jubilation\",\n \"last_name\": \"Lee\",\n \"guest_name\": null,\n \"email\": \"jubilee1016@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:30:21-0400\",\n \"modified\": \"2019-09-10T17:30:21-0400\",\n \"date_rsvped\": \"2019-09-10T17:30:21-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": \"2019-09-10T17:30:21-0400\",\n \"unsub_tag\": \"b1573340cc9708cd\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"professorxslecture.splashthat.com/tc/b1573340cc9708cd\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"checkin_yes\",\n \"created\": \"2019-09-10T17:20:54-0400\",\n \"modified\": \"2019-09-10T17:30:21-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255395842,\n \"contact\": {\n \"id\": 77135872,\n \"last_name\": \"Darkholme\",\n \"first_name\": \"Raven\",\n \"primary_email\": \"mystique1018@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": null,\n \"event_lists\": null,\n \"status\": \"added\",\n \"created\": \"2019-09-10T17:20:54-0400\",\n \"modified\": \"2019-09-10T17:20:54-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255395849,\n \"contact\": {\n \"id\": 77135873,\n \"last_name\": \"Creed\",\n \"first_name\": \"Victor\",\n \"primary_email\": \"sabretooth1019@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443324,\n \"contact_id\": 77135873,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367369,\n \"first_name\": \"Victor\",\n \"last_name\": \"Creed\",\n \"guest_name\": null,\n \"email\": \"sabretooth1019@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:30:21-0400\",\n \"modified\": \"2019-09-10T17:30:34-0400\",\n \"date_rsvped\": \"2019-09-10T17:30:21-0400\",\n \"ip_address\": null,\n \"attending\": false,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"806277b81cc76b50\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"professorxslecture.splashthat.com/tc/806277b81cc76b50\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_no\",\n \"created\": \"2019-09-10T17:20:54-0400\",\n \"modified\": \"2019-09-10T17:30:34-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255395851,\n \"contact\": {\n \"id\": 77135875,\n \"last_name\": \"Johnson\",\n \"first_name\": \"Tyrone\",\n \"primary_email\": \"cloak1021@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443324,\n \"contact_id\": 77135875,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367370,\n \"first_name\": \"Tyrone\",\n \"last_name\": \"Johnson\",\n \"guest_name\": null,\n \"email\": \"cloak1021@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:30:21-0400\",\n \"modified\": \"2019-09-10T17:30:21-0400\",\n \"date_rsvped\": \"2019-09-10T17:30:21-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": \"2019-09-10T17:30:21-0400\",\n \"unsub_tag\": \"7f433e15e7aaa08d\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"professorxslecture.splashthat.com/tc/7f433e15e7aaa08d\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"checkin_yes\",\n \"created\": \"2019-09-10T17:20:54-0400\",\n \"modified\": \"2019-09-10T17:30:21-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255395861,\n \"contact\": {\n \"id\": 77135876,\n \"last_name\": \"Bowen\",\n \"first_name\": \"Tandy\",\n \"primary_email\": \"dagger1022@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443324,\n \"contact_id\": 77135876,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367371,\n \"first_name\": \"Tandy\",\n \"last_name\": \"Bowen\",\n \"guest_name\": null,\n \"email\": \"dagger1022@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:30:21-0400\",\n \"modified\": \"2019-09-10T17:30:21-0400\",\n \"date_rsvped\": \"2019-09-10T17:30:21-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": \"2019-09-10T17:30:21-0400\",\n \"unsub_tag\": \"ad5f07a632d7ad91\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"professorxslecture.splashthat.com/tc/ad5f07a632d7ad91\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"checkin_yes\",\n \"created\": \"2019-09-10T17:20:54-0400\",\n \"modified\": \"2019-09-10T17:30:21-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n }\n ],\n \"pagination\": {\n \"limit\": 5,\n \"count\": 96,\n \"page\": 14,\n \"pages\": 20,\n \"cursor\": null\n },\n \"limit\": 5,\n \"count\": 96,\n \"page\": 14,\n \"pages\": 20,\n \"cursor\": null\n}"}],"_postman_id":"f6e811a2-7041-42b2-b130-5fce0928fe1d"},{"name":"Create Single Group Contact","id":"c7ba8c10-491f-4a89-8e23-ab83db7b4447","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"event_id\": 12345 \n\t\"confirmation_email\": true,\n\t\"email\": \"kingkong@splashthat.com\",\n\t\"first_name\": \"King\",\n\t\"last_name\": \"Kong\",\n\t\"status\": \"added\",\n}"},"url":"https://api.splashthat.com/groupcontact","description":"

This endpoint can be used to create additional group contacts in your events, one-at-a-time. New attendees are defined via a JSON object, which you can find in the example request body. They require an event_id field to tell Splash to which event they should be added. Additional fields include confirmation email, email, first_name, last_name, and status.

\n

Note: The behavior of this endpoint can vary depending upon the guest's status. If a guest with that email address already has \"added\" or \"invited\", they will be updated. Any other status creates a duplicate guest with that email address. As such, we recommend limiting the use of this endpoint to one-off creations of new guests.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["groupcontact"],"host":["https://api.splashthat.com"],"query":[],"variable":[]}},"response":[{"id":"204db398-2643-447a-bacb-c8e41ddcf1cd","name":"Attendee creation failure due to bad JSON","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"confirmation_email\": false,\n\t\"email\": \"kingkong10027@splashthat.com\",\n\t\"first_name\": \"King\",\n\t\"last_name\": \"Kong\",\n\t\"status\": \"added\",\n\t\"food_preference\": \"Beef\"\n}"},"url":"https://api.splashthat.com/groupcontact"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:15:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 400,\n \"message\": \"Bad Request\",\n \"errors\": null\n },\n \"data\": []\n}"},{"id":"a22e9cc9-bb27-477b-b3f9-a3ca424659d5","name":"Create an event attendee","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"event_id\": 457443348, \n\t\"confirmation_email\": false,\n\t\"email\": \"kingkong10027@splashthat.com\",\n\t\"first_name\": \"King\",\n\t\"last_name\": \"Kong\",\n\t\"status\": \"added\"\n}"},"url":"https://api.splashthat.com/groupcontact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:09:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 255979885,\n \"contact\": {\n \"id\": 77274498,\n \"last_name\": \"Kong\",\n \"first_name\": \"King\",\n \"primary_email\": \"kingkong10027@splashthat.com\",\n \"title\": null,\n \"notes\": null,\n \"organization_name\": null,\n \"avatar_url\": null,\n \"phone\": null,\n \"facebook_url\": null,\n \"linkedin_url\": null,\n \"instagram_url\": null,\n \"createdate\": \"2019-09-12T18:08:59-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": null,\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": null,\n \"event_lists\": [],\n \"status\": \"added\",\n \"created\": \"2019-09-12T18:09:00-0400\",\n \"modified\": \"2019-09-12T18:09:00-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n \"success\": true\n}"}],"_postman_id":"c7ba8c10-491f-4a89-8e23-ab83db7b4447"},{"name":"Update Group Contact","id":"34b78965-b9bf-49c8-9690-0f8bf6d57f0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"status\": \"added\",\n\t\"confirmation_email\" : false,\n\t\"email\": \"kingkong@splashthat.com\",\n\t\"first_name\": \"King\",\n\t\"last_name\": \"Kong\",\n\t\"answers\" : [\n\t\t{\n\t\t\t\"question_id\" : 12345,\n\t\t\t\"answer\" : \"My first custom question answer\"\n\t\t}\n\t\t{\n\t\t\t\"question_id\" : 67890,\n\t\t\t\"answer\" : \"My second custom question answer\"\n\t\t}\n\t]\n}"},"url":"https://api.splashthat.com/groupcontact/:group_contact_id","description":"

Updating a group contact is how you can change information about your guests, as well as alter their status - such as checking them in, waitlisting them, etc. Reference the body parameter to see which fields you can alter. Include the fields and values for the ones you would like to change in the JSON body. If you have custom questions for your guests, you can use an array in the \"answer\" field and include the question ID and the answer for that guest for each custom question.

\n

Also, know that the guest statuses used by our backend server functions are different than the ones seen on the frontend of the Splash UI. See the table below for a mapping of the front-end statuses to the back-end statuses.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Backend StatusFrontend Status
added-- (No Status) --
invitedAwaiting Reply
waitlistedWaitlisted
rsvp_noNot Attending
rsvp_yesAttending
checkin_yesChecked In
checkin_noChecked Out
\n
","urlObject":{"path":["groupcontact",":group_contact_id"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"description":{"content":"

The group contact ID of the individual to be updated.

\n","type":"text/plain"},"type":"string","value":"","key":"group_contact_id"}]}},"response":[{"id":"a31d7fbb-eee5-483c-a5c1-4da20b90c6b8","name":"Attendee creation failure due to bad JSON","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"confirmation_email\": false,\n\t\"email\": \"kingkong10027@splashthat.com\",\n\t\"first_name\": \"King\",\n\t\"last_name\": \"Kong\",\n\t\"status\": \"added\",\n\t\"food_preference\": \"Beef\"\n}"},"url":"https://api.splashthat.com/groupcontact"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:15:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 400,\n \"message\": \"Bad Request\",\n \"errors\": null\n },\n \"data\": []\n}"},{"id":"e133659d-e02e-474f-b927-da05375a2592","name":"Create an event attendee","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"event_id\": 457443348, \n\t\"confirmation_email\": false,\n\t\"email\": \"kingkong10027@splashthat.com\",\n\t\"first_name\": \"King\",\n\t\"last_name\": \"Kong\",\n\t\"status\": \"added\"\n}"},"url":"https://api.splashthat.com/groupcontact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:09:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 255979885,\n \"contact\": {\n \"id\": 77274498,\n \"last_name\": \"Kong\",\n \"first_name\": \"King\",\n \"primary_email\": \"kingkong10027@splashthat.com\",\n \"title\": null,\n \"notes\": null,\n \"organization_name\": null,\n \"avatar_url\": null,\n \"phone\": null,\n \"facebook_url\": null,\n \"linkedin_url\": null,\n \"instagram_url\": null,\n \"createdate\": \"2019-09-12T18:08:59-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": null,\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": null,\n \"event_lists\": [],\n \"status\": \"added\",\n \"created\": \"2019-09-12T18:09:00-0400\",\n \"modified\": \"2019-09-12T18:09:00-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n \"success\": true\n}"}],"_postman_id":"34b78965-b9bf-49c8-9690-0f8bf6d57f0b"},{"name":"Batch Cancel RSVPs","id":"f8e2c873-9c6e-4c2d-86c9-d91ed40eccaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"url":"https://api.splashthat.com/groupcontact/:group_contact_id","description":"

To cancel the RSVP of a guest when their group contact id number is known, use the DELETE and id to change their status in your event to RSVP No.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["groupcontact",":group_contact_id"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"description":{"content":"

The ID of the group contact you would like to delete from an event. Note that this is NOT the contact ID, but specifically the group contact ID.

\n","type":"text/plain"},"type":"string","value":"{{group_contact_id}}","key":"group_contact_id"}]}},"response":[{"id":"584f75fd-f9bd-4a3b-8847-2b166ba4adaf","name":"Successful deletion","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.splashthat.com/groupcontact/:group_contact_id","host":["https://api.splashthat.com"],"path":["groupcontact",":group_contact_id"],"variable":[{"key":"group_contact_id","value":"255979885"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:11:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": null,\n \"success\": true\n}"},{"id":"f13d2baa-7a3f-44cb-81ce-d3ffb70e1ea2","name":"Group Contact does not exist","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.splashthat.com/groupcontact/:group_contact_id","host":["https://api.splashthat.com"],"path":["groupcontact",":group_contact_id"],"variable":[{"key":"group_contact_id","value":"255979885"}]}},"status":"Precondition Failed","code":412,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:15:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 412,\n \"message\": \"Precondition Failed\",\n \"errors\": null\n },\n \"data\": {\n \"class\": \"Splash\\\\APIBundle\\\\Entity\\\\GroupContact\",\n \"id\": \"255979885\"\n }\n}"}],"_postman_id":"f8e2c873-9c6e-4c2d-86c9-d91ed40eccaf"}],"id":"8f954337-04ca-44a2-9ca5-82cdfde2f0a8","description":"

Splash tracks contacts at two levels: organization-wide contacts and event-by-event attendees. What we typically refer to as event attendees or guests are labeled as Group Contacts within the Splash API. The Group Contacts endpoint is used to interact with them and is the more frequently leveraged contact type. The Group Contacts endpoint can be used to:

\n
    \n
  • Retrieve a list of group contacts for a given event

    \n
  • \n
  • Retrieve all of the group contacts across all of your events

    \n
  • \n
  • Retrieve an individual group contact

    \n
  • \n
  • Add a group contact, one-at-a-time

    \n
  • \n
  • Remove a group contact from an event

    \n
  • \n
\n

Sort Order

\n

The results of some calls to the GroupContacts endpoint can be sorted by a given field. The sort can be applied by specifying the field, and then noting whether it should be ASC (for 'ascending') or DESC (for 'descending'). So, for example, \"firstName DESC\" (without quotes) would list all group contacts by first name, in reverse alphabetical order. Below is a list of sortable fields:

\n
    \n
  • \"id\"

    \n
  • \n
  • \"contact_id\"

    \n
  • \n
  • \"email\"

    \n
  • \n
  • \"firstName\" / \"first_name\"

    \n
  • \n
  • \"lastName\" / \"last_name\"

    \n
  • \n
  • \"status\"

    \n
  • \n
  • \"dateCreated\" / \"date_created\"

    \n
  • \n
  • \"modified\"

    \n
  • \n
  • \"dateRsvped\" / \"date_rsvped\"

    \n
  • \n
  • \"title\"

    \n
  • \n
  • \"birthday\"

    \n
  • \n
  • \"company\"

    \n
  • \n
  • \"state\"

    \n
  • \n
\n

Additional Data using viewGroups[]

\n

To return additional data you can include multiple viewGroups[] values:

\n
    \n
  • guestListSessionNames

    \n
      \n
    • Adds the Sessions that the guest is associated with
    • \n
    \n
  • \n
  • contactListUnsubscribe

    \n
      \n
    • Unsubscribe data for the Guest's underlying Contact
    • \n
    \n
  • \n
  • groupContactEmailCampaignStatuses

    \n
      \n
    • Adds the Guest's status for Email Campaigns on the Event
    • \n
    \n
  • \n
  • contactTags

    \n
      \n
    • Adds Tag data for the Guest's underlying Contact
    • \n
    \n
  • \n
  • contactLists

    \n
      \n
    • Adds List data for the Guest's underlying Contact
    • \n
    \n
  • \n
  • bounceInfo

    \n
      \n
    • Adds details to the Guest's underlying Contact if the email address has \"bounced\"
    • \n
    \n
  • \n
  • groupContactAnswer

    \n
      \n
    • Adds Guest's answers to all Form Questions on the Event
    • \n
    \n
  • \n
  • groupContactEventList

    \n
      \n
    • Adds Event level List data associated with the Guest if applicable
    • \n
    \n
  • \n
  • groupContactCode

    \n
      \n
    • Adds QR Code data associated with Guest
    • \n
    \n
  • \n
\n","event":[{"listen":"prerequest","script":{"id":"abba06e5-0d58-4d5a-94c4-d2e8af91e9db","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"38a6805e-0287-4432-93d4-796618f83156","type":"text/javascript","exec":[""]}}],"_postman_id":"8f954337-04ca-44a2-9ca5-82cdfde2f0a8","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}}},{"name":"Contacts","item":[{"name":"Get List of Contacts","id":"34115d0d-a5e0-4acd-b6e8-94094568461f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"url":"https://api.splashthat.com/contacts?limit=25&page=1","description":"

This endpoint returns a JSON payload of organization-level contacts from Splash. Just like /events and /groupcontacts endpoints, there are parameters for paginating the returned list. As this endpoint queries your entire organization and all contacts, it is recommended they be used to prevent overly-large payloads from impacting your performance.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["contacts"],"host":["https://api.splashthat.com"],"query":[{"description":{"content":"

Limits how many contacts are returned by this call through pagination.

\n","type":"text/plain"},"key":"limit","value":"25"},{"description":{"content":"

When a limit is used, this parameter can be utlilized to specify which page of the results to return.

\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"7a4b1b96-095b-4234-83c9-bbf76df3e6c3","name":"All Contacts (pagination)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.splashthat.com/contacts?limit=5&page=2","host":["https://api.splashthat.com"],"path":["contacts"],"query":[{"key":"limit","value":"5","description":"(integer) Limit how many contacts are returned by this call through pagination. "},{"key":"page","value":"2","description":"(integer) When a limit is used, this parameter can be utlilized to specify which page of the results to return. "},{"key":"sort","value":"","description":"(string) Specify a contact field by which to sort your results. ","disabled":true},{"key":"search","value":"","description":"(string) Use this parameter to narrow your search to contacts matching a certain stirng. ","disabled":true},{"key":"emails","value":"","description":"(array [string]) You can search for specific emails in your contacts by listing them in an array. ","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Sep 2019 17:37:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [\n {\n \"id\": 77135859,\n \"last_name\": \"McCoy\",\n \"first_name\": \"Henry\",\n \"middle_name\": \"\",\n \"primary_email\": \"beast1005@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n {\n \"id\": 77135860,\n \"last_name\": \"Grey\",\n \"first_name\": \"Jean\",\n \"middle_name\": \"\",\n \"primary_email\": \"phoenix1006@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n {\n \"id\": 77135861,\n \"last_name\": \"Dane\",\n \"first_name\": \"Lorna\",\n \"middle_name\": \"\",\n \"primary_email\": \"polaris1007@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n {\n \"id\": 77135862,\n \"last_name\": \"Wagner\",\n \"first_name\": \"Kurt\",\n \"middle_name\": \"\",\n \"primary_email\": \"nightcrawler1008@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n {\n \"id\": 77135863,\n \"last_name\": \"Howlett\",\n \"first_name\": \"Logan\",\n \"middle_name\": \"\",\n \"primary_email\": \"wolverine1009@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n }\n ],\n \"pagination\": {\n \"limit\": 5,\n \"count\": 26,\n \"page\": 2,\n \"pages\": 6,\n \"cursor\": null\n },\n \"limit\": 5,\n \"count\": 26,\n \"page\": 2,\n \"pages\": 6,\n \"cursor\": null\n}"}],"_postman_id":"34115d0d-a5e0-4acd-b6e8-94094568461f"},{"name":"Get Single Contact by ID","id":"756bb013-1e3e-43c1-a481-d4efb9777699","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"url":"https://api.splashthat.com/contacts/:contact_id","description":"

Use this endpoint to retrieve the information for an individual contact. The contact you want to retrieve is specified by a contact ID in the URL path and is rendered as JSON in the response.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["contacts",":contact_id"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"description":{"content":"

Use this path variable to specify which contact you would like returned.

\n","type":"text/plain"},"type":"string","value":"{{contact_id}}","key":"contact_id"}]}},"response":[{"id":"fedfac4d-a47e-4442-a74f-ee6dace0f57f","name":"Indiviual Contact","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.splashthat.com/contacts/:contact_id","host":["https://api.splashthat.com"],"path":["contacts",":contact_id"],"variable":[{"key":"contact_id","value":"77135872","description":"Use this path variable to specify which contact you would like returned. "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Sep 2019 18:05:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 77135872,\n \"last_name\": \"Darkholme\",\n \"first_name\": \"Raven\",\n \"middle_name\": \"\",\n \"primary_email\": \"mystique1018@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"success\": true\n}"}],"_postman_id":"756bb013-1e3e-43c1-a481-d4efb9777699"},{"name":"Get Contact History","id":"1be7613a-83ba-47ce-b345-d1d766bd4224","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"url":"https://api.splashthat.com/contact/:contact_id/history","description":"

Part of privacy compliance is the ability to be transparent about the data you have. The Contact History API call helps meet this compliance necessity by responding to a contact ID with a record of the events with which this contact has been associated in Splash.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["contact",":contact_id","history"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"description":{"content":"

Use this path variable to specify which contact's history you would like to retrieve.

\n","type":"text/plain"},"type":"string","value":"{{contact_id}}","key":"contact_id"}]}},"response":[{"id":"05cc194a-1e39-4f0a-a542-4e8117d2bf7a","name":"Get Contact History","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.splashthat.com/contact/:contact_id/history","host":["https://api.splashthat.com"],"path":["contact",":contact_id","history"],"variable":[{"key":"contact_id","value":"77135872","type":"string","description":"Use this path variable to specify which contact you would like returned. "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Oct 2019 20:15:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"history\": [\n {\n \"type\": \"rsvp\",\n \"object\": {\n \"event\": {\n \"user\": {\n \"id\": 450070,\n \"email\": \"quinn.soutar.api@splashthat.com\",\n \"first_name\": \"Quinn\",\n \"last_name\": \"API\",\n \"cognito_id\": \"us-east-1:5d120884-0a0e-4295-ae45-38c2cd7baee2\"\n },\n \"event_type\": {\n \"name\": \"Exhibits & Shows\"\n },\n \"title\": \"Xavier School History Field Trip\",\n \"domain\": \"xavierschoolhistoryfieldtrip\"\n },\n \"ticket_sale\": null,\n \"checked_out\": null,\n \"id\": 460367527,\n \"email\": \"mystique1018@splashthat.com\",\n \"created\": \"2019-09-10T17:32:46-0400\",\n \"date_rsvped\": \"2019-09-10T17:32:46-0400\",\n \"attending\": false,\n \"checked_in\": null,\n \"vip\": false\n },\n \"text\": \"RSVP'ed to the event\",\n \"created\": 1568151166\n }\n ],\n \"tags\": [],\n \"custom\": []\n },\n \"success\": true\n}"}],"_postman_id":"1be7613a-83ba-47ce-b345-d1d766bd4224"},{"name":"Delete a Contact","id":"3ac26046-8f8d-466e-947f-767fc275b11f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"url":"https://api.splashthat.com/contacts/:contact_id","description":"

If you know a contact ID, it can be used to delete that Contact from your list of Splash Contacts. Make certain it is the contact you want to delete and not just an event guest (group contact). Keep in mind this is just a soft delete that makes contacts invisible to Splash users and does not remove them from the Splash database. For GDPR-related use cases and removing personal information, Splash recommends using the anonymize endpoint which is designed to be compliant with privacy laws.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["contacts",":contact_id"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"description":{"content":"

This is contact ID of the contact to delete.

\n","type":"text/plain"},"type":"string","value":"{{my_contact_id}}","key":"contact_id"}]}},"response":[{"id":"09fc0146-68e9-414a-8e8b-9963d5f3fbdc","name":"Contact deleted","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.splashthat.com/contacts/:contact_id","host":["https://api.splashthat.com"],"path":["contacts",":contact_id"],"variable":[{"key":"contact_id","value":"77135869"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:31:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"full_name\": \"Remy LeBeau\",\n \"contact_answers\": [],\n \"unsubscribes\": [],\n \"event_statuses\": [],\n \"event_counts\": [],\n \"hub_event_counts\": [],\n \"domain\": \"splashthat.com\",\n \"email_md5\": \"2b74a11a23167f2154aac2f8b1d791f6\",\n \"id\": 77135869,\n \"event_message_invites\": [],\n \"last_name\": \"LeBeau\",\n \"first_name\": \"Remy\",\n \"middle_name\": \"\",\n \"primary_email\": \"gambit1015@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_user_id\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false,\n \"tags\": null,\n \"lists\": null,\n \"bounce_info\": null\n },\n \"success\": true\n}"},{"id":"3df9d90a-b1b8-4a99-94c5-6085a87af672","name":"No such contact found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.splashthat.com/contacts/:contact_id","host":["https://api.splashthat.com"],"path":["contacts",":contact_id"],"variable":[{"key":"contact_id","value":"255979885"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:31:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 500,\n \"message\": \"Internal Server Error\",\n \"errors\": null\n },\n \"data\": []\n}"}],"_postman_id":"3ac26046-8f8d-466e-947f-767fc275b11f"},{"name":"Anonymize Contact","id":"0dd5ea97-76fa-4f8b-8ece-d084ae63bd48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"delete\": true\n}"},"url":"https://api.splashthat.com/contacts/:contact_id/anonymize","description":"

Splash takes compliance with privacy laws very seriously. This directly led to the creation of the anonymize contact endpoint as a GDPR compliance tool. Be absolutely certain you want to do this! Once a contact has been anonymized, it cannot be undone.

\n

Note:\nUtilizing the Anonymize Contacts endpoint requires special privileges for your API user. Inadequate privileges are indicated by a 403 error when using this endpoint. This privilege is only available to organization admins. Contact your Customer Success Representative to learn how to gain appropriate privileges for access.
Alternatively, you can use the Incoming Webhook integration to accomplish anonymizations and unsubscribes.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["contacts",":contact_id","anonymize"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"description":{"content":"

This is the contact ID of the person whose information will be anonymized in the Splash database.

\n","type":"text/plain"},"type":"string","value":"{{contact_id}}","key":"contact_id"}]}},"response":[],"_postman_id":"0dd5ea97-76fa-4f8b-8ece-d084ae63bd48"}],"id":"45ea8ba2-6e48-400c-8785-8a435a3184bf","description":"

Whereas group contacts exist at the event-level corresponding to the attendees, contacts exist at the organization-level. These are the records that group contacts (attendees) refer to for more general information (such as name or email address), and which Splash uses to track guests between individual events. If you add a contact via the POST /groupcontacts endpoint, an org-level contact is automatically created and associated with that contact.

\n

The most common uses for contacts are:

\n
    \n
  • Retrieving a list of all contacts
  • \n
  • Retrieving a single contact
  • \n
  • Deleting a contact
  • \n
\n","event":[{"listen":"prerequest","script":{"id":"7cfdd111-4e2d-4219-b7e6-82f9ed07d35b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cc5102dc-99df-489c-b56b-a5c6826d9dc0","type":"text/javascript","exec":[""]}}],"_postman_id":"45ea8ba2-6e48-400c-8785-8a435a3184bf","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}}},{"name":"Unsubscribe","item":[{"name":"Retrieve Unsubscribe","id":"adceb4c6-85e9-4f0f-9380-00cab419a93b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","description":"

Use this header to send your access token.

\n","key":"Authorization","type":"text","value":"Bearer {{my_token}}"}],"url":"https://api.splashthat.com/public/unsubscribe/:unsub_tag/:unsub_type?event_id={{event_id}}","description":"

A GET call to the /unsubscribe endpoint can be used to query for a specified unsubscribe. The unsubscribe tag, type of unsubscribe to retrieve, and event ID for the event from which the unsubscribe came are all required values.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["public","unsubscribe",":unsub_tag",":unsub_type"],"host":["https://api.splashthat.com"],"query":[{"description":{"content":"

The ID of the event with which the unsub_tag is associated. This is a required parameter.

\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"}],"variable":[{"id":"7205a998-ec20-4c01-af33-f749712f4452","description":{"content":"

This is the unsub_tag found on the GroupContacts object.

\n","type":"text/plain"},"type":"string","value":"","key":"unsub_tag"},{"id":"ab80f56c-3a88-4d8c-845f-4b81d1e12035","description":{"content":"

This parameter specifies the types of unsubscribe to retrieve: \"all\", \"event\", or \"any\"

\n","type":"text/plain"},"type":"string","value":"","key":"unsub_type"}]}},"response":[],"_postman_id":"adceb4c6-85e9-4f0f-9380-00cab419a93b"},{"name":"Create an Unsubscribe","id":"338e878b-2398-44ed-b5b2-c75df5fdfbd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{my_token}}","description":"

Use this header to send your access token.

\n","type":"text"}],"url":"https://api.splashthat.com/public/unsubscribe/:unsub_tag/:unsub_type?event_id={{event_id}}","description":"

You can send a POST to the /unsubscribe endpoint to create new unsubscribes at both the organization and event levels.

\n

Note: Unsubscribing a contact means they will no longer receive any communications from Splash to the level that you specify.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["public","unsubscribe",":unsub_tag",":unsub_type"],"host":["https://api.splashthat.com"],"query":[{"description":{"content":"

The ID of the event with which the unsub_tag is associated. This is a required parameter.

\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"}],"variable":[{"description":{"content":"

This is the unsub_tag found on the GroupContacts object.

\n","type":"text/plain"},"type":"string","value":"","key":"unsub_tag"},{"description":{"content":"

This parameter specifies the types of unsubscribe to create: \"all\", \"event\"

\n","type":"text/plain"},"type":"string","value":"","key":"unsub_type"}]}},"response":[],"_postman_id":"338e878b-2398-44ed-b5b2-c75df5fdfbd8"},{"name":"Resubscribe","id":"fede7074-04d8-4fbf-8ce3-38964e60a819","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","description":"

Use this header to send your access token.

\n","key":"Authorization","type":"text","value":"Bearer {{my_token}}"}],"url":"https://api.splashthat.com/public/unsubscribe/:unsub_tag/:unsub_type?event_id={{event_id}}","description":"

Unsubscribed contacts, whether from an event or an organization, can be resubscribed. Sending a DELETE call to this endpoint and specifying the unsub_tag originally used for the unsubscribe \"deletes\" the unsubscribe, essentially resubscribing the contact to communication from your Splash organization.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["public","unsubscribe",":unsub_tag",":unsub_type"],"host":["https://api.splashthat.com"],"query":[{"description":{"content":"

All unsub_tags are associated with an event. When using this endpoint to delete unsubscribes, this parameter is required. Retrieve the event ID when retrieving the unsub_tag.

\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"}],"variable":[{"id":"e0b3351d-6972-4e8b-9649-e8b93503f29e","description":{"content":"

This is the unsub_tag found on the GroupContacts object.

\n","type":"text/plain"},"type":"string","value":"","key":"unsub_tag"},{"id":"43701336-4209-475f-912a-8cb4ae2261a1","description":{"content":"

This parameter specifies the types of unsubscribe to delete: \"all\", \"event\", or \"any\"

\n","type":"text/plain"},"type":"string","value":"","key":"unsub_type"}]}},"response":[],"_postman_id":"fede7074-04d8-4fbf-8ce3-38964e60a819"}],"id":"16fe9db8-e7ac-4242-aee5-cba90a10a9f8","description":"

For data compliance, it is essential to be able to unsubscribe your contacts and retrieve their subscription histories as requested. The Splash API enables this with several unsubscribe endpoints. It is helpful to understand three of the key parameters Splash uses for handling unsubscribes.

\n

unsub_tag

\n

Whenever a guest RSVPs for an event, Splash creates an RSVP object on the GroupContact. In this object, the unsub_tag field contains a randomized hash uniquely generated for each event guest RSVP. This hash is used to identify a guest for a specific event or contact across your organization. This hash is found on the GroupContact object, under data.event_rsvp.unsub_tag.

\n

unsub_type

\n

Splash recognizes two types of unsubscribes. Event-level unsubscribes unsubscribe the contact from communications only for that specified event. Organization-level unsubscribes unsubscribe them from all communications from your Splash organization. When making a call to the /unsubscribe endpoint you can specify the unsub_type: \"all\" for organization-level, \"event\" for event-level, and \"any\" for both types.

\n

event_id

\n

Every unsubscribe is associated with an event in Splash, and the third parameter used in all unsubscribe calls is the ID of the unsub_tag event. Splash recommends retrieving the unsub_tag and its associated event_id from the GroupContact at the same time.

\n","event":[{"listen":"prerequest","script":{"id":"01197f0b-16c4-4549-870b-3bf71a1e8af6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"afac9fc3-30dc-49eb-b3e3-ce57f5516f7c","type":"text/javascript","exec":[""]}}],"_postman_id":"16fe9db8-e7ac-4242-aee5-cba90a10a9f8","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}}},{"name":"CRM API: Create Event","item":[{"name":"Create Event","id":"8ab69e42-edac-4b2e-aad7-602f713617c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"AUTHORIZATION","value":"SplashCRM {{my_crm_api_key}}","description":"

This is some static text along with the CRM API key provided by your Customer Success Manager. This is different from your regular API key and secret.

\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"

The title of the event to create. This field is required.

\n","key":"title","type":"text","value":"Quinn's New Year"},{"description":"

The numerical ID of the theme the new event will use. Find this in any GET /events API call response. When an ID is not entered, it defaults to the most recently updated theme to which you have access.

\n","key":"splash_theme_id","type":"text","value":"1200636"},{"description":"

The event start date and time, in the format YYYY-mm-dd H:i:s. Splash copies it from the theme itself when none is entered..

\n","key":"event_start","type":"text","value":"2019-12-31 18:00:00"},{"description":"

The event end date and time in the same format as event_start.

\n","key":"event_end","type":"text","value":"2020-01-01 03:00:00"},{"description":"

Indicate the time zone for your event in this field. For a complete list of timezones, see Appendix A.

\n","key":"time_zone_identifier","type":"text","value":"America/New_York"},{"description":"

Choose a particular domain for your event if you do not want to use the one automatically generated from the event's title.

\n","key":"domain","type":"text","value":"quinnsnewyear"},{"description":"

The event venue.

\n","key":"venue_name","type":"text","value":"Times Square"},{"description":"

The venue address.

\n","key":"address","type":"text","value":"45th Street"},{"description":"

The city of the venue.

\n","key":"city","type":"text","value":"New York"},{"description":"

The state, province, or territory of the venue.

\n","key":"state","type":"text","value":"New York"},{"description":"

The postal code of the venue.

\n","key":"zip_code","type":"text","value":"10036"},{"description":"

The country of the event venue.

\n","key":"country","type":"text","value":"United States"},{"description":"

Tags can be applied to the created event. Delimit each tag with a comma.

\n","key":"event_tags","type":"text","value":"crm api,new years"},{"description":"

Use this field to identify which event type to use.

\n","key":"event_type","type":"text","value":"Concert"},{"description":"

The new event can be associated with a Salesforce Campaign by its SFDC object ID. When placed in this field, your Salesforce integration automatically starts synchronizing the guest list.

\n","key":"salesforce_campaign_id","type":"text","value":""},{"description":"

If you are an org admin, you can pick a use to set as the owner of the event if you would like to override the default.

\n","key":"owner_email","type":"text","value":""},{"key":"attendance_type","value":"in-person","description":"

Event Attendance Type. Allowed values: \"in-person\", \"virtual\", \"virtual,in-person\"

\n","type":"text","uuid":"4ee3bb9e-4e5e-4c2e-ba01-ad3ba784fcd9"},{"key":"multisession","value":"0","description":"

Whether or not your event has mutliple Sessions. Allowed values: 1 or 0

\n","type":"text","uuid":"ab5714a6-d6ab-4c28-b878-d6097b6945be"},{"key":"survey_question[N]","value":"","description":"

Custom Event Field. Reach out to your Customer Success Manager for more information about usage.

\n","type":"text","uuid":"5fcbc5d6-8fae-4604-b750-00ce21b7b6f1"}]},"url":"https://splashthat.com/api/v2/crm/events","description":"

Creating an event with the Splash CRM API uses many of the same fields found on the event creation form on the web interface. These fields are sent as form data in the body of a POST request to the /crm/events endpoint. The event title and theme ID are required parameters, while the rest are optional. Empty parameters default to blank or TBD unless otherwise noted in the description for the particular parameter. Your CRM API key should be placed in the AUTHORIZATION header, prefixed by the static text SplashCRM. See Appendix A for a list of timezones.

\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v2","crm","events"],"host":["splashthat","com"],"query":[],"variable":[]}},"response":[{"id":"5a9c17be-84ca-4419-a4c8-4c2e1aacea9d","name":"Created Event","originalRequest":{"method":"POST","header":[{"key":"AUTHORIZATION","value":"SplashCRM {{my_crm_api_key}}","description":"This will be some static text along with the CRM API key that your Customer Success Manager provided to you. This is separate from your regular API key and secret.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"title","value":"Quinn's New Year","description":"The title of the event you would like to create. This is a required field. ","type":"text"},{"key":"splash_theme_id","value":"1200636","description":"This is the numerical ID of the theme you would like this new event to use. You can find this in any GET /events API call response. If none is entered, it will default to the most recenttly updated theme you have access to. ","type":"text"},{"key":"event_start","value":"2019-12-31 18:00:00","description":"The event start time, in the format YYYY-mm-dd H:i:s. If none is entered, Splash will copy the start date from the theme itself. ","type":"text"},{"key":"event_end","value":"2020-01-01 03:00:00","description":"The end date, which uses the same format as the start date. ","type":"text"},{"key":"time_zone_identifier","value":"America/New_York","description":"You can indicate the time zone for your event in this field. For a complete list of timezones, see Appendix A. ","type":"text"},{"key":"domain","value":"quinnsnewyear","description":"You can choose a particular domain for your event if you do not want to use the one that is automatically generated from the event's title. ","type":"text"},{"key":"venue_name","value":"Times Square","description":"The event venue. ","type":"text"},{"key":"address","value":"45th Street","description":"The venue address.","type":"text"},{"key":"city","value":"New York","description":"The city of the venue.","type":"text"},{"key":"state","value":"New York","description":"The state, province, or territory of the venue. ","type":"text"},{"key":"zip_code","value":"10036","description":"The postal code for oyur event. ","type":"text"},{"key":"country","value":"United States","description":"The country your event venue is in.","type":"text"},{"key":"event_tags","value":"crm api,new years","description":"You may apply tags to your created event. Simply delimit each tag with a comma. ","type":"text"},{"key":"event_type","value":"Concert","description":"Use this field to identify which event type you would like to use. ","type":"text"},{"key":"salesforce_campaign_id","value":"","description":"The new event can be associated with a Salesforce Campaign by its SFDC object ID. Placed in this field, it will allow your Salesforce integration to automatically start synchronizing the guest list. ","type":"text"},{"key":"owner_email","value":"","description":"If you are an org admin you can pick a use to set as the owner of the event if you would like to override the default. ","type":"text"},{"key":"attendance_type","value":"in-person","description":"Event Attendance Type. Allowed values: \"in-person\", \"virtual\", \"virtual,in-person\"","type":"text","uuid":"77ce9869-f06e-4484-856d-adc05390f8f6"},{"key":"multisession","value":"0","description":"Whether or not your event has multiple Sessions. Allowed values: 1 or 0","type":"text","uuid":"0073f2b4-5b9e-48b2-9e5f-938766bdfa53"},{"key":"survey_question[N]","value":"","description":"Custom Event Field. Reach out to your Customer Success Manager for more information about usage.","type":"text","uuid":"e0b7cd08-032f-46dd-917d-74708be182da"}],"options":{"raw":{"language":"json"}}},"url":"https://splashthat.com/api/v2/crm/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 21 Nov 2019 22:04:45 GMT"},{"key":"Content-Type","value":"text/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS"},{"key":"P3P","value":"CP=\"NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n \"status\": \"success\",\n \"message\": \"New Event saved!\",\n \"data\": {\n \"domain\": \"https://quinnsnewyear.splashthat.com\",\n \"event_id\": \"457548199\"\n }\n}"}],"_postman_id":"8ab69e42-edac-4b2e-aad7-602f713617c7"}],"id":"d89b6476-0ad3-4369-a4dd-a26c6101fe45","description":"

The Splash API accesses several functions related to retrieving information about Splash events as well as making particular changes such as adding guests or updating event information.

\n

The CRM API can be used to create events in your outside of the Splash interface. Slight differences in accessing this API necessitate this separate documentation. Please contact your customer success manager to gain access to this API.

\n","event":[{"listen":"prerequest","script":{"id":"0bc4f93f-4f20-46cc-a873-da25c1288c49","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3ef52da4-2018-4b88-a763-a20772d53fcf","type":"text/javascript","exec":[""]}}],"_postman_id":"d89b6476-0ad3-4369-a4dd-a26c6101fe45","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}}},{"name":"Team Manager","item":[{"name":"Fetch Organization groups","id":"a663ab30-0d90-48bb-ac2f-1344ebc4ec63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.splashthat.com/v1/team-manager/groups?limit=20&page=1","description":"

Use this endpoint to retrieve the list of groups of your organization.

\n

Remember you need to obtain a token from the Authentication Endpoint to get access to the system.

\n

Endpoint admits following get parameters, all of them being optional. When params are not specific their value will be a default one specificied in the following table.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Param NameParam TypeRequiredDefault value if not passed
pageintegerNo1
limitintegerNo20
\n
","urlObject":{"path":["v1","team-manager","groups"],"host":["https://api.splashthat.com"],"query":[{"key":"limit","value":"20"},{"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"9648b2cc-b968-4c9f-940a-eb68ebd1f71b","name":"Fetch Organization groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{my_token}}","type":"text","disabled":true}],"url":{"raw":"https://api.splashthat.com/v1/team-manager/groups?limit=20&page=1","host":["https://api.splashthat.com"],"path":["v1","team-manager","groups"],"query":[{"key":"limit","value":"20"},{"key":"page","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99999"},{"key":"RateLimit-Remaining","value":"99999"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 08:29:34 GMT"},{"key":"Allow","value":"GET"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"69"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [\n {\n \"id\": 14434,\n \"child_group_ids\": [],\n \"title\": \"Top Level CrevilloSplash Group\"\n },\n {\n \"id\": 19699,\n \"child_group_ids\": [],\n \"title\": \"group2\"\n }\n ],\n \"pagination\": {\n \"limit\": 20,\n \"count\": 2,\n \"page\": 1,\n \"pages\": 1,\n \"cursor\": null\n },\n \"limit\": 20,\n \"count\": 2,\n \"page\": 1,\n \"pages\": 1,\n \"cursor\": null\n}"}],"_postman_id":"a663ab30-0d90-48bb-ac2f-1344ebc4ec63"},{"name":"Fetch Organization Roles","id":"ded47a84-d2b9-4886-95d3-0248a9c27bd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.splashthat.com/v1/team-manager/roles","description":"

Use this endpoint to retrieve the list of roles of your organization.

\n

Remember you need to obtain a token from the Authentication Endpoint to get access to the system.

\n

Endpoint admits following get parameters, all of them being optional. When params are not specific their value will be a default one specified in the following table.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Param NameParam TypeRequiredDefault value if not passed
pageintegerNo1
limitintegerNo20
\n
","urlObject":{"path":["v1","team-manager","roles"],"host":["https://api.splashthat.com"],"query":[],"variable":[]}},"response":[{"id":"b57e380f-9df9-4596-b8cf-d685715836b3","name":"Fetch Organization Roles","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{my_token}}","type":"text","disabled":true}],"url":"https://api.splashthat.com/v1/team-manager/roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99999"},{"key":"RateLimit-Remaining","value":"99999"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:06:26 GMT"},{"key":"Allow","value":"GET"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"253"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [\n {\n \"id\": 7865,\n \"name\": \"Admin\",\n \"description\": \"Admins have control over the entire program. They can access all parts of the platform, manage the team, and captain the ship.\"\n },\n {\n \"id\": 7866,\n \"name\": \"Creative Specialist\",\n \"description\": \"Designer Pro access, but no access to Team Management\"\n },\n {\n \"id\": 7867,\n \"name\": \"Group Manager\",\n \"description\": \"Group Managers define which users belong to which groups. Help your team access and manage the right events and guest information.\"\n },\n {\n \"id\": 7868,\n \"name\": \"Integration Specialist\",\n \"description\": \"The connectors. These are your teammates responsible for connecting your data to all third party applications.\"\n },\n {\n \"id\": 7869,\n \"name\": \"Event Organizer\",\n \"description\": \"Event Organizers have access to all functionality within the event, but are limited when it comes to Designer Pro or managing integrations.\"\n },\n {\n \"id\": 7870,\n \"name\": \"Viewer (Read-only)\",\n \"description\": \"Viewers can see all aspects of the event like touchpoints, guest lists, and reports, but they have one important rule: no touching!\"\n },\n {\n \"id\": 7871,\n \"name\": \"On-site Specialist\",\n \"description\": \"Your people at the door with full access to the guest list, guaranteeing a quality in-person experience and accurate registration data.\"\n }\n ],\n \"success\": true\n}"}],"_postman_id":"ded47a84-d2b9-4886-95d3-0248a9c27bd5"},{"name":"Fetch Organization Users","id":"793cffc0-e13b-4a98-80b8-749b0b593860","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.splashthat.com/v1/team-manager/users?page=1&limit=2&filters[search]=&filters[roles][]=15&filters[roles][]=14&filters[addedDateStart]=2023-08-01%2000%3A00%3A00&filters[addedDateEnd]=2023-08-31%2023%3A59%3A59&filters[lastLoginStart]=2023-08-01%2000%3A00%3A00&filters[lastLoginEnd]=2023-08-31%2023%3A59%3A59&filters[groups][]=1&sort=created_asc","description":"

Use this endpoint to obtain a paginated list of users belonging to your organization

\n

The user performing the request must have access to view the Team Users. If not, the endpoint will return a 403 response.

\n

PARAMS

\n

The endpoint can receive following query parameters to restrict the results shown and to show in a given order.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Param NameParam TypeRequiredDefault if not provided
pageintno1
limitintno20
filtersarrayno[]
sortstringnocreated_desc
\n

Filters param

\n

the filter params above can be used to search for specific users. The filters param allows the following keys and values

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
ParamAllowed values
searchany stringwhen passed, it will filter by users which email is LIKE the one specificed in the param or the concatenation of the first and last name of the user is LIKE the one specificied in the param.
activityStatusactivepending
groupsarray of integersit will return the users belonging to the groups passed. the way to specify this parameter is like the following filters[groups][]=1&filters[groups][]=5...
lastLoginStartstring representing a date in the format Y-m-d H:i:s Example 2023-08-01 00:00:00Will return users which which last login into the system have occurred after the specified date
lastLoginEndstring representing a date in the format Y-m-d H:i:s Example 2023-08-01 23:59:59Will return users which which last login into the system have occurred before the specified date
addedDateStartstring representing a date in the format Y-m-d H:i:s Example 2023-08-01 23:10:00Will return users created in the system after the given date. A user is created in the system when the user registers manually itself or when it receives an invitation to join the organization.
addedDateEndstring representing a date in the format Y-m-d H:i:s Example 2023-08-01 23:59:59Will return users created in the system before the given date
rolesarray of integersit will return the users having to the roles passed. the way to specify this parameter is like the following filters[roles][]=1&filters[roles][]=5...
\n

Sort param

\n

The sort in this endpoint works in a specific way. Even you can specify a order as explained bellow, in all cases the users that are “pending” will be presented first in the list of the results.

\n

For example, let’s suppose you have a pending and active user created at the same time. No matter which sort parameter you specify, in that case the pending users will appear first in the result.

\n

Knowing this, you can also specify a sort parameter that will make the pending users in one side and the active users

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Param
created_descOrder by the date the users were created into the system (as said above, either manually or when the user received the invitation) in descending order
created_ascSame as above but in ascending order (users created first will appear first in the list)
first_name_descOrder by the first name of the users in descending order
first_name_ascOrder by the first name of the users in ascending order
last_name_descOrder by the last name of the users in descending order
last_name_ascOrder by the last name of the users in ascending order
email_descOrder by the email of the users in descending order
email_ascOrder by the email of the users in ascending order
\n
","urlObject":{"path":["v1","team-manager","users"],"host":["https://api.splashthat.com"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"2"},{"key":"filters[search]","value":""},{"key":"filters[roles][]","value":"15"},{"key":"filters[roles][]","value":"14"},{"key":"filters[addedDateStart]","value":"2023-08-01%2000%3A00%3A00"},{"key":"filters[addedDateEnd]","value":"2023-08-31%2023%3A59%3A59"},{"key":"filters[lastLoginStart]","value":"2023-08-01%2000%3A00%3A00"},{"key":"filters[lastLoginEnd]","value":"2023-08-31%2023%3A59%3A59"},{"key":"filters[groups][]","value":"1"},{"key":"sort","value":"created_asc"}],"variable":[]}},"response":[{"id":"30cc8eb4-996f-4ab8-a423-33da54dd957a","name":"Empty list ist of users","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.splashthat.com/v1/team-manager/users?page=1&limit=2&filters[search]=&filters[roles][]=15&filters[roles][]=14&filters[addedDateStart]=2023-08-01%2000%3A00%3A00&filters[addedDateEnd]=2023-08-31%2023%3A59%3A59&filters[lastLoginStart]=2023-08-01%2000%3A00%3A00&filters[lastLoginEnd]=2023-08-31%2023%3A59%3A59&filters[groups][]=1&sort=created_asc","host":["https://api.splashthat.com"],"path":["v1","team-manager","users"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"2"},{"key":"filters[search]","value":""},{"key":"filters[roles][]","value":"15"},{"key":"filters[roles][]","value":"14"},{"key":"filters[addedDateStart]","value":"2023-08-01%2000%3A00%3A00"},{"key":"filters[addedDateEnd]","value":"2023-08-31%2023%3A59%3A59"},{"key":"filters[lastLoginStart]","value":"2023-08-01%2000%3A00%3A00"},{"key":"filters[lastLoginEnd]","value":"2023-08-31%2023%3A59%3A59"},{"key":"filters[groups][]","value":"1"},{"key":"sort","value":"created_asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99997"},{"key":"RateLimit-Remaining","value":"99997"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 08:52:25 GMT"},{"key":"Allow","value":"GET, POST"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"64"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [],\n \"pagination\": {\n \"limit\": 2,\n \"count\": 0,\n \"page\": 1,\n \"pages\": 0,\n \"cursor\": null\n },\n \"limit\": 2,\n \"count\": 0,\n \"page\": 1,\n \"pages\": 0,\n \"cursor\": null\n}"},{"id":"7243498f-4c98-44cb-8ebb-ac5a12de6ddb","name":"Fetch Organization Users","originalRequest":{"method":"GET","header":[],"url":"https://api.splashthat.com/v1/team-manager/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99998"},{"key":"RateLimit-Remaining","value":"99998"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:35:07 GMT"},{"key":"Allow","value":"GET, POST"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"357"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [\n {\n \"id\": 719881,\n \"email\": \"new-user@splashthat.com\",\n \"pending_group_invite\": true,\n \"groups\": [\n {\n \"id\": 20357,\n \"child_group_ids\": [],\n \"title\": \"Group 1.A\"\n }\n ],\n \"role\": {\n \"id\": 7866,\n \"name\": \"Creative Specialist\",\n \"description\": \"Designer Pro access, but no access to Team Management\"\n },\n \"first_name\": null,\n \"last_name\": null,\n \"created\": \"2023-09-19T05:15:14-04:00\",\n \"last_logged_in\": null,\n \"last_active\": null\n },\n {\n \"id\": 478067,\n \"email\": \"carlos.revillo@splashthat.com\",\n \"pending_group_invite\": false,\n \"groups\": [\n {\n \"id\": 19699,\n \"child_group_ids\": [\n 20357\n ],\n \"title\": \"group2\"\n }\n ],\n \"role\": {\n \"id\": 7865,\n \"name\": \"Admin\",\n \"description\": \"Admins have control over the entire program. They can access all parts of the platform, manage the team, and captain the ship.\"\n },\n \"first_name\": \"Carlos\",\n \"last_name\": \"Revillo\",\n \"created\": \"2020-02-05T06:41:36-05:00\",\n \"last_logged_in\": \"2023-09-19T04:24:52-04:00\",\n \"last_active\": \"2023-09-19T05:24:56-04:00\"\n }\n ],\n \"pagination\": {\n \"limit\": 20,\n \"count\": 2,\n \"page\": 1,\n \"pages\": 1,\n \"cursor\": null\n },\n \"limit\": 20,\n \"count\": 2,\n \"page\": 1,\n \"pages\": 1,\n \"cursor\": null\n}"}],"_postman_id":"793cffc0-e13b-4a98-80b8-749b0b593860"},{"name":"Invite user to organization","id":"15de84f8-6027-40c5-aa79-a9570cdbe3fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n \"user\": {\n \"email\": \"new-user@splashthat.com\",\n \"group_ids\": [20357],\n \"role_id\": 7866\n }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.splashthat.com/v1/team-manager/users","description":"

To invite a user to your organization you need to call the endpoint and pass a json including the following information. All of them are REQUIRED.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
fieldtype
emailstringemail of the user to invite
group_idsarray of integersids of the groups where you want to add the user. Those ids need to be ids of groups of that organization. You can get the ids of this groups by query then endpoint to obtain groups of the organization.
role_idintegerid of the role to assign to the user. The role must be a role of the organization. You can get the list of roles by querying the endpoint to get the roles of the organization.
\n

If the email passed is already in our database, the endpoint will return a 409 response with some information about the cause of the error.

\n

If the request validates then a job will be created in our system. When this job gets processed, the invited user will receive an email with the link to accept the invitation. The user will need to click that link and will be redirected to splashthat.com to accept the invite.

\n","urlObject":{"path":["v1","team-manager","users"],"host":["https://api.splashthat.com"],"query":[],"variable":[]}},"response":[{"id":"dc1a8c1e-41bd-44f6-941b-76b7006b8d00","name":"Invite user response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n \"user\": {\n \"email\": \"new-user@splashthat.com\",\n \"group_ids\": [20357],\n \"role_id\": 7866\n }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.splashthat.com/v1/team-manager/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99998"},{"key":"RateLimit-Remaining","value":"99998"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:15:14 GMT"},{"key":"Allow","value":"GET, POST"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"468"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 719881,\n \"email\": \"new-user@splashthat.com\",\n \"pending_group_invite\": true,\n \"groups\": [\n {\n \"id\": 20357,\n \"child_group_ids\": [],\n \"title\": \"Group 1.A\"\n }\n ],\n \"role\": {\n \"id\": 7866,\n \"name\": \"Creative Specialist\",\n \"description\": \"\"\n },\n \"first_name\": null,\n \"last_name\": null,\n \"created\": \"2023-09-19T05:15:14-04:00\",\n \"last_logged_in\": null,\n \"last_active\": null\n },\n \"success\": true\n}"},{"id":"05db070a-650f-4498-866b-50962b9d41bf","name":"Invite an already existing user","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n \"user\": {\n \"email\": \"new-user@splashthat.com\",\n \"group_ids\": [20357],\n \"role_id\": 7866\n }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.splashthat.com/v1/team-manager/users"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99999"},{"key":"RateLimit-Remaining","value":"99999"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:20:23 GMT"},{"key":"Allow","value":"GET, POST"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"63"},{"key":"X-Kong-Proxy-Latency","value":"2"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 409,\n \"message\": \"[[Splash Exception]] User has already been invited to the team\",\n \"errors\": null,\n \"errorCode\": \"team__add_user__duplicate_user\"\n },\n \"data\": []\n}"}],"_postman_id":"15de84f8-6027-40c5-aa79-a9570cdbe3fa"},{"name":"Update role and groups for an user","id":"b3b5526d-78e1-4539-aa5f-a0d14a6dc25b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n \"user\": {\n \"group_ids\": [20357],\n \"role_id\": 7866\n }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.splashthat.com/v1/team-manager/users","description":"

Use this endpoint when you need to update the role and|or the groups of given user id

\n

To perform the operation you need to pass a json starting with the key “user” and including the “role_id” and the group_ids to assign the user.

\n

you MUST pass these parameters always in the request or the endpoint will fail. So, for example, if the user has the role “Viewer” with role_id “15”, you will need to pass \"role_id\":15 in the request so the use continue having this role.

\n

If the role_id does not exist, or any of the group_ids do not exists, the endpoint will return a error response.

\n

When changing the role, even you get the new role id assigned to the user in the response, the change of permissions for the user may take some time to be effective.

\n","urlObject":{"path":["v1","team-manager","users"],"host":["https://api.splashthat.com"],"query":[],"variable":[]}},"response":[{"id":"5342b80e-b61d-4c0d-ac8c-b0f490a44ba2","name":"Update user response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n \"user\": {\n \"group_ids\": [20357],\n \"role_id\": 7866\n }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.splashthat.com/v1/team-manager/users/:user_id","host":["https://api.splashthat.com"],"path":["v1","team-manager","users",":user_id"],"variable":[{"key":"user_id","value":"719881"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99998"},{"key":"RateLimit-Remaining","value":"99998"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:27:55 GMT"},{"key":"Allow","value":"DELETE, PATCH"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"297"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 719881,\n \"email\": \"new-user@splashthat.com\",\n \"pending_group_invite\": true,\n \"groups\": [\n {\n \"id\": 20357,\n \"child_group_ids\": [],\n \"title\": \"Group 1.A\"\n }\n ],\n \"role\": {\n \"id\": 7866,\n \"name\": \"Creative Specialist\",\n \"description\": \"Designer Pro access, but no access to Team Management\"\n },\n \"first_name\": null,\n \"last_name\": null,\n \"created\": \"2023-09-19T05:15:14-04:00\",\n \"last_logged_in\": null,\n \"last_active\": null\n },\n \"success\": true\n}"},{"id":"1df788b8-5555-47f4-9c21-5b50c70b3572","name":"Update role and groups for an user passing an invalid group","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n \"user\": {\n \"group_ids\": [20357],\n \"role_id\": 78660\n }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.splashthat.com/v1/team-manager/users/:user_id","protocol":"https","host":["api","splashthat","com"],"path":["v1","team-manager","users",":user_id"],"variable":[{"key":"user_id","value":"719881"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99998"},{"key":"RateLimit-Remaining","value":"99998"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:39:23 GMT"},{"key":"Allow","value":"DELETE, PATCH"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"252"},{"key":"X-Kong-Proxy-Latency","value":"2"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 400,\n \"message\": \"[[Splash Exception]] {\\\"user.roleId.user.roleId\\\":\\\"Invalid role provided\\\"}\",\n \"errors\": null\n },\n \"data\": []\n}"}],"_postman_id":"b3b5526d-78e1-4539-aa5f-a0d14a6dc25b"},{"name":"Delete user from the organization","id":"7375a5cb-3019-42ea-827b-76d07c6f0f6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n \"user_to_transfer_events\": 478067\n}","options":{"raw":{"language":"json"}}},"url":"https://api.splashthat.com/v1/team-manager/users/:user_id","description":"

Use this endpoint to delete a user of your organization

\n

When a user is deleted, all events created by that user are transferred to another user. This endpoint allows passing a JSON containing the id of the user we want to transfer the events to in the form. This parameter is mandatory for active users but not needed for pending users.

\n

The provided user id must be the id of a user belonging to the same organization as the user we are deleting.

\n

Furthermore, all the logged-in sessions of the deleted user will be automatically closed.

\n

When the deleted user tries to log in again into the system, the user will get an error message.

\n","urlObject":{"path":["v1","team-manager","users",":user_id"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"type":"any","value":"719881","key":"user_id"}]}},"response":[{"id":"840211a8-51fd-4e7e-812d-e86d61f5c3df","name":"Delete user specifying user to transfer events to","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n \"user_to_transfer_events\": 478067\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.splashthat.com/v1/team-manager/users/:user_id","host":["https://api.splashthat.com"],"path":["v1","team-manager","users",":user_id"],"variable":[{"key":"user_id","value":"719881"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99999"},{"key":"RateLimit-Remaining","value":"99999"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:52:20 GMT"},{"key":"Allow","value":"DELETE, PATCH"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"80"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 400,\n \"message\": \"[[Splash Exception]] User does not belong to the team\",\n \"errors\": null\n },\n \"data\": []\n}"}],"_postman_id":"7375a5cb-3019-42ea-827b-76d07c6f0f6f"}],"id":"d6660998-873c-48d7-ae84-d7ffd800a0ee","description":"

This section explains how to connect to our Team Manager API
and use the exposed endpoints to manage Team Manager using external tools.

\n","_postman_id":"d6660998-873c-48d7-ae84-d7ffd800a0ee","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}}},{"name":"Forms","item":[{"name":"Retrieve registration form","id":"3e53ffe4-f2b9-4d96-965d-df4bbcd69936","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.splashthat.com/v1/events/:event_id/form","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["v1","events",":event_id","form"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"type":"any","value":"{{event_id}}","key":"event_id"}]}},"response":[{"id":"5449f7d5-e272-41ce-bf0f-943443feda16","name":"Success response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{my_token}}","type":"text","disabled":true}],"url":{"raw":"https://api.splashthat.com/v1/events/:event_id/form","host":["https://api.splashthat.com"],"path":["v1","events",":event_id","form"],"variable":[{"key":"event_id","value":"{{event_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99995"},{"key":"RateLimit-Remaining","value":"99995"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 22 Jan 2024 09:29:51 GMT"},{"key":"Allow","value":"GET"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"62"},{"key":"X-Kong-Proxy-Latency","value":"2"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200,\n \"cache\": true\n },\n \"data\": {\n \"form\": {\n \"id\": 2163634,\n \"version\": 16,\n \"style_configuration\": {\n \"button\": {\n \"colors\": {\n \"default\": 2,\n \"hover\": 3\n },\n \"text\": {\n \"font\": 3,\n \"colors\": {\n \"default\": 1,\n \"hover\": 0\n }\n },\n \"border\": {\n \"colors\": {\n \"hover\": 0,\n \"default\": 2\n }\n }\n },\n \"head_line_text\": {\n \"font\": 0,\n \"font_size\": 28,\n \"position\": \"center\"\n },\n \"errors\": {\n \"color\": 2,\n \"font\": 1,\n \"font_size\": 12\n },\n \"tickets\": [\n {\n \"type\": \"standalone\",\n \"ticket_border\": {\n \"colors\": {\n \"default\": 2,\n \"hover\": 3\n },\n \"sizes\": {\n \"top\": 1,\n \"bottom\": 1,\n \"right\": 1,\n \"left\": 1\n }\n },\n \"last_edited\": 1604603972358,\n \"ticket_name\": {\n \"font\": 1,\n \"font_size\": 20,\n \"color\": 1\n },\n \"ticket_description\": {\n \"font\": 2,\n \"color\": 1\n },\n \"ticket_price\": {\n \"font\": 2,\n \"color\": 1\n },\n \"ticket_quantity\": {\n \"font\": 2,\n \"colors\": {\n \"hover\": 3,\n \"default\": 1\n },\n \"font_size\": 16,\n \"font_colors\": {\n \"answer\": 1,\n \"placeholder\": 3\n },\n \"input_background_colors\": {\n \"default\": 2,\n \"hover\": 2\n }\n },\n \"ticket_remaining\": {\n \"font\": 2,\n \"font_size\": 12,\n \"color\": 1\n },\n \"ticket_date_time\": {\n \"font\": 2,\n \"color\": 1\n },\n \"ticket_style\": \"square\",\n \"ticket_background\": {\n \"color\": 2\n },\n \"ticket_overlay\": {\n \"opacity\": 0.37\n }\n }\n ],\n \"close_button\": {\n \"default\": 2,\n \"hover\": 3\n },\n \"form\": {\n \"display_styles\": {\n \"display_mode\": \"thin\"\n },\n \"links\": {\n \"default\": 2,\n \"hover\": 3\n }\n }\n },\n \"submit_button_label\": \"

SUBMIT

\",\n \"root\": {\n \"type\": \"root\",\n \"id\": 20013447,\n \"label_markup\": \"\",\n \"children\": [\n {\n \"type\": \"ticket_selection_node\",\n \"id\": 20013448,\n \"label_markup\": \"\",\n \"name\": \"\",\n \"label\": \"\",\n \"description\": \"\",\n \"logic\": [],\n \"lock\": 0\n }\n ],\n \"name\": \"event-ticket-selection-form\",\n \"label\": \"\",\n \"description\": \"The essential Splash Ticket Selection Form\",\n \"logic\": [],\n \"lock\": 0\n },\n \"name\": \"event-ticket-selection-form\",\n \"label\": \"Purchase Tickets\",\n \"description\": \"The essential Splash Ticket Selection Form\",\n \"type\": \"ticketSelection\",\n \"error_messages\": [],\n \"form_library_form\": null,\n \"cached\": true\n },\n \"form_owner_id\": 2064766,\n \"form_config\": {\n \"input_types\": {\n \"splash_social_rsvp\": {\n \"networks\": {\n \"linked_in\": {\n \"fields\": [\n \"linked_in_first_name\",\n \"linked_in_last_name\",\n \"linked_in_email\",\n \"linked_in_company\",\n \"linked_in_job_title\",\n \"linked_in_profile_url\",\n \"linked_in_profile_picture\",\n \"linked_in_location\"\n ]\n },\n \"facebook\": {\n \"fields\": [\n \"facebook_first_name\",\n \"facebook_last_name\",\n \"facebook_email\",\n \"facebook_facebook_id\",\n \"facebook_middle_name\",\n \"facebook_short_name\"\n ]\n }\n }\n }\n }\n }\n },\n \"success\": true\n}"},{"id":"34af4de3-b8d7-4bfc-8239-9729e7884e54","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{my_token}}","type":"text","disabled":true}],"url":{"raw":"https://api.splashthat.com/v1/events/:event_id/form","host":["https://api.splashthat.com"],"path":["v1","events",":event_id","form"],"query":[{"key":"access_token","value":"{{access_token}}","disabled":true}],"variable":[{"key":"event_id","value":"{{event_id}}"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Jan 2024 09:30:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"26"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Response-Latency","value":"1"},{"key":"Server","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"Unauthorized\"\n}"}],"_postman_id":"3e53ffe4-f2b9-4d96-965d-df4bbcd69936"}],"id":"c577774c-1961-47c3-8120-f796e12ae08b","description":"

It's possible to retrieve the form for a specific event using the following endpoint.

\n

Authorization to read the event is needed. You need to provide an access_token or if you prefer, send a Bearer header including the token.

\n","_postman_id":"c577774c-1961-47c3-8120-f796e12ae08b","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}}},{"name":"Appendix A: Time Zones","item":[],"id":"8bc0f68d-2ddb-48cf-addc-23f755d072b6","description":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
IdTextGMT DifferenceIdentifier
1Eastern Standard Time - New York-5.0America/New_York
2Central Standard Time - Chicago-6.0America/Chicago
3Mountain Standard Time - Denver-7.0America/Denver
4Pacific Standard Time - Los Angeles-8.0America/Los_Angeles
5Marshall Islands Time - Kwajalein-12.0Pacific/Kwajalein
6Samoa Standard Time - Midway-11.0Pacific/Midway
7Hawaii-Aleutian Standard Time - Honolulu-10.0Pacific/Honolulu
8Alaska Standard Time - Anchorage-9.0America/Anchorage
9Mountain Standard Time - Phoenix-7.0America/Phoenix
10Central Standard Time - Costa Rica-6.0America/Costa_Rica
11Central Standard Time - Mexico City-6.0America/Mexico_City
12Central Standard Time - Saskatchewan-6.0Canada/Saskatchewan
13Peru Standard Time - Lima-5.0America/Lima
14Eastern Standard Time - Indianapolis-5.0America/Indiana/Indianapolis
15Atlantic Standard Time - Atlantic-4.0Canada/Atlantic
16Venezuela Time - Caracas-4.0America/Caracas
17Chile Standard Time - Santiago-4.0America/Santiago
18Newfoundland Standard Time - Newfoundland-4.0Canada/Newfoundland
19Brasilia Standard Time - East-3.0Brazil/East
20Argentina Standard Time - Buenos Aires-3.0America/Buenos_Aires
21Greenwich Mean Time - Danmarkshavn-3.0America/Danmarkshavn
22West Greenland Standard Time - Godthab-2.0America/Godthab
23Azores Standard Time - Azores-1.0Atlantic/Azores
24Cape Verde Standard Time - Cape Verde-1.0Atlantic/Cape_Verde
25Greenwich Mean Time - London0.0Europe/London
26Greenwich Mean Time0.0GMT
27Central European Standard Time - Amsterdam1.0Europe/Amsterdam
28Central European Standard Time - Belgrade1.0Europe/Belgrade
29Central European Standard Time - Brussels1.0Europe/Brussels
30Central European Standard Time - Warsaw1.0Europe/Warsaw
31West Africa Standard Time - Niamey1.0Africa/Niamey
32Eastern European Standard Time - Athens2.0Europe/Athens
33Eastern European Standard Time - Bucharest2.0Europe/Bucharest
34Eastern European Standard Time - Cairo2.0Africa/Cairo
35Central Africa Time - Harare2.0Africa/Harare
36Eastern European Standard Time - Helsinki2.0Europe/Helsinki
37Israel Standard Time - Jerusalem2.0Asia/Jerusalem
38Arabian Standard Time - Baghdad3.0Asia/Baghdad
39Arabian Standard Time - Kuwait3.0Asia/Kuwait
40Moscow Standard Time - Moscow3.0Europe/Moscow
41East Africa Time - Nairobi3.0Africa/Nairobi
42Iran Standard Time - Tehran4.0Asia/Tehran
43Gulf Standard Time - Muscat4.0Asia/Muscat
44Azerbaijan Standard Time - Baku4.0Asia/Baku
45Afghanistan Time - Kabul5.0Asia/Kabul
46Yekaterinburg Standard Time - Yekaterinburg5.0Asia/Yekaterinburg
47Uzbekistan Standard Time - Tashkent5.0Asia/Tashkent
48India Standard Time - Kolkata5.5Asia/Kolkata
49Nepal Time - Katmandu6.0Asia/Katmandu
50East Kazakhstan Time - Almaty6.0Asia/Almaty
51Bangladesh Standard Time - Dhaka6.0Asia/Dhaka
53Myanmar Time - Rangoon6.5Asia/Rangoon
54Indochina Time - Bangkok7.0Asia/Bangkok
55Krasnoyarsk Standard Time - Krasnoyarsk7.0Asia/Krasnoyarsk
56Hong Kong Standard Time - Hong Kong8.0Asia/Hong_Kong
57Irkutsk Standard Time - Irkutsk8.0Asia/Irkutsk
58Singapore Standard Time - Singapore8.0Asia/Singapore
59Australian Western Standard Time - Perth8.0Australia/Perth
60Taipei Standard Time - Taipei8.0Asia/Taipei
61Japan Standard Time - Tokyo9.0Asia/Tokyo
62Korean Standard Time - Seoul9.0Asia/Seoul
63Yakutsk Standard Time - Yakutsk9.0Asia/Yakutsk
64Australian Central Standard Time - Adelaide10.0Australia/Adelaide
65Australian Central Standard Time - Darwin10.0Australia/Darwin
66Australian Eastern Standard Time - Brisbane10.0Australia/Brisbane
67Australian Eastern Standard Time - Sydney10.0Australia/Sydney
68Papua New Guinea Time - Port Moresby10.0Pacific/Port_Moresby
69Australian Eastern Standard Time - Hobart10.0Australia/Hobart
70Vladivostok Standard Time - Vladivostok10.0Asia/Vladivostok
71Magadan Standard Time - Magadan11.0Asia/Magadan
72New Zealand Standard Time - Auckland12.0Pacific/Auckland
73Petropavlovsk-Kamchatski Standard Time - Kamchatka12.0Asia/Kamchatka
74Tonga Standard Time - Tongatapu13.0Pacific/Tongatapu
75Eastern Standard Time - Panama-5.0America/Panama
76Greenwich Mean Time - Casablanca0.0Africa/Casablanca
77Central European Standard Time - Berlin1.0Europe/Berlin
78Philippine Standard Time - Manila8.0Asia/Manila
79Atlantic Standard Time - Puerto Rico-4.0America/Puerto_Rico
80Central European Standard Time - Budapest1.0Europe/Budapest
81Pacific Standard Time - Vancouver-8.0America/Vancouver
82Pakistan Standard Time - Karachi5.0Asia/Karachi
83South Africa Standard Time - Johannesburg2.0Africa/Johannesburg
84Central Standard Time - Winnipeg-6.0America/Winnipeg
85Eastern Standard Time - Toronto-5.0America/Toronto
86Central European Standard Time - Paris1.0Europe/Paris
87Greenwich Mean Time - Reykjavik0.0Atlantic/Reykjavik
88Central European Standard Time - Bratislava1.0Europe/Bratislava
89Central European Standard Time - Zagreb1.0Europe/Zagreb
90Western Indonesia Time - Jakarta7.0Asia/Jakarta
91Central European Standard Time - Zurich1.0Europe/Zurich
92Western European Standard Time - Lisbon0.0Europe/Lisbon
93Mountain Standard Time - Edmonton-7.0America/Edmonton
94Indochina Time - Phnom Penh7.0Asia/Phnom_Penh
95Central European Standard Time - Ljubljana1.0Europe/Ljubljana
96Central European Standard Time - Rome1.0Europe/Rome
97Central Standard Time - Regina-6.0America/Regina
98Malaysia Time - Kuala Lumpur8.0Asia/Kuala_Lumpur
99Central European Standard Time - Prague1.0Europe/Prague
100Fiji Standard Time - Fiji12.0Pacific/Fiji
103Ulaanbaatar Standard Time - Ulaanbaatar8.0Asia/Ulaanbaatar
105Gulf Standard Time - Dubai4.0Asia/Dubai
107Central European Standard Time - Oslo1.0Europe/Oslo
108Central European Standard Time - Copenhagen1.0Europe/Copenhagen
109Arabian Standard Time - Bahrain3.0Asia/Bahrain
110Colombia Standard Time - Bogota-5.0America/Bogota
111Eastern European Standard Time - Riga2.0Europe/Riga
112Eastern European Standard Time - Tallinn2.0Europe/Tallinn
113Eastern Standard Time - Nassau-5.0America/Nassau
114Brasilia Standard Time - Sao Paulo-3.0America/Sao_Paulo
115Eastern European Standard Time - Kiev2.0Europe/Kiev
116Amazon Standard Time - Campo Grande-4.0America/Campo_Grande
117Atlantic Standard Time - Curacao-4.0America/Curacao
118Greenwich Mean Time - Dublin0.0Europe/Dublin
119Central European Standard Time - Stockholm1.0Europe/Stockholm
120Jordan Time - Amman2.0Asia/Amman
121Eastern Standard Time - Jamaica-5.0America/Jamaica
122Greenwich Mean Time - Accra0.0Africa/Accra
123Central European Standard Time - Madrid1.0Europe/Madrid
124Atlantic Standard Time - Halifax-4.0America/Halifax
125Turkey Time - Istanbul2.0Europe/Istanbul
126Atlantic Standard Time - Barbados-4.0America/Barbados
127Central European Standard Time - Vienna1.0Europe/Vienna
128Central European Standard Time - Skopje1.0Europe/Skopje
129Mexican Pacific Standard Time - Mazatlan-7.0America/Mazatlan
130East Africa Time - Dar es Salaam3.0Africa/Dar_es_Salaam
131Central European Standard Time - Malta1.0Europe/Malta
132Atlantic Standard Time - Santo Domingo-4.0America/Santo_Domingo
133Eastern European Standard Time - Vilnius2.0Europe/Vilnius
134Mauritius Standard Time - Mauritius4.0Indian/Mauritius
135Amazon Standard Time - Boa Vista-4.0America/Boa_Vista
136Uruguay Standard Time - Montevideo-3.0America/Montevideo
137Eastern European Standard Time - Sofia2.0Europe/Sofia
138Central Indonesia Time - Makassar8.0Asia/Makassar
139Argentina Standard Time - Cordoba-3.0America/Cordoba
140Georgia Standard Time - Tbilisi4.0Asia/Tbilisi
141Western European Standard Time - Canary0.0Atlantic/Canary
143Central Standard Time - Guatemala-6.0America/Guatemala
144Eastern European Standard Time - Beirut2.0Asia/Beirut
145Indochina Time - Saigon7.0Asia/Saigon
146Central Africa Time - Windhoek1.0Africa/Windhoek
147China Standard Time - Chongqing8.0Asia/Chongqing
148East Africa Time - Kampala3.0Africa/Kampala
149Seychelles Time - Mahe4.0Indian/Mahe
150Central European Standard Time - Sarajevo1.0Europe/Sarajevo
151Central European Standard Time - Podgorica1.0Europe/Podgorica
152Atlantic Standard Time - Port of Spain-4.0America/Port_of_Spain
153Greenwich Mean Time - Abidjan0.0Africa/Abidjan
154Brasilia Standard Time - Fortaleza-3.0America/Fortaleza
155West Africa Standard Time - Lagos1.0Africa/Lagos
156Atlantic Standard Time - Tortola-4.0America/Tortola
157Eastern Standard Time - Cayman-5.0America/Cayman
158Atlantic Standard Time - St Thomas-4.0America/St_Thomas
159Arabian Standard Time - Qatar3.0Asia/Qatar
160Central Africa Time - Lusaka2.0Africa/Lusaka
161Greenwich Mean Time - Bamako0.0Africa/Bamako
162Eastern European Standard Time - Nicosia2.0Asia/Nicosia
163West Kazakhstan Time - Qyzylorda6.0Asia/Qyzylorda
164Central Africa Time - Kigali2.0Africa/Kigali
165Arabian Standard Time - Riyadh3.0Asia/Riyadh
166Réunion Time - Reunion4.0Indian/Reunion
167Eastern European Standard Time - Gaza2.0Asia/Gaza
168Tahiti Time - Tahiti-10.0Pacific/Tahiti
169Atlantic Standard Time - St Lucia-4.0America/St_Lucia
170Australian Eastern Standard Time - Melbourne10.0Australia/Melbourne
171Mountain Standard Time - Dawson Creek-7.0America/Dawson_Creek
172Atlantic Standard Time - Bermuda-4.0Atlantic/Bermuda
173Central Standard Time - El Salvador-6.0America/El_Salvador
174East Africa Time - Addis Ababa3.0Africa/Addis_Ababa
175Central Standard Time - Tegucigalpa-6.0America/Tegucigalpa
176Greenwich Mean Time - Jersey0.0Europe/Jersey
177Guyana Time - Guyana-4.0America/Guyana
178Armenia Standard Time - Yerevan4.0Asia/Yerevan
179Pacific Standard Time - Tijuana-8.0America/Tijuana
180Greenwich Mean Time - Freetown0.0Africa/Freetown
181Mexican Pacific Standard Time - Hermosillo-7.0America/Hermosillo
182West Africa Standard Time - Douala1.0Africa/Douala
183Eastern European Standard Time - Chisinau2.0Europe/Chisinau
184Central European Standard Time - Luxembourg1.0Europe/Luxembourg
185Uzbekistan Standard Time - Samarkand5.0Asia/Samarkand
186Cuba Standard Time - Havana-5.0America/Havana
187China Standard Time - Macau8.0Asia/Macau
188Central European Standard Time - Tunis1.0Africa/Tunis
189West Africa Standard Time - Bangui1.0Africa/Bangui
190Maldives Time - Maldives5.0Indian/Maldives
191Eastern Standard Time - Port-au-Prince-5.0America/Port-au-Prince
192Omsk Standard Time - Omsk7.0Asia/Omsk
193East Africa Time - Antananarivo3.0Indian/Antananarivo
194Suriname Time - Paramaribo-3.0America/Paramaribo
195West Africa Standard Time - Luanda1.0Africa/Luanda
196Newfoundland Standard Time - St Johns-4.0America/St_Johns
197Central Standard Time - Belize-6.0America/Belize
198Coordinated Universal Time0.0UTC
199Central Africa Time - Gaborone2.0Africa/Gaborone
200Ecuador Time - Guayaquil-5.0America/Guayaquil
201Atlantic Standard Time - Antigua-4.0America/Antigua
202Central European Standard Time - Monaco1.0Europe/Monaco
203Greenwich Mean Time - Isle of Man0.0Europe/Isle_of_Man
204Greenwich Mean Time - Dakar0.0Africa/Dakar
205China Standard Time - Shanghai8.0Asia/Shanghai
206Moscow Standard Time - Minsk3.0Europe/Minsk
207Atlantic Standard Time - Aruba-4.0America/Aruba
208Paraguay Standard Time - Asuncion-4.0America/Asuncion
209Central Africa Time - Maputo2.0Africa/Maputo
210Atlantic Standard Time - Grenada-4.0America/Grenada
212Eastern European Time - Damascus2.0Asia/Damascus
213South Africa Standard Time - Maseru2.0Africa/Maseru
214Greenwich Mean Time - Ouagadougou0.0Africa/Ouagadougou
215Central European Standard Time - Andorra1.0Europe/Andorra
216Bolivia Time - La Paz-4.0America/La_Paz
217Chamorro Standard Time - Guam10.0Pacific/Guam
218Central Africa Time - Lubumbashi2.0Africa/Lubumbashi
219Atlantic Standard Time - St Vincent-4.0America/St_Vincent
220Central Standard Time - Managua-6.0America/Managua
221Atlantic Standard Time - St Kitts-4.0America/St_Kitts
222Eastern Standard Time - Cancun-5.0America/Cancun
223Central European Standard Time - Algiers1.0Africa/Algiers
224Samara Standard Time - Samara4.0Europe/Samara
225Eastern Indonesia Time - Jayapura9.0Asia/Jayapura
226Central European Standard Time - Tirane1.0Europe/Tirane
227New Zealand Standard Time - South Pole12.0Antarctica/South_Pole
228Brunei Darussalam Time - Brunei8.0Asia/Brunei
229West Africa Standard Time - Brazzaville1.0Africa/Brazzaville
230West Africa Standard Time - Libreville1.0Africa/Libreville
66712East Africa Time - Asmara3.0Africa/Asmara
66713Greenwich Mean Time - Banjul0.0Africa/Banjul
66714Greenwich Mean Time - Bissau0.0Africa/Bissau
66715Central Africa Time - Blantyre2.0Africa/Blantyre
66716Central Africa Time - Bujumbura2.0Africa/Bujumbura
66717Central European Standard Time - Ceuta1.0Africa/Ceuta
66718Greenwich Mean Time - Conakry0.0Africa/Conakry
66719East Africa Time - Djibouti3.0Africa/Djibouti
66720Greenwich Mean Time - El Aaiun0.0Africa/El_Aaiun
66721Central Africa Time - Juba3.0Africa/Juba
66722Central Africa Time - Khartoum2.0Africa/Khartoum
66723West Africa Standard Time - Kinshasa1.0Africa/Kinshasa
66724Greenwich Mean Time - Lome0.0Africa/Lome
66725West Africa Standard Time - Malabo1.0Africa/Malabo
66726South Africa Standard Time - Mbabane2.0Africa/Mbabane
66727East Africa Time - Mogadishu3.0Africa/Mogadishu
66728Greenwich Mean Time - Monrovia0.0Africa/Monrovia
66729West Africa Standard Time - Ndjamena1.0Africa/Ndjamena
66730Greenwich Mean Time - Nouakchott0.0Africa/Nouakchott
66731West Africa Standard Time - Porto-Novo1.0Africa/Porto-Novo
66732Greenwich Mean Time - Sao Tome0.0Africa/Sao_Tome
66733Greenwich Mean Time - Timbuktu0.0Africa/Timbuktu
66734Eastern European Standard Time - Tripoli2.0Africa/Tripoli
66735Hawaii-Aleutian Standard Time - Adak-10.0America/Adak
66736Atlantic Standard Time - Anguilla-4.0America/Anguilla
66737Brasilia Standard Time - Araguaina-3.0America/Araguaina
66738Argentina Standard Time - Buenos Aires-3.0America/Argentina/Buenos_Aires
66739Argentina Standard Time - Comod Rivadavia-3.0America/Argentina/ComodRivadavia
66740Argentina Standard Time - Cordoba-3.0America/Argentina/Cordoba
66741Argentina Standard Time - Jujuy-3.0America/Argentina/Jujuy
66742Argentina Standard Time - La Rioja-3.0America/Argentina/La_Rioja
66743Argentina Standard Time - Mendoza-3.0America/Argentina/Mendoza
66744Argentina Standard Time - Rio Gallegos-3.0America/Argentina/Rio_Gallegos
66745Argentina Standard Time - Salta-3.0America/Argentina/Salta
66746Argentina Standard Time - San Juan-3.0America/Argentina/San_Juan
66747Argentina Standard Time - San Luis-3.0America/Argentina/San_Luis
66748Argentina Standard Time - Tucuman-3.0America/Argentina/Tucuman
66749Argentina Standard Time - Ushuaia-3.0America/Argentina/Ushuaia
66750Eastern Standard Time - Atikokan-5.0America/Atikokan
66751Hawaii-Aleutian Standard Time - Atka-10.0America/Atka
66752Brasilia Standard Time - Bahia-3.0America/Bahia
66753Central Standard Time - Bahia Banderas-6.0America/Bahia_Banderas
66754Brasilia Standard Time - Belem-3.0America/Belem
66755Atlantic Standard Time - Blanc-Sablon-4.0America/Blanc-Sablon
66756Mountain Standard Time - Boise-7.0America/Boise
66757Mountain Standard Time - Cambridge Bay-7.0America/Cambridge_Bay
66758Argentina Standard Time - Catamarca-3.0America/Catamarca
66759French Guiana Time - Cayenne-3.0America/Cayenne
66760Central Standard Time - Chihuahua-7.0America/Chihuahua
66761Eastern Standard Time - Coral Harbour-5.0America/Coral_Harbour
66762Mountain Standard Time - Creston-7.0America/Creston
66763Amazon Standard Time - Cuiaba-4.0America/Cuiaba
66764Mountain Standard Time - Dawson-8.0America/Dawson
66765Eastern Standard Time - Detroit-5.0America/Detroit
66766Atlantic Standard Time - Dominica-4.0America/Dominica
66767Acre Standard Time - Eirunepe-5.0America/Eirunepe
66768Pacific Standard Time - Ensenada-8.0America/Ensenada
66769Mountain Standard Time - Fort Nelson-7.0America/Fort_Nelson
66770Eastern Standard Time - Fort Wayne-5.0America/Fort_Wayne
66771Atlantic Standard Time - Glace Bay-4.0America/Glace_Bay
66772Atlantic Standard Time - Goose Bay-4.0America/Goose_Bay
66773Eastern Standard Time - Grand Turk-5.0America/Grand_Turk
66774Atlantic Standard Time - Guadeloupe-4.0America/Guadeloupe
66775Central Standard Time - Knox-6.0America/Indiana/Knox
66776Eastern Standard Time - Marengo-5.0America/Indiana/Marengo
66777Eastern Standard Time - Petersburg-5.0America/Indiana/Petersburg
66778Central Standard Time - Tell City-6.0America/Indiana/Tell_City
66779Eastern Standard Time - Vevay-5.0America/Indiana/Vevay
66780Eastern Standard Time - Vincennes-5.0America/Indiana/Vincennes
66781Eastern Standard Time - Winamac-5.0America/Indiana/Winamac
66782Eastern Standard Time - Indianapolis-5.0America/Indianapolis
66783Mountain Standard Time - Inuvik-7.0America/Inuvik
66784Eastern Standard Time - Iqaluit-5.0America/Iqaluit
66785Argentina Standard Time - Jujuy-3.0America/Jujuy
66787Central Standard Time - Monterrey-6.0America/Monterrey
66788Eastern Standard Time - Louisville-5.0America/Kentucky/Louisville
66789Eastern Standard Time - Monticello-5.0America/Kentucky/Monticello
66790Central Standard Time - Knox IN-6.0America/Knox_IN
66791Atlantic Standard Time - Kralendijk-4.0America/Kralendijk
66792Eastern Standard Time - Louisville-5.0America/Louisville
66793Atlantic Standard Time - Lower Princes-4.0America/Lower_Princes
66794Brasilia Standard Time - Maceio-3.0America/Maceio
66795Amazon Standard Time - Manaus-4.0America/Manaus
66796Atlantic Standard Time - Marigot-4.0America/Marigot
66797Atlantic Standard Time - Martinique-4.0America/Martinique
66798Central Standard Time - Matamoros-6.0America/Matamoros
66799Argentina Standard Time - Mendoza-3.0America/Mendoza
66800Central Standard Time - Menominee-6.0America/Menominee
66801Central Standard Time - Merida-6.0America/Merida
66802Alaska Standard Time - Metlakatla-9.0America/Metlakatla
66803St. Pierre & Miquelon Standard Time - Miquelon-3.0America/Miquelon
66804Atlantic Standard Time - Moncton-4.0America/Moncton
66805Eastern Standard Time - Nipigon-5.0America/Nipigon
66806Alaska Standard Time - Nome-9.0America/Nome
66807Fernando de Noronha Standard Time - Noronha0.0America/Noronha
66808Central Standard Time - Beulah-6.0America/North_Dakota/Beulah
66809Central Standard Time - North Dakota-6.0America/North_Dakota/Center
66810Central Standard Time - New Salem-6.0America/North_Dakota/New_Salem
66811Central Standard Time - Ojinaga-7.0America/Ojinaga
66812Eastern Standard Time - Pangnirtung-5.0America/Pangnirtung
66813Acre Standard Time - Porto Acre-5.0America/Porto_Acre
66814Amazon Standard Time - Porto Velho-4.0America/Porto_Velho
66815Chile Standard Time - Punta Arenas-3.0America/Punta_Arenas
66816Central Standard Time - Rainy River-6.0America/Rainy_River
66817Central Standard Time - Rankin Inlet-6.0America/Rankin_Inlet
66818Brasilia Standard Time - Recife-3.0America/Recife
66819Central Standard Time - Resolute-6.0America/Resolute
66820Acre Standard Time - Rio Branco-5.0America/Rio_Branco
66821Argentina Standard Time - Rosario-3.0America/Rosario
66822Northwest Mexico Standard Time - Santa Isabel0.0America/Santa_Isabel
66823Brasilia Standard Time - Santarem-3.0America/Santarem
66824East Greenland Standard Time - Scoresbysund0.0America/Scoresbysund
66825Mountain Standard Time - Shiprock-7.0America/Shiprock
66826Alaska Standard Time - Sitka-9.0America/Sitka
66827Atlantic Standard Time - St Barthelemy-4.0America/St_Barthelemy
66828Central Standard Time - Swift Current-6.0America/Swift_Current
66829Atlantic Standard Time - Thule-4.0America/Thule
66830Eastern Standard Time - Thunder Bay-5.0America/Thunder_Bay
66831Atlantic Standard Time - Virgin-4.0America/Virgin
66832Mountain Standard Time - Whitehorse0.0America/Whitehorse
66833Alaska Standard Time - Yakutat-9.0America/Yakutat
66834Mountain Standard Time - Yellowknife-7.0America/Yellowknife
66835Apia Standard Time - Apia13.0Pacific/Apia
66836Bougainville Standard Time - Bougainville11.0Pacific/Bougainville
66837Chatham Standard Time - Chatham12.8Pacific/Chatham
66838Chuuk Time - Chuuk10.0Pacific/Chuuk
66839Easter Island Standard Time - Easter-6.0Pacific/Easter
66840Vanuatu Standard Time - Efate11.0Pacific/Efate
66841Phoenix Islands Time - Enderbury13.0Pacific/Enderbury
66842Tokelau Time - Fakaofo13.0Pacific/Fakaofo
66843Tuvalu Time - Funafuti12.0Pacific/Funafuti
66844Galapagos Time - Galapagos-6.0Pacific/Galapagos
66845Gambier Time - Gambier-9.0Pacific/Gambier
66846Solomon Islands Time - Guadalcanal11.0Pacific/Guadalcanal
66847Line Islands Time - Kiritimati14.0Pacific/Kiritimati
66848Kosrae Time - Kosrae11.0Pacific/Kosrae
66849Marshall Islands Time - Majuro12.0Pacific/Majuro
66850Marquesas Time - Marquesas0.0Pacific/Marquesas
66851Nauru Time - Nauru12.0Pacific/Nauru
66852Niue Time - Niue0.0Pacific/Niue
66853Norfolk Island Time - Norfolk11.0Pacific/Norfolk
66854New Caledonia Standard Time - Noumea11.0Pacific/Noumea
66855Samoa Standard Time - Pago Pago0.0Pacific/Pago_Pago
66856Palau Time - Palau9.0Pacific/Palau
66857Pitcairn Time - Pitcairn-8.0Pacific/Pitcairn
66858Ponape Time - Pohnpei11.0Pacific/Pohnpei
66859Cook Islands Standard Time - Rarotonga-10.0Pacific/Rarotonga
66860Gilbert Islands Time - Tarawa12.0Pacific/Tarawa
66861Wake Island Time - Wake12.0Pacific/Wake
66862Wallis & Futuna Time - Wallis12.0Pacific/Wallis
66863Casey Time - Casey11.0Antarctica/Casey
66864Davis Time - Davis7.0Antarctica/Davis
66865Dumont-d’Urville Time - DumontDUrville10.0Antarctica/DumontDUrville
66866Australian Eastern Standard Time - Macquarie11.0Antarctica/Macquarie
66867Mawson Time - Mawson5.0Antarctica/Mawson
66868Chile Standard Time - Palmer Station-3.0Antarctica/Palmer
66869Rothera Time - Rothera-3.0Antarctica/Rothera
66870Syowa Time - Syowa3.0Antarctica/Syowa
66871Greenwich Mean Time - Troll0.0Antarctica/Troll
66872Vostok Time - Vostok6.0Antarctica/Vostok
66873Asia/Anadyr12.0Asia/Anadyr
66874West Kazakhstan Time - Aqtau5.0Asia/Aqtau
66875West Kazakhstan Time - Aqtobe5.0Asia/Aqtobe
66876Turkmenistan Standard Time - Ashgabat5.0Asia/Ashgabat
66877West Kazakhstan Time - Atyrau5.0Asia/Atyrau
66878GMT+07:00 - Barnaul7.0Asia/Barnaul
66879Kyrgyzstan Time - Bishkek6.0Asia/Bishkek
66880Yakutsk Standard Time - Chita9.0Asia/Chita
66881Ulaanbaatar Standard Time - Choibalsan8.0Asia/Choibalsan
66882China Standard Time - Chungking8.0Asia/Chungking
66883East Timor Time - Dili9.0Asia/Dili
66884Tajikistan Time - Dushanbe5.0Asia/Dushanbe
66885Eastern European Time - Famagusta2.0Asia/Famagusta
66886China Standard Time - Harbin8.0Asia/Harbin
66887Eastern European Standard Time - Hebron2.0Asia/Hebron
66888Indochina Time - Ho Chi Minh7.0Asia/Ho_Chi_Minh
66889Hovd Standard Time - Hovd7.0Asia/Hovd
66890Turkey Time - Istanbul3.0Asia/Istanbul
66891China Standard Time - Kashgar6.0Asia/Kashgar
66892Yakutsk Standard Time - Khandyga9.0Asia/Khandyga
66893Malaysia Time - Kuching8.0Asia/Kuching
66894Krasnoyarsk Standard Time - Novokuznetsk7.0Asia/Novokuznetsk
66895Novosibirsk Standard Time - Novosibirsk7.0Asia/Novosibirsk
66896West Kazakhstan Time - Oral5.0Asia/Oral
66897Western Indonesia Time - Pontianak7.0Asia/Pontianak
66898Korean Standard Time - Pyongyang9.0Asia/Pyongyang
66899Australian Central Standard Time - Yancowinna9.5Australia/Yancowinna
66900Samara Standard Time - Astrakhan4.0Europe/Astrakhan
66901Greenwich Mean Time - Belfast0.0Europe/Belfast
66902Central European Standard Time - Gibraltar1.0Europe/Gibraltar
66903Greenwich Mean Time - Guernsey0.0Europe/Guernsey
66904Eastern European Standard Time - Kaliningrad2.0Europe/Kaliningrad
66905Moscow Standard Time - Kirov3.0Europe/Kirov
66906Eastern European Standard Time - Mariehamn2.0Europe/Mariehamn
66907Central European Standard Time - San Marino1.0Europe/San_Marino
66908Russia Time Zone 3 - Saratov4.0Europe/Saratov
66909Moscow Standard Time - Simferopol3.0Europe/Simferopol
66910Eastern European Standard Time - Tiraspol2.0Europe/Tiraspol
66911Russia Time Zone 3 - Ulyanovsk4.0Europe/Ulyanovsk
66912Israel Standard Time - Tel Aviv2.0Asia/Tel_Aviv
66913Bhutan Time - Thimbu6.0Asia/Thimbu
66914Bhutan Time - Thimphu6.0Asia/Thimphu
66915GMT+07:00 - Tomsk7.0Asia/Tomsk
66916Central Indonesia Time - Ujung Pandang8.0Asia/Ujung_Pandang
66917China Standard Time - Urumqi6.0Asia/Urumqi
66918Central European Standard Time - Vaduz1.0Europe/Vaduz
66919Central European Standard Time - Vatican1.0Europe/Vatican
66920Eastern European Standard Time - Zaporozhye2.0Europe/Zaporozhye
66921Indian Ocean Time - Chagos6.0Indian/Chagos
66922Christmas Island Time - Christmas7.0Indian/Christmas
66923Cocos Islands Time - Cocos6.5Indian/Cocos
66924East Africa Time - Comoro3.0Indian/Comoro
66925French Southern & Antarctic Time - Kerguelen5.0Indian/Kerguelen
66926Indochina Time - Vientiane7.0Asia/Vientiane
66927Western European Standard Time - Faeroe0.0Atlantic/Faeroe
66928Central European Standard Time - Jan Mayen1.0Atlantic/Jan_Mayen
66929Western European Standard Time - Madeira0.0Atlantic/Madeira
66930Greenwich Mean Time - St Helena0.0Atlantic/St_Helena
66931Australian Central Standard Time - Broken Hill9.5Australia/Broken_Hill
66932Australian Eastern Standard Time - Lindeman10.0Australia/Lindeman
66933Sakhalin Standard Time - Sakhalin1.0Asia/Sakhalin
66934Magadan Standard Time - Srednekolymsk1.0Asia/Srednekolymsk
66935Vladivostok Standard Time - Ust-Nera1.0Asia/Ust-Nera
66936Myanmar Time - Yangon6.5Asia/Yangon
66937Western European Standard Time - Faroe0.0Atlantic/Faroe
66938South Georgia Time - South Georgia-2.0Atlantic/South_Georgia
66939Falkland Islands Standard Time - Stanley-3.0Atlantic/Stanley
66940Australian Eastern Standard Time - Canberra10.0Australia/Canberra
66941Australian Eastern Standard Time - Currie10.0Australia/Currie
66942Australian Central Western Standard Time - Eucla8.8Australia/Eucla
66943Lord Howe Standard Time - Lord Howe10.5Australia/Lord_Howe
66944Eastern European Standard Time - Uzhgorod2.0Europe/Uzhgorod
\n
","event":[{"listen":"prerequest","script":{"id":"161cb728-cd63-46ae-afb7-88f2e58218e4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f4c13ec7-4924-40bc-b6ae-9f9f1d6b7042","type":"text/javascript","exec":[""]}}],"_postman_id":"8bc0f68d-2ddb-48cf-addc-23f755d072b6","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}}}],"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":""}],"advancedConfig":[{"key":"tokenType","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"8312be72-3e6a-4c27-b4a0-99815ebbd6cb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"aa4f879d-f228-41b2-81b8-62de5cbad15e","type":"text/javascript","exec":[""]}}],"variable":[{"key":"domain","value":"https://api.splashthat.com"},{"key":"auth_token_workflow_id","value":"NjNiMDgyODljNzgwZjgxZGM0NzUzOThjOTNkNDI2NjY3NWM2YmVjMTViYjkxODgyN2Y1ODI2NTQwN2E5NWUxNQ"}]}