{"info":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","description":"<html><head></head><body><p>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.</p>\n<h1 id=\"api-access\">API Access</h1>\n<p>Use of the API requires a <em>Client ID</em> and a <em>Client Secret.</em> 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.</p>\n<p>When working with the Splash API, here are some best practices to keep in mind:</p>\n<ol>\n<li><p><strong>Rate Limiting</strong>: Ensure you pace your API calls appropriately to prevent overloading the system.</p>\n</li>\n<li><p><strong>Access Token Reuse</strong>: Reusing the same access token for multiple requests can help streamline authentication and reduce overhead.</p>\n</li>\n<li><p><strong>Token Refresh Flow</strong>: Implement the token refresh flow to maintain secure and continuous access, especially for long-running operations.</p>\n</li>\n<li><p><strong>Response Caching</strong>: Utilizing response caching can minimize redundant requests and improve response times for frequently accessed data.</p>\n</li>\n</ol>\n<p>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.</p>\n<h1 id=\"requests\">Requests</h1>\n<p>All valid Splash API requests begin with the domain: <a href=\"https://api.splashthat.com/\">https://api.splashthat.com/</a> From there, the remainder of a request is built on five separate elements.</p>\n<h2 id=\"endpoint\">Endpoint</h2>\n<p>The API is typically grouped into four top-level endpoints, each interacting with a Splash Object.</p>\n<ul>\n<li><p><strong>/oauth/v2/token</strong>: This authentication endpoint is where any API project begins. It handles the process of retrieving and refreshing access tokens to authorize all of your other calls.</p>\n</li>\n<li><p><strong>/events</strong>: This endpoint is used for handling events. While events may be retrieved, updated, and even deleted, it is very important to understand that event creation is handled via a separate API process.</p>\n</li>\n<li><p><strong>/groupcontacts (guests)</strong>: GroupContacts is an internal programmatic term for Splash event <em>guests</em>. This is your go-to endpoint for anything involving creating, retrieving, or updating them.</p>\n</li>\n<li><p><strong>/contacts</strong>: Splash separates its attendee data into two levels. GroupContacts (guests) are associated with individual events, whereas Contacts are records that exist at the organizational level and associate your GroupContacts (guests) across your different events. If you want to interact not just with a guest as they pertain to one event but as they pertain to all of your events, this is the endpoint to use.</p>\n</li>\n<li><p><strong>/crm/events</strong>: Creating events programmatically goes through a separate API. It requires a special API key, and we recommend consulting with our team before making use of the endpoint. It is a potent endpoint, and technical assistance in making use of it is crucial to success.</p>\n</li>\n</ul>\n<h2 id=\"verb\">Verb</h2>\n<p>Endpoints typically accept one or more of five methods/verbs:</p>\n<ul>\n<li><p><strong>GET</strong>: fetch an object's data</p>\n</li>\n<li><p><strong>POST</strong>: create an object</p>\n</li>\n<li><p><strong>PUT/PATCH</strong>: update an object</p>\n</li>\n<li><p><strong>DELETE</strong>: delete an object</p>\n</li>\n</ul>\n<h2 id=\"path-parameters\">Path Parameters</h2>\n<p>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.</p>\n<h2 id=\"query-parameters\">Query Parameters</h2>\n<p>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.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>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.</p>\n<h2 id=\"responses\">Responses</h2>\n<p>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.</p>\n<h2 id=\"meta\">Meta</h2>\n<p>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.</p>\n<h2 id=\"data\">Data</h2>\n<p>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.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p>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.</p>\n<h2 id=\"api-rate-limiting\">API Rate Limiting</h2>\n<p>The Splash API uses rate limiting to ensure fair usage, prevent customers from overloading resources, and maximize performance.</p>\n<p>All requests made to the Splash API using a valid Client ID are subject to a default rate limit of <strong>2 requests per second</strong> (req/s). The rate limit is calculated based on the number of requests made within a rolling time window.</p>\n<p>If a client exceeds the rate limit, the API will respond with a <em>429 Too Many Requests</em> status code, indicating that the limit has been exceeded. This response includes a <code>RateLimit-Reset</code> header that specifies the duration in seconds, after which the client can retry the request.</p>\n<p><code>{ \"message\": \"API rate limit exceeded\" }</code></p>\n<p>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 <code>X-RateLimit-Limit-Second</code> header indicates the total number of requests allowed within the rate limit window, and the <code>X-RateLimit-Remaining-Second</code> header shows the number of requests remaining before reaching the limit.</p>\n<p>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 <a href=\"https://support.splashthat.com/hc/en-us/articles/13759878758541\">What is API rate limiting and what are the benefits and impacts?</a></p>\n</body></html>","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":"<p>Use this endpoint and its parameters to acquire an <em>Access Token</em>.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>When your <em>Access Token</em> has expired, use this endpoint along with your <em>Refresh Token</em> to acquire a new one. </p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>Your Splash API client ID</p>\n","type":"text/plain"},"key":"client_id","value":"{{client_id}}"},{"description":{"content":"<p>Your Splash API client secret</p>\n","type":"text/plain"},"key":"client_secret","value":"{{client_secret}}"},{"description":{"content":"<p>This OAuth grant type indicates that you are refreshing your authentication, abridging the need for a username and password. </p>\n","type":"text/plain"},"key":"grant_type","value":"refresh_token"},{"description":{"content":"<p>As with the Access Token, the scope for the Refresh Token will be \"user.\"</p>\n","type":"text/plain"},"key":"scope","value":"user"},{"description":{"content":"<p>The refresh token you received when you originally authorized.</p>\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":"<p>The authentication process for the Splash API follows the OAuth 2.0 standard. A <em>Client ID</em>, a <em>Client Secret</em>, a <em>Username</em>, and a <em>Password</em> are needed to acquire an access token. These parameters must be included in a request made to the <strong>Access Token</strong> endpoint, as explained below.</p>\n<p>Upon successful validation of these credentials, you will be issued both an <em>Access Token</em> and a <em>Refresh Token</em>. The <em>Access Token</em> remains valid for the next 8 hours. After this period, you must redeem the <em>Refresh Token</em> to acquire a new one. For all subsequent API requests, your <em>Access Token</em> should be included in the Authorization header for proper authentication.</p>\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":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>Use this header to send your access token.</p>\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":"<p>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.</p>\n<p>You can also include workflow information in the response payload by including the <em>viewsGroups[]=eventWorkflow</em> query parameter.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>Limits how many events are returned. If no limit is specified, the default is set to 5. </p>\n","type":"text/plain"},"key":"limit","value":"5"},{"description":{"content":"<p>When using a limit, this will allow you to specify which page of results  to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Use a search string to refine your results. Filters results by Event title, domain, and venue fields.</p>\n","type":"text/plain"},"key":"search","value":"{{event_search_string}}"},{"description":{"content":"<p>Sort the results by a requested field. Supported options are: </p>\n<ul>\n<li>created_desc </li>\n<li>created_asc</li>\n<li>event_start_desc</li>\n<li>event_start_asc</li>\n<li>title_asc</li>\n<li>title_desc</li>\n<li>modified_asc</li>\n<li>modified_desc</li>\n</ul>\n","type":"text/plain"},"key":"sort","value":"{{sort_type}}"},{"description":{"content":"<p>Constrains your results to events with a start date later than 2 days ago.</p>\n","type":"text/plain"},"key":"upcoming","value":"{{upcoming_bool}}"},{"description":{"content":"<p>Include or exclude past events.</p>\n","type":"text/plain"},"key":"past","value":"{{past_bool}}"},{"description":{"content":"<p>Include or exclude events with TBD dates. </p>\n","type":"text/plain"},"key":"tbd","value":"{{tbd_bool}}"},{"description":{"content":"<p>Only return events that start after a certain date (format: yyyy-mm-dd hh:mm:ss).</p>\n","type":"text/plain"},"key":"event_start_after","value":"{{my_timestamp_a}}"},{"description":{"content":"<p>Only return events that start before a certain date (format: yyyy-mm-dd hh:mm:ss).</p>\n","type":"text/plain"},"key":"event_start_before","value":"{{my_timestamp_b}}"},{"description":{"content":"<p>Search your Splash events by their tags. </p>\n","type":"text/plain"},"key":"tag_names[0]","value":"{{event_tag}}"},{"description":{"content":"<p>Specify the venues by which you would like to constrain your results. </p>\n","type":"text/plain"},"key":"venues[0]","value":"{{my_venue}}"},{"description":{"content":"<p>Enter the event types by which you would like to filter.</p>\n","type":"text/plain"},"key":"event_type_ids[0]","value":"{{my_event_type}}"},{"description":{"content":"<p>Include themes in the event list.</p>\n","type":"text/plain"},"key":"include_themes","value":"{{themes_bool}}"},{"description":{"content":"<p>Enter theme IDs to only retrieve events that use that specified theme.</p>\n","type":"text/plain"},"key":"theme_ids[0]","value":"{{my_theme_id}}"},{"description":{"content":"<p>Exclude specific event IDs from your request.</p>\n","type":"text/plain"},"key":"exclude_ids[0]","value":"{{excluded_event}}"},{"description":{"content":"<p>Limit your request to only RSVP events.</p>\n","type":"text/plain"},"key":"rsvp_events","value":"{{rsvp_bool}}"},{"description":{"content":"<p>Limit your request to only return ticketed events.</p>\n","type":"text/plain"},"key":"ticketed_events","value":"{{ticketed_bool}}"},{"description":{"content":"<p>Including this query parameter and value will return the workflow information in the response payloads. </p>\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\": \"<p>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.</p>\",\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\": \"<p>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.</p>\",\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\": \"<p>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.</p>\",\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\": \"<p>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.</p>\",\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\": \"<p style=\\\"font-size:15px;\\\">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!</p>\",\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\": \"<p style=\\\"font-size:15px;\\\">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!</p>\",\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":"<p>Use this header to send your access token.</p>\n","type":"text"}],"url":"https://api.splashthat.com/events/:event_id?viewGroups[]=eventWorkflow","description":"<p>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.</p>\n<p>To retrieve workflow ID information for approval flows, you can include the <em>viewGroups[]=eventWorkflow</em> URL parameter. This will include a workflow ID section in the response payload.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>The ID of the event you would like to retrieve.</p>\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\": \"<p>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.</p>\",\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":"<p>Use this header to send your access token.</p>\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":"<p>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.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>The ID of the event for which details are needed. </p>\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\\\":\\\"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\\\"},\\\"dach\\\":{\\\"domain\\\":\\\"splash.metamail.com\\\",\\\"label\\\":\\\"dach@splash.metamail.com\\\",\\\"static_address\\\":\\\"dach@splash.metamail.com\\\",\\\"sendgrid_apikey\\\":\\\"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\\\"},\\\"no-reply\\\":{\\\"domain\\\":\\\"splash.metamail.com\\\",\\\"label\\\":\\\"no-reply@splash.metamail.com\\\",\\\"static_address\\\":\\\"no-reply@splash.metamail.com\\\",\\\"sendgrid_apikey\\\":\\\"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\\\"},\\\"Meta Summit\\\":{\\\"label\\\":\\\"MetaSummit@splash.metamail.com\\\",\\\"domain\\\":\\\"splash.metamail.com\\\",\\\"static_address\\\":\\\"splash.metamail.com\\\",\\\"sendgrid_apikey\\\":\\\"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\\\"}}\",\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":"<p>Use this header to send your access token.</p>\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":"<p>Use this endpoint to update and make changes to an existing Event with a known ID. Specify an <em>Event ID</em> 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.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>The ID of the event you would like to update.</p>\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":"<p>Use this header to send your access token.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ids\": [\n        1234,\n        5678,\n        9012\n    ]\n}"},"url":"https://api.splashthat.com/events","description":"<p>Use this endpoint to batch delete Events within your organization. The Events to be deleted should be sent as JSON, with an <em>\"ids\"</em> array containing each of the desired Event IDs. See the example below.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>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 <em>workflowId</em> field. It will need to be explicitly included in the payload by adding the URL <em>viewGroups[]=eventWorkflow</em> URL parameter. This will include a new section called <em>\"event_workflow\"</em> that will include both the workflow ID and the status.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>A UUID formatted string that can be retrieved from the /events endpoint payload. </p>\n","type":"text/plain"},"type":"string","value":"some_workflow_id","key":"workflow_id"},{"description":{"content":"<p>A string with a fixed value of either approved or declined.</p>\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":"<p>Event objects in Splash are interacted with via the <strong>/events</strong> endpoint. A number of operations can be carried out here:</p>\n<ul>\n<li>Retrieve information about your <em>Events</em></li>\n<li>Delete your <em>Events</em>, individually or in batch</li>\n<li>Update the information for an <em>Event</em></li>\n</ul>\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":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>Use this header to send your access token.</p>\n","type":"text"}],"url":"https://api.splashthat.com/groupcontact/:group_contact_id","description":"<p>You can retrieve a single group contact if their <em>group contact ID</em> is known. It is a simple GET request with no other parameters necessary. Splash responds with a JSON payload detailing the attendee.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>The group contact ID of the individual for which you would like to retrieve data. </p>\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":"<p>Use this header to send your access token.</p>\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":"<p>Using an <em>event ID</em>, 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.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>The ID of the event for which you would like to see the group contacts (attendees). </p>\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"},{"description":{"content":"<p>Limits how many group contacts are returned. If no limit is specified, Splash will default to 5. </p>\n","type":"text/plain"},"key":"limit","value":"5"},{"description":{"content":"<p>When using a limit, this allows you to specify which page of results you would like to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Sort the results by a requested field.</p>\n","type":"text/plain"},"key":"sort","value":"{{sort_type}}"},{"description":{"content":"<p>Use this parameter to limit your results by the RSVP status of the attendees.</p>\n","type":"text/plain"},"key":"status[0]","value":"{{guest_status}}"},{"description":{"content":"<p>This parameter can constrain results to those that match a particular text string. </p>\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":"<p>Use this parameter to specify particular columns  to be included in the response. </p>\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":"<p>Use this header to send your access token.</p>\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":"<p>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.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>The ID of the event you would like to see the group contacts (attendees) for. </p>\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"},{"description":{"content":"<p>Limits how many group contacts are returned. If no limit is specified, Splash will default to 5. </p>\n","type":"text/plain"},"key":"limit","value":"5"},{"description":{"content":"<p>When using a limit, this allows you to specify which page of results you would like to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Sort the results by a requested field.</p>\n","type":"text/plain"},"key":"sort","value":"{{sort_type}}"},{"description":{"content":"<p>Use this parameter to limit your results by the RSVP status of the attendees.</p>\n","type":"text/plain"},"key":"status[0]","value":"{{guest_status}}"},{"description":{"content":"<p>This parameter can constrain results to those that match a particular text string. </p>\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":"<p>Get additional data in the response. URL Parameter can be added multiple times in the same request (eg. ...viewGroups[]=groupContactAnswer&amp;viewGroups[]=groupContactCode)</p>\n","type":"text/plain"},"key":"viewGroups[]","value":""},{"description":{"content":"<p>Use this parameter to specify particular columns to be included in the response.</p>\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":"<p>Use this header to send your access token.</p>\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":"<p>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 <em>event_id</em> field to tell Splash to which event they should be added. Additional fields include <em>confirmation email, email, first_name, last_name,</em> and <em>status.</em> </p>\n<p><strong>Note:</strong> The behavior of this endpoint can vary depending upon the guest's status. If a guest with that email address already has <em>\"added\"</em> or <em>\"invited\"</em>, 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.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{my_token}}","description":"<p>Use this header to send your access token.</p>\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":"<p>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. </p>\n<p>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. </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Backend Status</th>\n<th>Frontend Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><em>added</em></td>\n<td><em>-- (No Status) --</em></td>\n</tr>\n<tr>\n<td><em>invited</em></td>\n<td><em>Awaiting Reply</em></td>\n</tr>\n<tr>\n<td><em>waitlisted</em></td>\n<td><em>Waitlisted</em></td>\n</tr>\n<tr>\n<td><em>rsvp_no</em></td>\n<td><em>Not Attending</em></td>\n</tr>\n<tr>\n<td><em>rsvp_yes</em></td>\n<td><em>Attending</em></td>\n</tr>\n<tr>\n<td><em>checkin_yes</em></td>\n<td><em>Checked In</em></td>\n</tr>\n<tr>\n<td><em>checkin_no</em></td>\n<td><em>Checked Out</em></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["groupcontact",":group_contact_id"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"description":{"content":"<p>The group contact ID of the individual to be updated.</p>\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":"<p>Use this header to send your access token.</p>\n","type":"text"}],"url":"https://api.splashthat.com/groupcontact/:group_contact_id","description":"<p>To cancel the RSVP of a guest when their <em>group contact id</em> number is known, use the DELETE and <em>id</em> to change their status in your event to RSVP No.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>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.</p>\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":"<p>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:</p>\n<ul>\n<li><p>Retrieve a list of group contacts for a given event</p>\n</li>\n<li><p>Retrieve all of the group contacts across all of your events</p>\n</li>\n<li><p>Retrieve an individual group contact</p>\n</li>\n<li><p>Add a group contact, one-at-a-time</p>\n</li>\n<li><p>Remove a group contact from an event</p>\n</li>\n</ul>\n<h2 id=\"sort-order\">Sort Order</h2>\n<p>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:</p>\n<ul>\n<li><p>\"id\"</p>\n</li>\n<li><p>\"contact_id\"</p>\n</li>\n<li><p>\"email\"</p>\n</li>\n<li><p>\"firstName\" / \"first_name\"</p>\n</li>\n<li><p>\"lastName\" / \"last_name\"</p>\n</li>\n<li><p>\"status\"</p>\n</li>\n<li><p>\"dateCreated\" / \"date_created\"</p>\n</li>\n<li><p>\"modified\"</p>\n</li>\n<li><p>\"dateRsvped\" / \"date_rsvped\"</p>\n</li>\n<li><p>\"title\"</p>\n</li>\n<li><p>\"birthday\"</p>\n</li>\n<li><p>\"company\"</p>\n</li>\n<li><p>\"state\"</p>\n</li>\n</ul>\n<h2 id=\"additional-data-using-viewgroups\">Additional Data using <code>viewGroups[]</code></h2>\n<p>To return additional data you can include multiple <code>viewGroups[]</code> values:</p>\n<ul>\n<li><p>guestListSessionNames</p>\n<ul>\n<li>Adds the Sessions that the guest is associated with</li>\n</ul>\n</li>\n<li><p>contactListUnsubscribe</p>\n<ul>\n<li>Unsubscribe data for the Guest's underlying Contact</li>\n</ul>\n</li>\n<li><p>groupContactEmailCampaignStatuses</p>\n<ul>\n<li>Adds the Guest's status for Email Campaigns on the Event</li>\n</ul>\n</li>\n<li><p>contactTags</p>\n<ul>\n<li>Adds Tag data for the Guest's underlying Contact</li>\n</ul>\n</li>\n<li><p>contactLists</p>\n<ul>\n<li>Adds List data for the Guest's underlying Contact</li>\n</ul>\n</li>\n<li><p>bounceInfo</p>\n<ul>\n<li>Adds details to the Guest's underlying Contact if the email address has \"bounced\"</li>\n</ul>\n</li>\n<li><p>groupContactAnswer</p>\n<ul>\n<li>Adds Guest's answers to all Form Questions on the Event</li>\n</ul>\n</li>\n<li><p>groupContactEventList</p>\n<ul>\n<li>Adds Event level List data associated with the Guest if applicable</li>\n</ul>\n</li>\n<li><p>groupContactCode</p>\n<ul>\n<li>Adds QR Code data associated with Guest</li>\n</ul>\n</li>\n</ul>\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":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>Use this header to send your access token.</p>\n","type":"text"}],"url":"https://api.splashthat.com/contacts?limit=25&page=1","description":"<p>This endpoint returns a JSON payload of organization-level contacts from Splash. Just like <em>/events</em> and <em>/groupcontacts</em> 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.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>Limits how many contacts are returned by this call through pagination. </p>\n","type":"text/plain"},"key":"limit","value":"25"},{"description":{"content":"<p>When a limit is used, this parameter can be utlilized to specify which page of the results to return. </p>\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":"<p>Use this header to send your access token.</p>\n","type":"text"}],"url":"https://api.splashthat.com/contacts/:contact_id","description":"<p>Use this endpoint to retrieve the information for an individual contact. The contact you want to retrieve is specified by a <em>contact ID</em> in the URL path and is rendered as JSON in the response.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>Use this path variable to specify which contact you would like returned. </p>\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":"<p>Use this header to send your access token.</p>\n","type":"text"}],"url":"https://api.splashthat.com/contact/:contact_id/history","description":"<p>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 <em>contact ID</em> with a record of the events with which this contact has been associated in Splash.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>Use this path variable to specify which contact's history you would like to retrieve. </p>\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":"<p>Use this header to send your access token.</p>\n","type":"text"}],"url":"https://api.splashthat.com/contacts/:contact_id","description":"<p>If you know a <em>contact ID</em>, it can be used to delete that <em>Contact</em> from your list of <em>Splash Contacts</em>. 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 <strong>soft delete</strong> 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.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>This is contact ID of the contact to delete.</p>\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":"<p>Use this header to send your access token.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"delete\": true\n}"},"url":"https://api.splashthat.com/contacts/:contact_id/anonymize","description":"<p>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.</p>\n<p><strong>Note:</strong>\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.<br />Alternatively, you can use the Incoming Webhook integration to accomplish anonymizations and unsubscribes.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>This is the contact ID of the person whose information will be anonymized in the Splash database. </p>\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":"<p>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 <strong>POST /groupcontacts</strong> endpoint, an org-level contact is automatically created and associated with that contact. </p>\n<p>The most common uses for <em>contacts</em> are: </p>\n<ul>\n<li>Retrieving a list of all contacts</li>\n<li>Retrieving a single contact</li>\n<li>Deleting a contact</li>\n</ul>\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":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>Use this header to send your access token.</p>\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":"<p>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.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>The ID of the event with which the unsub_tag is associated. This is a required parameter.</p>\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"}],"variable":[{"id":"7205a998-ec20-4c01-af33-f749712f4452","description":{"content":"<p>This is the unsub_tag found on the GroupContacts object. </p>\n","type":"text/plain"},"type":"string","value":"","key":"unsub_tag"},{"id":"ab80f56c-3a88-4d8c-845f-4b81d1e12035","description":{"content":"<p>This parameter specifies the types of unsubscribe to retrieve: \"all\", \"event\", or \"any\"</p>\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":"<p>Use this header to send your access token.</p>\n","type":"text"}],"url":"https://api.splashthat.com/public/unsubscribe/:unsub_tag/:unsub_type?event_id={{event_id}}","description":"<p>You can send a POST to the /unsubscribe endpoint to create new unsubscribes at both the organization and event levels. </p>\n<p><strong>Note</strong>: Unsubscribing a contact means they will no longer receive any communications from Splash to the level that you specify.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>The ID of the event with which the unsub_tag is associated. This is a required parameter.</p>\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"}],"variable":[{"description":{"content":"<p>This is the unsub_tag found on the GroupContacts object. </p>\n","type":"text/plain"},"type":"string","value":"","key":"unsub_tag"},{"description":{"content":"<p>This parameter specifies the types of unsubscribe to create: \"all\", \"event\"</p>\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":"<p>Use this header to send your access token.</p>\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":"<p>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.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>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.</p>\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"}],"variable":[{"id":"e0b3351d-6972-4e8b-9649-e8b93503f29e","description":{"content":"<p>This is the unsub_tag found on the GroupContacts object. </p>\n","type":"text/plain"},"type":"string","value":"","key":"unsub_tag"},{"id":"43701336-4209-475f-912a-8cb4ae2261a1","description":{"content":"<p>This parameter specifies the types of unsubscribe to delete: \"all\", \"event\", or \"any\"</p>\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":"<p>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.</p>\n<h3 id=\"unsub_tag\">unsub_tag</h3>\n<p>Whenever a guest RSVPs for an event, Splash creates an RSVP object on the GroupContact. In this object, the <em>unsub_tag</em> 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 <em>data.event_rsvp.unsub_tag</em>.</p>\n<h3 id=\"unsub_type\">unsub_type</h3>\n<p>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.</p>\n<h3 id=\"event_id\">event_id</h3>\n<p>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.</p>\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":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>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.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"<p>The title of the event to create. This field is required. </p>\n","key":"title","type":"text","value":"Quinn's New Year"},{"description":"<p>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. </p>\n","key":"splash_theme_id","type":"text","value":"1200636"},{"description":"<p>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.. </p>\n","key":"event_start","type":"text","value":"2019-12-31 18:00:00"},{"description":"<p>The event end date and time in the same format as event_start.</p>\n","key":"event_end","type":"text","value":"2020-01-01 03:00:00"},{"description":"<p>Indicate the time zone for your event in this field. For a complete list of timezones, see Appendix A. </p>\n","key":"time_zone_identifier","type":"text","value":"America/New_York"},{"description":"<p>Choose a particular domain for your event if you do not want to use the one automatically generated from the event's title. </p>\n","key":"domain","type":"text","value":"quinnsnewyear"},{"description":"<p>The event venue. </p>\n","key":"venue_name","type":"text","value":"Times Square"},{"description":"<p>The venue address.</p>\n","key":"address","type":"text","value":"45th Street"},{"description":"<p>The city of the venue.</p>\n","key":"city","type":"text","value":"New York"},{"description":"<p>The state, province, or territory of the venue. </p>\n","key":"state","type":"text","value":"New York"},{"description":"<p>The postal code of the venue. </p>\n","key":"zip_code","type":"text","value":"10036"},{"description":"<p>The country of the event venue.</p>\n","key":"country","type":"text","value":"United States"},{"description":"<p>Tags can be applied to the created event. Delimit each tag with a comma. </p>\n","key":"event_tags","type":"text","value":"crm api,new years"},{"description":"<p>Use this field to identify which event type to use. </p>\n","key":"event_type","type":"text","value":"Concert"},{"description":"<p>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. </p>\n","key":"salesforce_campaign_id","type":"text","value":""},{"description":"<p>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. </p>\n","key":"owner_email","type":"text","value":""},{"key":"attendance_type","value":"in-person","description":"<p>Event Attendance Type. Allowed values: \"in-person\", \"virtual\", \"virtual,in-person\"</p>\n","type":"text","uuid":"4ee3bb9e-4e5e-4c2e-ba01-ad3ba784fcd9"},{"key":"multisession","value":"0","description":"<p>Whether or not your event has mutliple Sessions. Allowed values: 1 or 0</p>\n","type":"text","uuid":"ab5714a6-d6ab-4c28-b878-d6097b6945be"},{"key":"survey_question[N]","value":"","description":"<p>Custom Event Field. Reach out to your Customer Success Manager for more information about usage.</p>\n","type":"text","uuid":"5fcbc5d6-8fae-4604-b750-00ce21b7b6f1"}]},"url":"https://splashthat.com/api/v2/crm/events","description":"<p>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 <em>SplashCRM</em>. See Appendix A for a list of timezones.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<p>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.</p>\n<p>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.</p>\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":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.splashthat.com/v1/team-manager/groups?limit=20&page=1","description":"<p>Use this endpoint to retrieve the list of groups of your organization.</p>\n<p>Remember you need to obtain a token from the Authentication Endpoint to get access to the system.</p>\n<p>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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param Name</strong></th>\n<th><strong>Param Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Default value if not passed</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>integer</td>\n<td>No</td>\n<td>1</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>integer</td>\n<td>No</td>\n<td>20</td>\n</tr>\n</tbody>\n</table>\n</div>","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":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.splashthat.com/v1/team-manager/roles","description":"<p>Use this endpoint to retrieve the list of roles of your organization.</p>\n<p>Remember you need to obtain a token from the Authentication Endpoint to get access to the system.</p>\n<p>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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param Name</strong></th>\n<th><strong>Param Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Default value if not passed</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>integer</td>\n<td>No</td>\n<td>1</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>integer</td>\n<td>No</td>\n<td>20</td>\n</tr>\n</tbody>\n</table>\n</div>","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":"<token>"}]},"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":"<p>Use this endpoint to obtain a paginated list of users belonging to your organization</p>\n<p>The user performing the request must have access to view the Team Users. If not, the endpoint will return a 403 response.</p>\n<h2 id=\"params\">PARAMS</h2>\n<p>The endpoint can receive following query parameters to restrict the results shown and to show in a given order.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param Name</strong></th>\n<th><strong>Param Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Default if not provided</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>int</td>\n<td>no</td>\n<td>1</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>int</td>\n<td>no</td>\n<td>20</td>\n</tr>\n<tr>\n<td>filters</td>\n<td>array</td>\n<td>no</td>\n<td>[]</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>string</td>\n<td>no</td>\n<td>created_desc</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"filters-param\">Filters param</h2>\n<p>the filter params above can be used to search for specific users. The filters param allows the following keys and values</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Allowed values</strong></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>search</td>\n<td>any string</td>\n<td>when 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.</td>\n</tr>\n<tr>\n<td>activityStatus</td>\n<td>active</td>\n<td>pending</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>array of integers</td>\n<td>it will return the users belonging to the groups passed. the way to specify this parameter is like the following <code>filters[groups][]=1&amp;filters[groups][]=5...</code></td>\n</tr>\n<tr>\n<td>lastLoginStart</td>\n<td>string representing a date in the format <code>Y-m-d H:i:s</code> Example <code>2023-08-01 00:00:00</code></td>\n<td>Will return users which which last login into the system have occurred after the specified date</td>\n</tr>\n<tr>\n<td>lastLoginEnd</td>\n<td>string representing a date in the format <code>Y-m-d H:i:s</code> Example <code>2023-08-01 23:59:59</code></td>\n<td>Will return users which which last login into the system have occurred before the specified date</td>\n</tr>\n<tr>\n<td>addedDateStart</td>\n<td>string representing a date in the format <code>Y-m-d H:i:s</code> Example <code>2023-08-01 23:10:00</code></td>\n<td>Will 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.</td>\n</tr>\n<tr>\n<td>addedDateEnd</td>\n<td>string representing a date in the format <code>Y-m-d H:i:s</code> Example <code>2023-08-01 23:59:59</code></td>\n<td>Will return users created in the system before the given date</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>array of integers</td>\n<td>it will return the users having to the roles passed. the way to specify this parameter is like the following <code>filters[roles][]=1&amp;filters[roles][]=5...</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"sort-param\">Sort param</h2>\n<p>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.</p>\n<p>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.</p>\n<p>Knowing this, you can also specify a sort parameter that will make the pending users in one side and the active users</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created_desc</td>\n<td>Order 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</td>\n</tr>\n<tr>\n<td>created_asc</td>\n<td>Same as above but in ascending order (users created first will appear first in the list)</td>\n</tr>\n<tr>\n<td>first_name_desc</td>\n<td>Order by the first name of the users in descending order</td>\n</tr>\n<tr>\n<td>first_name_asc</td>\n<td>Order by the first name of the users in ascending order</td>\n</tr>\n<tr>\n<td>last_name_desc</td>\n<td>Order by the last name of the users in descending order</td>\n</tr>\n<tr>\n<td>last_name_asc</td>\n<td>Order by the last name of the users in ascending order</td>\n</tr>\n<tr>\n<td>email_desc</td>\n<td>Order by the email of the users in descending order</td>\n</tr>\n<tr>\n<td>email_asc</td>\n<td>Order by the email of the users in ascending order</td>\n</tr>\n</tbody>\n</table>\n</div>","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":"<token>"}]},"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":"<p>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.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>field</th>\n<th>type</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>email of the user to invite</td>\n</tr>\n<tr>\n<td>group_ids</td>\n<td>array of integers</td>\n<td>ids 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.</td>\n</tr>\n<tr>\n<td>role_id</td>\n<td>integer</td>\n<td>id 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.</td>\n</tr>\n</tbody>\n</table>\n</div><p>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.</p>\n<p>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 <a href=\"http://splashthat.com\">splashthat.com</a> to accept the invite.</p>\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":"<token>"}]},"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":"<p>Use this endpoint when you need to update the role and|or the groups of given user id</p>\n<p>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.</p>\n<p>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 <code>\"role_id\":15</code> in the request so the use continue having this role.</p>\n<p>If the role_id does not exist, or any of the group_ids do not exists, the endpoint will return a error response.</p>\n<p>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.</p>\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":"<token>"}]},"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":"<p>Use this endpoint to delete a user of your organization</p>\n<p>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.</p>\n<p>The provided user id must be the id of a user belonging to the same organization as the user we are deleting.</p>\n<p>Furthermore, all the logged-in sessions of the deleted user will be automatically closed.</p>\n<p>When the deleted user tries to log in again into the system, the user will get an error message.</p>\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":"<p>This section explains how to connect to our Team Manager API<br />and use the exposed endpoints to manage Team Manager using external tools.</p>\n","_postman_id":"d6660998-873c-48d7-ae84-d7ffd800a0ee","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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\": \"<p>SUBMIT</p>\",\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":"<p>It's possible to retrieve the form for a specific event using the following endpoint.</p>\n<p>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.</p>\n","_postman_id":"c577774c-1961-47c3-8120-f796e12ae08b","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Id</th>\n<th>Text</th>\n<th>GMT Difference</th>\n<th>Identifier</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Eastern Standard Time - New York</td>\n<td>-5.0</td>\n<td>America/New_York</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Central Standard Time - Chicago</td>\n<td>-6.0</td>\n<td>America/Chicago</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Mountain Standard Time - Denver</td>\n<td>-7.0</td>\n<td>America/Denver</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Pacific Standard Time - Los Angeles</td>\n<td>-8.0</td>\n<td>America/Los_Angeles</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Marshall Islands Time - Kwajalein</td>\n<td>-12.0</td>\n<td>Pacific/Kwajalein</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Samoa Standard Time - Midway</td>\n<td>-11.0</td>\n<td>Pacific/Midway</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Hawaii-Aleutian Standard Time - Honolulu</td>\n<td>-10.0</td>\n<td>Pacific/Honolulu</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Alaska Standard Time - Anchorage</td>\n<td>-9.0</td>\n<td>America/Anchorage</td>\n</tr>\n<tr>\n<td>9</td>\n<td>Mountain Standard Time - Phoenix</td>\n<td>-7.0</td>\n<td>America/Phoenix</td>\n</tr>\n<tr>\n<td>10</td>\n<td>Central Standard Time - Costa Rica</td>\n<td>-6.0</td>\n<td>America/Costa_Rica</td>\n</tr>\n<tr>\n<td>11</td>\n<td>Central Standard Time - Mexico City</td>\n<td>-6.0</td>\n<td>America/Mexico_City</td>\n</tr>\n<tr>\n<td>12</td>\n<td>Central Standard Time - Saskatchewan</td>\n<td>-6.0</td>\n<td>Canada/Saskatchewan</td>\n</tr>\n<tr>\n<td>13</td>\n<td>Peru Standard Time - Lima</td>\n<td>-5.0</td>\n<td>America/Lima</td>\n</tr>\n<tr>\n<td>14</td>\n<td>Eastern Standard Time - Indianapolis</td>\n<td>-5.0</td>\n<td>America/Indiana/Indianapolis</td>\n</tr>\n<tr>\n<td>15</td>\n<td>Atlantic Standard Time - Atlantic</td>\n<td>-4.0</td>\n<td>Canada/Atlantic</td>\n</tr>\n<tr>\n<td>16</td>\n<td>Venezuela Time - Caracas</td>\n<td>-4.0</td>\n<td>America/Caracas</td>\n</tr>\n<tr>\n<td>17</td>\n<td>Chile Standard Time - Santiago</td>\n<td>-4.0</td>\n<td>America/Santiago</td>\n</tr>\n<tr>\n<td>18</td>\n<td>Newfoundland Standard Time - Newfoundland</td>\n<td>-4.0</td>\n<td>Canada/Newfoundland</td>\n</tr>\n<tr>\n<td>19</td>\n<td>Brasilia Standard Time - East</td>\n<td>-3.0</td>\n<td>Brazil/East</td>\n</tr>\n<tr>\n<td>20</td>\n<td>Argentina Standard Time - Buenos Aires</td>\n<td>-3.0</td>\n<td>America/Buenos_Aires</td>\n</tr>\n<tr>\n<td>21</td>\n<td>Greenwich Mean Time - Danmarkshavn</td>\n<td>-3.0</td>\n<td>America/Danmarkshavn</td>\n</tr>\n<tr>\n<td>22</td>\n<td>West Greenland Standard Time - Godthab</td>\n<td>-2.0</td>\n<td>America/Godthab</td>\n</tr>\n<tr>\n<td>23</td>\n<td>Azores Standard Time - Azores</td>\n<td>-1.0</td>\n<td>Atlantic/Azores</td>\n</tr>\n<tr>\n<td>24</td>\n<td>Cape Verde Standard Time - Cape Verde</td>\n<td>-1.0</td>\n<td>Atlantic/Cape_Verde</td>\n</tr>\n<tr>\n<td>25</td>\n<td>Greenwich Mean Time - London</td>\n<td>0.0</td>\n<td>Europe/London</td>\n</tr>\n<tr>\n<td>26</td>\n<td>Greenwich Mean Time</td>\n<td>0.0</td>\n<td>GMT</td>\n</tr>\n<tr>\n<td>27</td>\n<td>Central European Standard Time - Amsterdam</td>\n<td>1.0</td>\n<td>Europe/Amsterdam</td>\n</tr>\n<tr>\n<td>28</td>\n<td>Central European Standard Time - Belgrade</td>\n<td>1.0</td>\n<td>Europe/Belgrade</td>\n</tr>\n<tr>\n<td>29</td>\n<td>Central European Standard Time - Brussels</td>\n<td>1.0</td>\n<td>Europe/Brussels</td>\n</tr>\n<tr>\n<td>30</td>\n<td>Central European Standard Time - Warsaw</td>\n<td>1.0</td>\n<td>Europe/Warsaw</td>\n</tr>\n<tr>\n<td>31</td>\n<td>West Africa Standard Time - Niamey</td>\n<td>1.0</td>\n<td>Africa/Niamey</td>\n</tr>\n<tr>\n<td>32</td>\n<td>Eastern European Standard Time - Athens</td>\n<td>2.0</td>\n<td>Europe/Athens</td>\n</tr>\n<tr>\n<td>33</td>\n<td>Eastern European Standard Time - Bucharest</td>\n<td>2.0</td>\n<td>Europe/Bucharest</td>\n</tr>\n<tr>\n<td>34</td>\n<td>Eastern European Standard Time - Cairo</td>\n<td>2.0</td>\n<td>Africa/Cairo</td>\n</tr>\n<tr>\n<td>35</td>\n<td>Central Africa Time - Harare</td>\n<td>2.0</td>\n<td>Africa/Harare</td>\n</tr>\n<tr>\n<td>36</td>\n<td>Eastern European Standard Time - Helsinki</td>\n<td>2.0</td>\n<td>Europe/Helsinki</td>\n</tr>\n<tr>\n<td>37</td>\n<td>Israel Standard Time - Jerusalem</td>\n<td>2.0</td>\n<td>Asia/Jerusalem</td>\n</tr>\n<tr>\n<td>38</td>\n<td>Arabian Standard Time - Baghdad</td>\n<td>3.0</td>\n<td>Asia/Baghdad</td>\n</tr>\n<tr>\n<td>39</td>\n<td>Arabian Standard Time - Kuwait</td>\n<td>3.0</td>\n<td>Asia/Kuwait</td>\n</tr>\n<tr>\n<td>40</td>\n<td>Moscow Standard Time - Moscow</td>\n<td>3.0</td>\n<td>Europe/Moscow</td>\n</tr>\n<tr>\n<td>41</td>\n<td>East Africa Time - Nairobi</td>\n<td>3.0</td>\n<td>Africa/Nairobi</td>\n</tr>\n<tr>\n<td>42</td>\n<td>Iran Standard Time - Tehran</td>\n<td>4.0</td>\n<td>Asia/Tehran</td>\n</tr>\n<tr>\n<td>43</td>\n<td>Gulf Standard Time - Muscat</td>\n<td>4.0</td>\n<td>Asia/Muscat</td>\n</tr>\n<tr>\n<td>44</td>\n<td>Azerbaijan Standard Time - Baku</td>\n<td>4.0</td>\n<td>Asia/Baku</td>\n</tr>\n<tr>\n<td>45</td>\n<td>Afghanistan Time - Kabul</td>\n<td>5.0</td>\n<td>Asia/Kabul</td>\n</tr>\n<tr>\n<td>46</td>\n<td>Yekaterinburg Standard Time - Yekaterinburg</td>\n<td>5.0</td>\n<td>Asia/Yekaterinburg</td>\n</tr>\n<tr>\n<td>47</td>\n<td>Uzbekistan Standard Time - Tashkent</td>\n<td>5.0</td>\n<td>Asia/Tashkent</td>\n</tr>\n<tr>\n<td>48</td>\n<td>India Standard Time - Kolkata</td>\n<td>5.5</td>\n<td>Asia/Kolkata</td>\n</tr>\n<tr>\n<td>49</td>\n<td>Nepal Time - Katmandu</td>\n<td>6.0</td>\n<td>Asia/Katmandu</td>\n</tr>\n<tr>\n<td>50</td>\n<td>East Kazakhstan Time - Almaty</td>\n<td>6.0</td>\n<td>Asia/Almaty</td>\n</tr>\n<tr>\n<td>51</td>\n<td>Bangladesh Standard Time - Dhaka</td>\n<td>6.0</td>\n<td>Asia/Dhaka</td>\n</tr>\n<tr>\n<td>53</td>\n<td>Myanmar Time - Rangoon</td>\n<td>6.5</td>\n<td>Asia/Rangoon</td>\n</tr>\n<tr>\n<td>54</td>\n<td>Indochina Time - Bangkok</td>\n<td>7.0</td>\n<td>Asia/Bangkok</td>\n</tr>\n<tr>\n<td>55</td>\n<td>Krasnoyarsk Standard Time - Krasnoyarsk</td>\n<td>7.0</td>\n<td>Asia/Krasnoyarsk</td>\n</tr>\n<tr>\n<td>56</td>\n<td>Hong Kong Standard Time - Hong Kong</td>\n<td>8.0</td>\n<td>Asia/Hong_Kong</td>\n</tr>\n<tr>\n<td>57</td>\n<td>Irkutsk Standard Time - Irkutsk</td>\n<td>8.0</td>\n<td>Asia/Irkutsk</td>\n</tr>\n<tr>\n<td>58</td>\n<td>Singapore Standard Time - Singapore</td>\n<td>8.0</td>\n<td>Asia/Singapore</td>\n</tr>\n<tr>\n<td>59</td>\n<td>Australian Western Standard Time - Perth</td>\n<td>8.0</td>\n<td>Australia/Perth</td>\n</tr>\n<tr>\n<td>60</td>\n<td>Taipei Standard Time - Taipei</td>\n<td>8.0</td>\n<td>Asia/Taipei</td>\n</tr>\n<tr>\n<td>61</td>\n<td>Japan Standard Time - Tokyo</td>\n<td>9.0</td>\n<td>Asia/Tokyo</td>\n</tr>\n<tr>\n<td>62</td>\n<td>Korean Standard Time - Seoul</td>\n<td>9.0</td>\n<td>Asia/Seoul</td>\n</tr>\n<tr>\n<td>63</td>\n<td>Yakutsk Standard Time - Yakutsk</td>\n<td>9.0</td>\n<td>Asia/Yakutsk</td>\n</tr>\n<tr>\n<td>64</td>\n<td>Australian Central Standard Time - Adelaide</td>\n<td>10.0</td>\n<td>Australia/Adelaide</td>\n</tr>\n<tr>\n<td>65</td>\n<td>Australian Central Standard Time - Darwin</td>\n<td>10.0</td>\n<td>Australia/Darwin</td>\n</tr>\n<tr>\n<td>66</td>\n<td>Australian Eastern Standard Time - Brisbane</td>\n<td>10.0</td>\n<td>Australia/Brisbane</td>\n</tr>\n<tr>\n<td>67</td>\n<td>Australian Eastern Standard Time - Sydney</td>\n<td>10.0</td>\n<td>Australia/Sydney</td>\n</tr>\n<tr>\n<td>68</td>\n<td>Papua New Guinea Time - Port Moresby</td>\n<td>10.0</td>\n<td>Pacific/Port_Moresby</td>\n</tr>\n<tr>\n<td>69</td>\n<td>Australian Eastern Standard Time - Hobart</td>\n<td>10.0</td>\n<td>Australia/Hobart</td>\n</tr>\n<tr>\n<td>70</td>\n<td>Vladivostok Standard Time - Vladivostok</td>\n<td>10.0</td>\n<td>Asia/Vladivostok</td>\n</tr>\n<tr>\n<td>71</td>\n<td>Magadan Standard Time - Magadan</td>\n<td>11.0</td>\n<td>Asia/Magadan</td>\n</tr>\n<tr>\n<td>72</td>\n<td>New Zealand Standard Time - Auckland</td>\n<td>12.0</td>\n<td>Pacific/Auckland</td>\n</tr>\n<tr>\n<td>73</td>\n<td>Petropavlovsk-Kamchatski Standard Time - Kamchatka</td>\n<td>12.0</td>\n<td>Asia/Kamchatka</td>\n</tr>\n<tr>\n<td>74</td>\n<td>Tonga Standard Time - Tongatapu</td>\n<td>13.0</td>\n<td>Pacific/Tongatapu</td>\n</tr>\n<tr>\n<td>75</td>\n<td>Eastern Standard Time - Panama</td>\n<td>-5.0</td>\n<td>America/Panama</td>\n</tr>\n<tr>\n<td>76</td>\n<td>Greenwich Mean Time - Casablanca</td>\n<td>0.0</td>\n<td>Africa/Casablanca</td>\n</tr>\n<tr>\n<td>77</td>\n<td>Central European Standard Time - Berlin</td>\n<td>1.0</td>\n<td>Europe/Berlin</td>\n</tr>\n<tr>\n<td>78</td>\n<td>Philippine Standard Time - Manila</td>\n<td>8.0</td>\n<td>Asia/Manila</td>\n</tr>\n<tr>\n<td>79</td>\n<td>Atlantic Standard Time - Puerto Rico</td>\n<td>-4.0</td>\n<td>America/Puerto_Rico</td>\n</tr>\n<tr>\n<td>80</td>\n<td>Central European Standard Time - Budapest</td>\n<td>1.0</td>\n<td>Europe/Budapest</td>\n</tr>\n<tr>\n<td>81</td>\n<td>Pacific Standard Time - Vancouver</td>\n<td>-8.0</td>\n<td>America/Vancouver</td>\n</tr>\n<tr>\n<td>82</td>\n<td>Pakistan Standard Time - Karachi</td>\n<td>5.0</td>\n<td>Asia/Karachi</td>\n</tr>\n<tr>\n<td>83</td>\n<td>South Africa Standard Time - Johannesburg</td>\n<td>2.0</td>\n<td>Africa/Johannesburg</td>\n</tr>\n<tr>\n<td>84</td>\n<td>Central Standard Time - Winnipeg</td>\n<td>-6.0</td>\n<td>America/Winnipeg</td>\n</tr>\n<tr>\n<td>85</td>\n<td>Eastern Standard Time - Toronto</td>\n<td>-5.0</td>\n<td>America/Toronto</td>\n</tr>\n<tr>\n<td>86</td>\n<td>Central European Standard Time - Paris</td>\n<td>1.0</td>\n<td>Europe/Paris</td>\n</tr>\n<tr>\n<td>87</td>\n<td>Greenwich Mean Time - Reykjavik</td>\n<td>0.0</td>\n<td>Atlantic/Reykjavik</td>\n</tr>\n<tr>\n<td>88</td>\n<td>Central European Standard Time - Bratislava</td>\n<td>1.0</td>\n<td>Europe/Bratislava</td>\n</tr>\n<tr>\n<td>89</td>\n<td>Central European Standard Time - Zagreb</td>\n<td>1.0</td>\n<td>Europe/Zagreb</td>\n</tr>\n<tr>\n<td>90</td>\n<td>Western Indonesia Time - Jakarta</td>\n<td>7.0</td>\n<td>Asia/Jakarta</td>\n</tr>\n<tr>\n<td>91</td>\n<td>Central European Standard Time - Zurich</td>\n<td>1.0</td>\n<td>Europe/Zurich</td>\n</tr>\n<tr>\n<td>92</td>\n<td>Western European Standard Time - Lisbon</td>\n<td>0.0</td>\n<td>Europe/Lisbon</td>\n</tr>\n<tr>\n<td>93</td>\n<td>Mountain Standard Time - Edmonton</td>\n<td>-7.0</td>\n<td>America/Edmonton</td>\n</tr>\n<tr>\n<td>94</td>\n<td>Indochina Time - Phnom Penh</td>\n<td>7.0</td>\n<td>Asia/Phnom_Penh</td>\n</tr>\n<tr>\n<td>95</td>\n<td>Central European Standard Time - Ljubljana</td>\n<td>1.0</td>\n<td>Europe/Ljubljana</td>\n</tr>\n<tr>\n<td>96</td>\n<td>Central European Standard Time - Rome</td>\n<td>1.0</td>\n<td>Europe/Rome</td>\n</tr>\n<tr>\n<td>97</td>\n<td>Central Standard Time - Regina</td>\n<td>-6.0</td>\n<td>America/Regina</td>\n</tr>\n<tr>\n<td>98</td>\n<td>Malaysia Time - Kuala Lumpur</td>\n<td>8.0</td>\n<td>Asia/Kuala_Lumpur</td>\n</tr>\n<tr>\n<td>99</td>\n<td>Central European Standard Time - Prague</td>\n<td>1.0</td>\n<td>Europe/Prague</td>\n</tr>\n<tr>\n<td>100</td>\n<td>Fiji Standard Time - Fiji</td>\n<td>12.0</td>\n<td>Pacific/Fiji</td>\n</tr>\n<tr>\n<td>103</td>\n<td>Ulaanbaatar Standard Time - Ulaanbaatar</td>\n<td>8.0</td>\n<td>Asia/Ulaanbaatar</td>\n</tr>\n<tr>\n<td>105</td>\n<td>Gulf Standard Time - Dubai</td>\n<td>4.0</td>\n<td>Asia/Dubai</td>\n</tr>\n<tr>\n<td>107</td>\n<td>Central European Standard Time - Oslo</td>\n<td>1.0</td>\n<td>Europe/Oslo</td>\n</tr>\n<tr>\n<td>108</td>\n<td>Central European Standard Time - Copenhagen</td>\n<td>1.0</td>\n<td>Europe/Copenhagen</td>\n</tr>\n<tr>\n<td>109</td>\n<td>Arabian Standard Time - Bahrain</td>\n<td>3.0</td>\n<td>Asia/Bahrain</td>\n</tr>\n<tr>\n<td>110</td>\n<td>Colombia Standard Time - Bogota</td>\n<td>-5.0</td>\n<td>America/Bogota</td>\n</tr>\n<tr>\n<td>111</td>\n<td>Eastern European Standard Time - Riga</td>\n<td>2.0</td>\n<td>Europe/Riga</td>\n</tr>\n<tr>\n<td>112</td>\n<td>Eastern European Standard Time - Tallinn</td>\n<td>2.0</td>\n<td>Europe/Tallinn</td>\n</tr>\n<tr>\n<td>113</td>\n<td>Eastern Standard Time - Nassau</td>\n<td>-5.0</td>\n<td>America/Nassau</td>\n</tr>\n<tr>\n<td>114</td>\n<td>Brasilia Standard Time - Sao Paulo</td>\n<td>-3.0</td>\n<td>America/Sao_Paulo</td>\n</tr>\n<tr>\n<td>115</td>\n<td>Eastern European Standard Time - Kiev</td>\n<td>2.0</td>\n<td>Europe/Kiev</td>\n</tr>\n<tr>\n<td>116</td>\n<td>Amazon Standard Time - Campo Grande</td>\n<td>-4.0</td>\n<td>America/Campo_Grande</td>\n</tr>\n<tr>\n<td>117</td>\n<td>Atlantic Standard Time - Curacao</td>\n<td>-4.0</td>\n<td>America/Curacao</td>\n</tr>\n<tr>\n<td>118</td>\n<td>Greenwich Mean Time - Dublin</td>\n<td>0.0</td>\n<td>Europe/Dublin</td>\n</tr>\n<tr>\n<td>119</td>\n<td>Central European Standard Time - Stockholm</td>\n<td>1.0</td>\n<td>Europe/Stockholm</td>\n</tr>\n<tr>\n<td>120</td>\n<td>Jordan Time - Amman</td>\n<td>2.0</td>\n<td>Asia/Amman</td>\n</tr>\n<tr>\n<td>121</td>\n<td>Eastern Standard Time - Jamaica</td>\n<td>-5.0</td>\n<td>America/Jamaica</td>\n</tr>\n<tr>\n<td>122</td>\n<td>Greenwich Mean Time - Accra</td>\n<td>0.0</td>\n<td>Africa/Accra</td>\n</tr>\n<tr>\n<td>123</td>\n<td>Central European Standard Time - Madrid</td>\n<td>1.0</td>\n<td>Europe/Madrid</td>\n</tr>\n<tr>\n<td>124</td>\n<td>Atlantic Standard Time - Halifax</td>\n<td>-4.0</td>\n<td>America/Halifax</td>\n</tr>\n<tr>\n<td>125</td>\n<td>Turkey Time - Istanbul</td>\n<td>2.0</td>\n<td>Europe/Istanbul</td>\n</tr>\n<tr>\n<td>126</td>\n<td>Atlantic Standard Time - Barbados</td>\n<td>-4.0</td>\n<td>America/Barbados</td>\n</tr>\n<tr>\n<td>127</td>\n<td>Central European Standard Time - Vienna</td>\n<td>1.0</td>\n<td>Europe/Vienna</td>\n</tr>\n<tr>\n<td>128</td>\n<td>Central European Standard Time - Skopje</td>\n<td>1.0</td>\n<td>Europe/Skopje</td>\n</tr>\n<tr>\n<td>129</td>\n<td>Mexican Pacific Standard Time - Mazatlan</td>\n<td>-7.0</td>\n<td>America/Mazatlan</td>\n</tr>\n<tr>\n<td>130</td>\n<td>East Africa Time - Dar es Salaam</td>\n<td>3.0</td>\n<td>Africa/Dar_es_Salaam</td>\n</tr>\n<tr>\n<td>131</td>\n<td>Central European Standard Time - Malta</td>\n<td>1.0</td>\n<td>Europe/Malta</td>\n</tr>\n<tr>\n<td>132</td>\n<td>Atlantic Standard Time - Santo Domingo</td>\n<td>-4.0</td>\n<td>America/Santo_Domingo</td>\n</tr>\n<tr>\n<td>133</td>\n<td>Eastern European Standard Time - Vilnius</td>\n<td>2.0</td>\n<td>Europe/Vilnius</td>\n</tr>\n<tr>\n<td>134</td>\n<td>Mauritius Standard Time - Mauritius</td>\n<td>4.0</td>\n<td>Indian/Mauritius</td>\n</tr>\n<tr>\n<td>135</td>\n<td>Amazon Standard Time - Boa Vista</td>\n<td>-4.0</td>\n<td>America/Boa_Vista</td>\n</tr>\n<tr>\n<td>136</td>\n<td>Uruguay Standard Time - Montevideo</td>\n<td>-3.0</td>\n<td>America/Montevideo</td>\n</tr>\n<tr>\n<td>137</td>\n<td>Eastern European Standard Time - Sofia</td>\n<td>2.0</td>\n<td>Europe/Sofia</td>\n</tr>\n<tr>\n<td>138</td>\n<td>Central Indonesia Time - Makassar</td>\n<td>8.0</td>\n<td>Asia/Makassar</td>\n</tr>\n<tr>\n<td>139</td>\n<td>Argentina Standard Time - Cordoba</td>\n<td>-3.0</td>\n<td>America/Cordoba</td>\n</tr>\n<tr>\n<td>140</td>\n<td>Georgia Standard Time - Tbilisi</td>\n<td>4.0</td>\n<td>Asia/Tbilisi</td>\n</tr>\n<tr>\n<td>141</td>\n<td>Western European Standard Time - Canary</td>\n<td>0.0</td>\n<td>Atlantic/Canary</td>\n</tr>\n<tr>\n<td>143</td>\n<td>Central Standard Time - Guatemala</td>\n<td>-6.0</td>\n<td>America/Guatemala</td>\n</tr>\n<tr>\n<td>144</td>\n<td>Eastern European Standard Time - Beirut</td>\n<td>2.0</td>\n<td>Asia/Beirut</td>\n</tr>\n<tr>\n<td>145</td>\n<td>Indochina Time - Saigon</td>\n<td>7.0</td>\n<td>Asia/Saigon</td>\n</tr>\n<tr>\n<td>146</td>\n<td>Central Africa Time - Windhoek</td>\n<td>1.0</td>\n<td>Africa/Windhoek</td>\n</tr>\n<tr>\n<td>147</td>\n<td>China Standard Time - Chongqing</td>\n<td>8.0</td>\n<td>Asia/Chongqing</td>\n</tr>\n<tr>\n<td>148</td>\n<td>East Africa Time - Kampala</td>\n<td>3.0</td>\n<td>Africa/Kampala</td>\n</tr>\n<tr>\n<td>149</td>\n<td>Seychelles Time - Mahe</td>\n<td>4.0</td>\n<td>Indian/Mahe</td>\n</tr>\n<tr>\n<td>150</td>\n<td>Central European Standard Time - Sarajevo</td>\n<td>1.0</td>\n<td>Europe/Sarajevo</td>\n</tr>\n<tr>\n<td>151</td>\n<td>Central European Standard Time - Podgorica</td>\n<td>1.0</td>\n<td>Europe/Podgorica</td>\n</tr>\n<tr>\n<td>152</td>\n<td>Atlantic Standard Time - Port of Spain</td>\n<td>-4.0</td>\n<td>America/Port_of_Spain</td>\n</tr>\n<tr>\n<td>153</td>\n<td>Greenwich Mean Time - Abidjan</td>\n<td>0.0</td>\n<td>Africa/Abidjan</td>\n</tr>\n<tr>\n<td>154</td>\n<td>Brasilia Standard Time - Fortaleza</td>\n<td>-3.0</td>\n<td>America/Fortaleza</td>\n</tr>\n<tr>\n<td>155</td>\n<td>West Africa Standard Time - Lagos</td>\n<td>1.0</td>\n<td>Africa/Lagos</td>\n</tr>\n<tr>\n<td>156</td>\n<td>Atlantic Standard Time - Tortola</td>\n<td>-4.0</td>\n<td>America/Tortola</td>\n</tr>\n<tr>\n<td>157</td>\n<td>Eastern Standard Time - Cayman</td>\n<td>-5.0</td>\n<td>America/Cayman</td>\n</tr>\n<tr>\n<td>158</td>\n<td>Atlantic Standard Time - St Thomas</td>\n<td>-4.0</td>\n<td>America/St_Thomas</td>\n</tr>\n<tr>\n<td>159</td>\n<td>Arabian Standard Time - Qatar</td>\n<td>3.0</td>\n<td>Asia/Qatar</td>\n</tr>\n<tr>\n<td>160</td>\n<td>Central Africa Time - Lusaka</td>\n<td>2.0</td>\n<td>Africa/Lusaka</td>\n</tr>\n<tr>\n<td>161</td>\n<td>Greenwich Mean Time - Bamako</td>\n<td>0.0</td>\n<td>Africa/Bamako</td>\n</tr>\n<tr>\n<td>162</td>\n<td>Eastern European Standard Time - Nicosia</td>\n<td>2.0</td>\n<td>Asia/Nicosia</td>\n</tr>\n<tr>\n<td>163</td>\n<td>West Kazakhstan Time - Qyzylorda</td>\n<td>6.0</td>\n<td>Asia/Qyzylorda</td>\n</tr>\n<tr>\n<td>164</td>\n<td>Central Africa Time - Kigali</td>\n<td>2.0</td>\n<td>Africa/Kigali</td>\n</tr>\n<tr>\n<td>165</td>\n<td>Arabian Standard Time - Riyadh</td>\n<td>3.0</td>\n<td>Asia/Riyadh</td>\n</tr>\n<tr>\n<td>166</td>\n<td>RÃ©union Time - Reunion</td>\n<td>4.0</td>\n<td>Indian/Reunion</td>\n</tr>\n<tr>\n<td>167</td>\n<td>Eastern European Standard Time - Gaza</td>\n<td>2.0</td>\n<td>Asia/Gaza</td>\n</tr>\n<tr>\n<td>168</td>\n<td>Tahiti Time - Tahiti</td>\n<td>-10.0</td>\n<td>Pacific/Tahiti</td>\n</tr>\n<tr>\n<td>169</td>\n<td>Atlantic Standard Time - St Lucia</td>\n<td>-4.0</td>\n<td>America/St_Lucia</td>\n</tr>\n<tr>\n<td>170</td>\n<td>Australian Eastern Standard Time - Melbourne</td>\n<td>10.0</td>\n<td>Australia/Melbourne</td>\n</tr>\n<tr>\n<td>171</td>\n<td>Mountain Standard Time - Dawson Creek</td>\n<td>-7.0</td>\n<td>America/Dawson_Creek</td>\n</tr>\n<tr>\n<td>172</td>\n<td>Atlantic Standard Time - Bermuda</td>\n<td>-4.0</td>\n<td>Atlantic/Bermuda</td>\n</tr>\n<tr>\n<td>173</td>\n<td>Central Standard Time - El Salvador</td>\n<td>-6.0</td>\n<td>America/El_Salvador</td>\n</tr>\n<tr>\n<td>174</td>\n<td>East Africa Time - Addis Ababa</td>\n<td>3.0</td>\n<td>Africa/Addis_Ababa</td>\n</tr>\n<tr>\n<td>175</td>\n<td>Central Standard Time - Tegucigalpa</td>\n<td>-6.0</td>\n<td>America/Tegucigalpa</td>\n</tr>\n<tr>\n<td>176</td>\n<td>Greenwich Mean Time - Jersey</td>\n<td>0.0</td>\n<td>Europe/Jersey</td>\n</tr>\n<tr>\n<td>177</td>\n<td>Guyana Time - Guyana</td>\n<td>-4.0</td>\n<td>America/Guyana</td>\n</tr>\n<tr>\n<td>178</td>\n<td>Armenia Standard Time - Yerevan</td>\n<td>4.0</td>\n<td>Asia/Yerevan</td>\n</tr>\n<tr>\n<td>179</td>\n<td>Pacific Standard Time - Tijuana</td>\n<td>-8.0</td>\n<td>America/Tijuana</td>\n</tr>\n<tr>\n<td>180</td>\n<td>Greenwich Mean Time - Freetown</td>\n<td>0.0</td>\n<td>Africa/Freetown</td>\n</tr>\n<tr>\n<td>181</td>\n<td>Mexican Pacific Standard Time - Hermosillo</td>\n<td>-7.0</td>\n<td>America/Hermosillo</td>\n</tr>\n<tr>\n<td>182</td>\n<td>West Africa Standard Time - Douala</td>\n<td>1.0</td>\n<td>Africa/Douala</td>\n</tr>\n<tr>\n<td>183</td>\n<td>Eastern European Standard Time - Chisinau</td>\n<td>2.0</td>\n<td>Europe/Chisinau</td>\n</tr>\n<tr>\n<td>184</td>\n<td>Central European Standard Time - Luxembourg</td>\n<td>1.0</td>\n<td>Europe/Luxembourg</td>\n</tr>\n<tr>\n<td>185</td>\n<td>Uzbekistan Standard Time - Samarkand</td>\n<td>5.0</td>\n<td>Asia/Samarkand</td>\n</tr>\n<tr>\n<td>186</td>\n<td>Cuba Standard Time - Havana</td>\n<td>-5.0</td>\n<td>America/Havana</td>\n</tr>\n<tr>\n<td>187</td>\n<td>China Standard Time - Macau</td>\n<td>8.0</td>\n<td>Asia/Macau</td>\n</tr>\n<tr>\n<td>188</td>\n<td>Central European Standard Time - Tunis</td>\n<td>1.0</td>\n<td>Africa/Tunis</td>\n</tr>\n<tr>\n<td>189</td>\n<td>West Africa Standard Time - Bangui</td>\n<td>1.0</td>\n<td>Africa/Bangui</td>\n</tr>\n<tr>\n<td>190</td>\n<td>Maldives Time - Maldives</td>\n<td>5.0</td>\n<td>Indian/Maldives</td>\n</tr>\n<tr>\n<td>191</td>\n<td>Eastern Standard Time - Port-au-Prince</td>\n<td>-5.0</td>\n<td>America/Port-au-Prince</td>\n</tr>\n<tr>\n<td>192</td>\n<td>Omsk Standard Time - Omsk</td>\n<td>7.0</td>\n<td>Asia/Omsk</td>\n</tr>\n<tr>\n<td>193</td>\n<td>East Africa Time - Antananarivo</td>\n<td>3.0</td>\n<td>Indian/Antananarivo</td>\n</tr>\n<tr>\n<td>194</td>\n<td>Suriname Time - Paramaribo</td>\n<td>-3.0</td>\n<td>America/Paramaribo</td>\n</tr>\n<tr>\n<td>195</td>\n<td>West Africa Standard Time - Luanda</td>\n<td>1.0</td>\n<td>Africa/Luanda</td>\n</tr>\n<tr>\n<td>196</td>\n<td>Newfoundland Standard Time - St Johns</td>\n<td>-4.0</td>\n<td>America/St_Johns</td>\n</tr>\n<tr>\n<td>197</td>\n<td>Central Standard Time - Belize</td>\n<td>-6.0</td>\n<td>America/Belize</td>\n</tr>\n<tr>\n<td>198</td>\n<td>Coordinated Universal Time</td>\n<td>0.0</td>\n<td>UTC</td>\n</tr>\n<tr>\n<td>199</td>\n<td>Central Africa Time - Gaborone</td>\n<td>2.0</td>\n<td>Africa/Gaborone</td>\n</tr>\n<tr>\n<td>200</td>\n<td>Ecuador Time - Guayaquil</td>\n<td>-5.0</td>\n<td>America/Guayaquil</td>\n</tr>\n<tr>\n<td>201</td>\n<td>Atlantic Standard Time - Antigua</td>\n<td>-4.0</td>\n<td>America/Antigua</td>\n</tr>\n<tr>\n<td>202</td>\n<td>Central European Standard Time - Monaco</td>\n<td>1.0</td>\n<td>Europe/Monaco</td>\n</tr>\n<tr>\n<td>203</td>\n<td>Greenwich Mean Time - Isle of Man</td>\n<td>0.0</td>\n<td>Europe/Isle_of_Man</td>\n</tr>\n<tr>\n<td>204</td>\n<td>Greenwich Mean Time - Dakar</td>\n<td>0.0</td>\n<td>Africa/Dakar</td>\n</tr>\n<tr>\n<td>205</td>\n<td>China Standard Time - Shanghai</td>\n<td>8.0</td>\n<td>Asia/Shanghai</td>\n</tr>\n<tr>\n<td>206</td>\n<td>Moscow Standard Time - Minsk</td>\n<td>3.0</td>\n<td>Europe/Minsk</td>\n</tr>\n<tr>\n<td>207</td>\n<td>Atlantic Standard Time - Aruba</td>\n<td>-4.0</td>\n<td>America/Aruba</td>\n</tr>\n<tr>\n<td>208</td>\n<td>Paraguay Standard Time - Asuncion</td>\n<td>-4.0</td>\n<td>America/Asuncion</td>\n</tr>\n<tr>\n<td>209</td>\n<td>Central Africa Time - Maputo</td>\n<td>2.0</td>\n<td>Africa/Maputo</td>\n</tr>\n<tr>\n<td>210</td>\n<td>Atlantic Standard Time - Grenada</td>\n<td>-4.0</td>\n<td>America/Grenada</td>\n</tr>\n<tr>\n<td>212</td>\n<td>Eastern European Time - Damascus</td>\n<td>2.0</td>\n<td>Asia/Damascus</td>\n</tr>\n<tr>\n<td>213</td>\n<td>South Africa Standard Time - Maseru</td>\n<td>2.0</td>\n<td>Africa/Maseru</td>\n</tr>\n<tr>\n<td>214</td>\n<td>Greenwich Mean Time - Ouagadougou</td>\n<td>0.0</td>\n<td>Africa/Ouagadougou</td>\n</tr>\n<tr>\n<td>215</td>\n<td>Central European Standard Time - Andorra</td>\n<td>1.0</td>\n<td>Europe/Andorra</td>\n</tr>\n<tr>\n<td>216</td>\n<td>Bolivia Time - La Paz</td>\n<td>-4.0</td>\n<td>America/La_Paz</td>\n</tr>\n<tr>\n<td>217</td>\n<td>Chamorro Standard Time - Guam</td>\n<td>10.0</td>\n<td>Pacific/Guam</td>\n</tr>\n<tr>\n<td>218</td>\n<td>Central Africa Time - Lubumbashi</td>\n<td>2.0</td>\n<td>Africa/Lubumbashi</td>\n</tr>\n<tr>\n<td>219</td>\n<td>Atlantic Standard Time - St Vincent</td>\n<td>-4.0</td>\n<td>America/St_Vincent</td>\n</tr>\n<tr>\n<td>220</td>\n<td>Central Standard Time - Managua</td>\n<td>-6.0</td>\n<td>America/Managua</td>\n</tr>\n<tr>\n<td>221</td>\n<td>Atlantic Standard Time - St Kitts</td>\n<td>-4.0</td>\n<td>America/St_Kitts</td>\n</tr>\n<tr>\n<td>222</td>\n<td>Eastern Standard Time - Cancun</td>\n<td>-5.0</td>\n<td>America/Cancun</td>\n</tr>\n<tr>\n<td>223</td>\n<td>Central European Standard Time - Algiers</td>\n<td>1.0</td>\n<td>Africa/Algiers</td>\n</tr>\n<tr>\n<td>224</td>\n<td>Samara Standard Time - Samara</td>\n<td>4.0</td>\n<td>Europe/Samara</td>\n</tr>\n<tr>\n<td>225</td>\n<td>Eastern Indonesia Time - Jayapura</td>\n<td>9.0</td>\n<td>Asia/Jayapura</td>\n</tr>\n<tr>\n<td>226</td>\n<td>Central European Standard Time - Tirane</td>\n<td>1.0</td>\n<td>Europe/Tirane</td>\n</tr>\n<tr>\n<td>227</td>\n<td>New Zealand Standard Time - South Pole</td>\n<td>12.0</td>\n<td>Antarctica/South_Pole</td>\n</tr>\n<tr>\n<td>228</td>\n<td>Brunei Darussalam Time - Brunei</td>\n<td>8.0</td>\n<td>Asia/Brunei</td>\n</tr>\n<tr>\n<td>229</td>\n<td>West Africa Standard Time - Brazzaville</td>\n<td>1.0</td>\n<td>Africa/Brazzaville</td>\n</tr>\n<tr>\n<td>230</td>\n<td>West Africa Standard Time - Libreville</td>\n<td>1.0</td>\n<td>Africa/Libreville</td>\n</tr>\n<tr>\n<td>66712</td>\n<td>East Africa Time - Asmara</td>\n<td>3.0</td>\n<td>Africa/Asmara</td>\n</tr>\n<tr>\n<td>66713</td>\n<td>Greenwich Mean Time - Banjul</td>\n<td>0.0</td>\n<td>Africa/Banjul</td>\n</tr>\n<tr>\n<td>66714</td>\n<td>Greenwich Mean Time - Bissau</td>\n<td>0.0</td>\n<td>Africa/Bissau</td>\n</tr>\n<tr>\n<td>66715</td>\n<td>Central Africa Time - Blantyre</td>\n<td>2.0</td>\n<td>Africa/Blantyre</td>\n</tr>\n<tr>\n<td>66716</td>\n<td>Central Africa Time - Bujumbura</td>\n<td>2.0</td>\n<td>Africa/Bujumbura</td>\n</tr>\n<tr>\n<td>66717</td>\n<td>Central European Standard Time - Ceuta</td>\n<td>1.0</td>\n<td>Africa/Ceuta</td>\n</tr>\n<tr>\n<td>66718</td>\n<td>Greenwich Mean Time - Conakry</td>\n<td>0.0</td>\n<td>Africa/Conakry</td>\n</tr>\n<tr>\n<td>66719</td>\n<td>East Africa Time - Djibouti</td>\n<td>3.0</td>\n<td>Africa/Djibouti</td>\n</tr>\n<tr>\n<td>66720</td>\n<td>Greenwich Mean Time - El Aaiun</td>\n<td>0.0</td>\n<td>Africa/El_Aaiun</td>\n</tr>\n<tr>\n<td>66721</td>\n<td>Central Africa Time - Juba</td>\n<td>3.0</td>\n<td>Africa/Juba</td>\n</tr>\n<tr>\n<td>66722</td>\n<td>Central Africa Time - Khartoum</td>\n<td>2.0</td>\n<td>Africa/Khartoum</td>\n</tr>\n<tr>\n<td>66723</td>\n<td>West Africa Standard Time - Kinshasa</td>\n<td>1.0</td>\n<td>Africa/Kinshasa</td>\n</tr>\n<tr>\n<td>66724</td>\n<td>Greenwich Mean Time - Lome</td>\n<td>0.0</td>\n<td>Africa/Lome</td>\n</tr>\n<tr>\n<td>66725</td>\n<td>West Africa Standard Time - Malabo</td>\n<td>1.0</td>\n<td>Africa/Malabo</td>\n</tr>\n<tr>\n<td>66726</td>\n<td>South Africa Standard Time - Mbabane</td>\n<td>2.0</td>\n<td>Africa/Mbabane</td>\n</tr>\n<tr>\n<td>66727</td>\n<td>East Africa Time - Mogadishu</td>\n<td>3.0</td>\n<td>Africa/Mogadishu</td>\n</tr>\n<tr>\n<td>66728</td>\n<td>Greenwich Mean Time - Monrovia</td>\n<td>0.0</td>\n<td>Africa/Monrovia</td>\n</tr>\n<tr>\n<td>66729</td>\n<td>West Africa Standard Time - Ndjamena</td>\n<td>1.0</td>\n<td>Africa/Ndjamena</td>\n</tr>\n<tr>\n<td>66730</td>\n<td>Greenwich Mean Time - Nouakchott</td>\n<td>0.0</td>\n<td>Africa/Nouakchott</td>\n</tr>\n<tr>\n<td>66731</td>\n<td>West Africa Standard Time - Porto-Novo</td>\n<td>1.0</td>\n<td>Africa/Porto-Novo</td>\n</tr>\n<tr>\n<td>66732</td>\n<td>Greenwich Mean Time - Sao Tome</td>\n<td>0.0</td>\n<td>Africa/Sao_Tome</td>\n</tr>\n<tr>\n<td>66733</td>\n<td>Greenwich Mean Time - Timbuktu</td>\n<td>0.0</td>\n<td>Africa/Timbuktu</td>\n</tr>\n<tr>\n<td>66734</td>\n<td>Eastern European Standard Time - Tripoli</td>\n<td>2.0</td>\n<td>Africa/Tripoli</td>\n</tr>\n<tr>\n<td>66735</td>\n<td>Hawaii-Aleutian Standard Time - Adak</td>\n<td>-10.0</td>\n<td>America/Adak</td>\n</tr>\n<tr>\n<td>66736</td>\n<td>Atlantic Standard Time - Anguilla</td>\n<td>-4.0</td>\n<td>America/Anguilla</td>\n</tr>\n<tr>\n<td>66737</td>\n<td>Brasilia Standard Time - Araguaina</td>\n<td>-3.0</td>\n<td>America/Araguaina</td>\n</tr>\n<tr>\n<td>66738</td>\n<td>Argentina Standard Time - Buenos Aires</td>\n<td>-3.0</td>\n<td>America/Argentina/Buenos_Aires</td>\n</tr>\n<tr>\n<td>66739</td>\n<td>Argentina Standard Time - Comod Rivadavia</td>\n<td>-3.0</td>\n<td>America/Argentina/ComodRivadavia</td>\n</tr>\n<tr>\n<td>66740</td>\n<td>Argentina Standard Time - Cordoba</td>\n<td>-3.0</td>\n<td>America/Argentina/Cordoba</td>\n</tr>\n<tr>\n<td>66741</td>\n<td>Argentina Standard Time - Jujuy</td>\n<td>-3.0</td>\n<td>America/Argentina/Jujuy</td>\n</tr>\n<tr>\n<td>66742</td>\n<td>Argentina Standard Time - La Rioja</td>\n<td>-3.0</td>\n<td>America/Argentina/La_Rioja</td>\n</tr>\n<tr>\n<td>66743</td>\n<td>Argentina Standard Time - Mendoza</td>\n<td>-3.0</td>\n<td>America/Argentina/Mendoza</td>\n</tr>\n<tr>\n<td>66744</td>\n<td>Argentina Standard Time - Rio Gallegos</td>\n<td>-3.0</td>\n<td>America/Argentina/Rio_Gallegos</td>\n</tr>\n<tr>\n<td>66745</td>\n<td>Argentina Standard Time - Salta</td>\n<td>-3.0</td>\n<td>America/Argentina/Salta</td>\n</tr>\n<tr>\n<td>66746</td>\n<td>Argentina Standard Time - San Juan</td>\n<td>-3.0</td>\n<td>America/Argentina/San_Juan</td>\n</tr>\n<tr>\n<td>66747</td>\n<td>Argentina Standard Time - San Luis</td>\n<td>-3.0</td>\n<td>America/Argentina/San_Luis</td>\n</tr>\n<tr>\n<td>66748</td>\n<td>Argentina Standard Time - Tucuman</td>\n<td>-3.0</td>\n<td>America/Argentina/Tucuman</td>\n</tr>\n<tr>\n<td>66749</td>\n<td>Argentina Standard Time - Ushuaia</td>\n<td>-3.0</td>\n<td>America/Argentina/Ushuaia</td>\n</tr>\n<tr>\n<td>66750</td>\n<td>Eastern Standard Time - Atikokan</td>\n<td>-5.0</td>\n<td>America/Atikokan</td>\n</tr>\n<tr>\n<td>66751</td>\n<td>Hawaii-Aleutian Standard Time - Atka</td>\n<td>-10.0</td>\n<td>America/Atka</td>\n</tr>\n<tr>\n<td>66752</td>\n<td>Brasilia Standard Time - Bahia</td>\n<td>-3.0</td>\n<td>America/Bahia</td>\n</tr>\n<tr>\n<td>66753</td>\n<td>Central Standard Time - Bahia Banderas</td>\n<td>-6.0</td>\n<td>America/Bahia_Banderas</td>\n</tr>\n<tr>\n<td>66754</td>\n<td>Brasilia Standard Time - Belem</td>\n<td>-3.0</td>\n<td>America/Belem</td>\n</tr>\n<tr>\n<td>66755</td>\n<td>Atlantic Standard Time - Blanc-Sablon</td>\n<td>-4.0</td>\n<td>America/Blanc-Sablon</td>\n</tr>\n<tr>\n<td>66756</td>\n<td>Mountain Standard Time - Boise</td>\n<td>-7.0</td>\n<td>America/Boise</td>\n</tr>\n<tr>\n<td>66757</td>\n<td>Mountain Standard Time - Cambridge Bay</td>\n<td>-7.0</td>\n<td>America/Cambridge_Bay</td>\n</tr>\n<tr>\n<td>66758</td>\n<td>Argentina Standard Time - Catamarca</td>\n<td>-3.0</td>\n<td>America/Catamarca</td>\n</tr>\n<tr>\n<td>66759</td>\n<td>French Guiana Time - Cayenne</td>\n<td>-3.0</td>\n<td>America/Cayenne</td>\n</tr>\n<tr>\n<td>66760</td>\n<td>Central Standard Time - Chihuahua</td>\n<td>-7.0</td>\n<td>America/Chihuahua</td>\n</tr>\n<tr>\n<td>66761</td>\n<td>Eastern Standard Time - Coral Harbour</td>\n<td>-5.0</td>\n<td>America/Coral_Harbour</td>\n</tr>\n<tr>\n<td>66762</td>\n<td>Mountain Standard Time - Creston</td>\n<td>-7.0</td>\n<td>America/Creston</td>\n</tr>\n<tr>\n<td>66763</td>\n<td>Amazon Standard Time - Cuiaba</td>\n<td>-4.0</td>\n<td>America/Cuiaba</td>\n</tr>\n<tr>\n<td>66764</td>\n<td>Mountain Standard Time - Dawson</td>\n<td>-8.0</td>\n<td>America/Dawson</td>\n</tr>\n<tr>\n<td>66765</td>\n<td>Eastern Standard Time - Detroit</td>\n<td>-5.0</td>\n<td>America/Detroit</td>\n</tr>\n<tr>\n<td>66766</td>\n<td>Atlantic Standard Time - Dominica</td>\n<td>-4.0</td>\n<td>America/Dominica</td>\n</tr>\n<tr>\n<td>66767</td>\n<td>Acre Standard Time - Eirunepe</td>\n<td>-5.0</td>\n<td>America/Eirunepe</td>\n</tr>\n<tr>\n<td>66768</td>\n<td>Pacific Standard Time - Ensenada</td>\n<td>-8.0</td>\n<td>America/Ensenada</td>\n</tr>\n<tr>\n<td>66769</td>\n<td>Mountain Standard Time - Fort Nelson</td>\n<td>-7.0</td>\n<td>America/Fort_Nelson</td>\n</tr>\n<tr>\n<td>66770</td>\n<td>Eastern Standard Time - Fort Wayne</td>\n<td>-5.0</td>\n<td>America/Fort_Wayne</td>\n</tr>\n<tr>\n<td>66771</td>\n<td>Atlantic Standard Time - Glace Bay</td>\n<td>-4.0</td>\n<td>America/Glace_Bay</td>\n</tr>\n<tr>\n<td>66772</td>\n<td>Atlantic Standard Time - Goose Bay</td>\n<td>-4.0</td>\n<td>America/Goose_Bay</td>\n</tr>\n<tr>\n<td>66773</td>\n<td>Eastern Standard Time - Grand Turk</td>\n<td>-5.0</td>\n<td>America/Grand_Turk</td>\n</tr>\n<tr>\n<td>66774</td>\n<td>Atlantic Standard Time - Guadeloupe</td>\n<td>-4.0</td>\n<td>America/Guadeloupe</td>\n</tr>\n<tr>\n<td>66775</td>\n<td>Central Standard Time - Knox</td>\n<td>-6.0</td>\n<td>America/Indiana/Knox</td>\n</tr>\n<tr>\n<td>66776</td>\n<td>Eastern Standard Time - Marengo</td>\n<td>-5.0</td>\n<td>America/Indiana/Marengo</td>\n</tr>\n<tr>\n<td>66777</td>\n<td>Eastern Standard Time - Petersburg</td>\n<td>-5.0</td>\n<td>America/Indiana/Petersburg</td>\n</tr>\n<tr>\n<td>66778</td>\n<td>Central Standard Time - Tell City</td>\n<td>-6.0</td>\n<td>America/Indiana/Tell_City</td>\n</tr>\n<tr>\n<td>66779</td>\n<td>Eastern Standard Time - Vevay</td>\n<td>-5.0</td>\n<td>America/Indiana/Vevay</td>\n</tr>\n<tr>\n<td>66780</td>\n<td>Eastern Standard Time - Vincennes</td>\n<td>-5.0</td>\n<td>America/Indiana/Vincennes</td>\n</tr>\n<tr>\n<td>66781</td>\n<td>Eastern Standard Time - Winamac</td>\n<td>-5.0</td>\n<td>America/Indiana/Winamac</td>\n</tr>\n<tr>\n<td>66782</td>\n<td>Eastern Standard Time - Indianapolis</td>\n<td>-5.0</td>\n<td>America/Indianapolis</td>\n</tr>\n<tr>\n<td>66783</td>\n<td>Mountain Standard Time - Inuvik</td>\n<td>-7.0</td>\n<td>America/Inuvik</td>\n</tr>\n<tr>\n<td>66784</td>\n<td>Eastern Standard Time - Iqaluit</td>\n<td>-5.0</td>\n<td>America/Iqaluit</td>\n</tr>\n<tr>\n<td>66785</td>\n<td>Argentina Standard Time - Jujuy</td>\n<td>-3.0</td>\n<td>America/Jujuy</td>\n</tr>\n<tr>\n<td>66787</td>\n<td>Central Standard Time - Monterrey</td>\n<td>-6.0</td>\n<td>America/Monterrey</td>\n</tr>\n<tr>\n<td>66788</td>\n<td>Eastern Standard Time - Louisville</td>\n<td>-5.0</td>\n<td>America/Kentucky/Louisville</td>\n</tr>\n<tr>\n<td>66789</td>\n<td>Eastern Standard Time - Monticello</td>\n<td>-5.0</td>\n<td>America/Kentucky/Monticello</td>\n</tr>\n<tr>\n<td>66790</td>\n<td>Central Standard Time - Knox IN</td>\n<td>-6.0</td>\n<td>America/Knox_IN</td>\n</tr>\n<tr>\n<td>66791</td>\n<td>Atlantic Standard Time - Kralendijk</td>\n<td>-4.0</td>\n<td>America/Kralendijk</td>\n</tr>\n<tr>\n<td>66792</td>\n<td>Eastern Standard Time - Louisville</td>\n<td>-5.0</td>\n<td>America/Louisville</td>\n</tr>\n<tr>\n<td>66793</td>\n<td>Atlantic Standard Time - Lower Princes</td>\n<td>-4.0</td>\n<td>America/Lower_Princes</td>\n</tr>\n<tr>\n<td>66794</td>\n<td>Brasilia Standard Time - Maceio</td>\n<td>-3.0</td>\n<td>America/Maceio</td>\n</tr>\n<tr>\n<td>66795</td>\n<td>Amazon Standard Time - Manaus</td>\n<td>-4.0</td>\n<td>America/Manaus</td>\n</tr>\n<tr>\n<td>66796</td>\n<td>Atlantic Standard Time - Marigot</td>\n<td>-4.0</td>\n<td>America/Marigot</td>\n</tr>\n<tr>\n<td>66797</td>\n<td>Atlantic Standard Time - Martinique</td>\n<td>-4.0</td>\n<td>America/Martinique</td>\n</tr>\n<tr>\n<td>66798</td>\n<td>Central Standard Time - Matamoros</td>\n<td>-6.0</td>\n<td>America/Matamoros</td>\n</tr>\n<tr>\n<td>66799</td>\n<td>Argentina Standard Time - Mendoza</td>\n<td>-3.0</td>\n<td>America/Mendoza</td>\n</tr>\n<tr>\n<td>66800</td>\n<td>Central Standard Time - Menominee</td>\n<td>-6.0</td>\n<td>America/Menominee</td>\n</tr>\n<tr>\n<td>66801</td>\n<td>Central Standard Time - Merida</td>\n<td>-6.0</td>\n<td>America/Merida</td>\n</tr>\n<tr>\n<td>66802</td>\n<td>Alaska Standard Time - Metlakatla</td>\n<td>-9.0</td>\n<td>America/Metlakatla</td>\n</tr>\n<tr>\n<td>66803</td>\n<td>St. Pierre &amp; Miquelon Standard Time - Miquelon</td>\n<td>-3.0</td>\n<td>America/Miquelon</td>\n</tr>\n<tr>\n<td>66804</td>\n<td>Atlantic Standard Time - Moncton</td>\n<td>-4.0</td>\n<td>America/Moncton</td>\n</tr>\n<tr>\n<td>66805</td>\n<td>Eastern Standard Time - Nipigon</td>\n<td>-5.0</td>\n<td>America/Nipigon</td>\n</tr>\n<tr>\n<td>66806</td>\n<td>Alaska Standard Time - Nome</td>\n<td>-9.0</td>\n<td>America/Nome</td>\n</tr>\n<tr>\n<td>66807</td>\n<td>Fernando de Noronha Standard Time - Noronha</td>\n<td>0.0</td>\n<td>America/Noronha</td>\n</tr>\n<tr>\n<td>66808</td>\n<td>Central Standard Time - Beulah</td>\n<td>-6.0</td>\n<td>America/North_Dakota/Beulah</td>\n</tr>\n<tr>\n<td>66809</td>\n<td>Central Standard Time - North Dakota</td>\n<td>-6.0</td>\n<td>America/North_Dakota/Center</td>\n</tr>\n<tr>\n<td>66810</td>\n<td>Central Standard Time - New Salem</td>\n<td>-6.0</td>\n<td>America/North_Dakota/New_Salem</td>\n</tr>\n<tr>\n<td>66811</td>\n<td>Central Standard Time - Ojinaga</td>\n<td>-7.0</td>\n<td>America/Ojinaga</td>\n</tr>\n<tr>\n<td>66812</td>\n<td>Eastern Standard Time - Pangnirtung</td>\n<td>-5.0</td>\n<td>America/Pangnirtung</td>\n</tr>\n<tr>\n<td>66813</td>\n<td>Acre Standard Time - Porto Acre</td>\n<td>-5.0</td>\n<td>America/Porto_Acre</td>\n</tr>\n<tr>\n<td>66814</td>\n<td>Amazon Standard Time - Porto Velho</td>\n<td>-4.0</td>\n<td>America/Porto_Velho</td>\n</tr>\n<tr>\n<td>66815</td>\n<td>Chile Standard Time  - Punta Arenas</td>\n<td>-3.0</td>\n<td>America/Punta_Arenas</td>\n</tr>\n<tr>\n<td>66816</td>\n<td>Central Standard Time - Rainy River</td>\n<td>-6.0</td>\n<td>America/Rainy_River</td>\n</tr>\n<tr>\n<td>66817</td>\n<td>Central Standard Time - Rankin Inlet</td>\n<td>-6.0</td>\n<td>America/Rankin_Inlet</td>\n</tr>\n<tr>\n<td>66818</td>\n<td>Brasilia Standard Time - Recife</td>\n<td>-3.0</td>\n<td>America/Recife</td>\n</tr>\n<tr>\n<td>66819</td>\n<td>Central Standard Time - Resolute</td>\n<td>-6.0</td>\n<td>America/Resolute</td>\n</tr>\n<tr>\n<td>66820</td>\n<td>Acre Standard Time - Rio Branco</td>\n<td>-5.0</td>\n<td>America/Rio_Branco</td>\n</tr>\n<tr>\n<td>66821</td>\n<td>Argentina Standard Time - Rosario</td>\n<td>-3.0</td>\n<td>America/Rosario</td>\n</tr>\n<tr>\n<td>66822</td>\n<td>Northwest Mexico Standard Time - Santa Isabel</td>\n<td>0.0</td>\n<td>America/Santa_Isabel</td>\n</tr>\n<tr>\n<td>66823</td>\n<td>Brasilia Standard Time - Santarem</td>\n<td>-3.0</td>\n<td>America/Santarem</td>\n</tr>\n<tr>\n<td>66824</td>\n<td>East Greenland Standard Time - Scoresbysund</td>\n<td>0.0</td>\n<td>America/Scoresbysund</td>\n</tr>\n<tr>\n<td>66825</td>\n<td>Mountain Standard Time - Shiprock</td>\n<td>-7.0</td>\n<td>America/Shiprock</td>\n</tr>\n<tr>\n<td>66826</td>\n<td>Alaska Standard Time - Sitka</td>\n<td>-9.0</td>\n<td>America/Sitka</td>\n</tr>\n<tr>\n<td>66827</td>\n<td>Atlantic Standard Time - St Barthelemy</td>\n<td>-4.0</td>\n<td>America/St_Barthelemy</td>\n</tr>\n<tr>\n<td>66828</td>\n<td>Central Standard Time - Swift Current</td>\n<td>-6.0</td>\n<td>America/Swift_Current</td>\n</tr>\n<tr>\n<td>66829</td>\n<td>Atlantic Standard Time - Thule</td>\n<td>-4.0</td>\n<td>America/Thule</td>\n</tr>\n<tr>\n<td>66830</td>\n<td>Eastern Standard Time - Thunder Bay</td>\n<td>-5.0</td>\n<td>America/Thunder_Bay</td>\n</tr>\n<tr>\n<td>66831</td>\n<td>Atlantic Standard Time - Virgin</td>\n<td>-4.0</td>\n<td>America/Virgin</td>\n</tr>\n<tr>\n<td>66832</td>\n<td>Mountain Standard Time - Whitehorse</td>\n<td>0.0</td>\n<td>America/Whitehorse</td>\n</tr>\n<tr>\n<td>66833</td>\n<td>Alaska Standard Time - Yakutat</td>\n<td>-9.0</td>\n<td>America/Yakutat</td>\n</tr>\n<tr>\n<td>66834</td>\n<td>Mountain Standard Time - Yellowknife</td>\n<td>-7.0</td>\n<td>America/Yellowknife</td>\n</tr>\n<tr>\n<td>66835</td>\n<td>Apia Standard Time - Apia</td>\n<td>13.0</td>\n<td>Pacific/Apia</td>\n</tr>\n<tr>\n<td>66836</td>\n<td>Bougainville Standard Time - Bougainville</td>\n<td>11.0</td>\n<td>Pacific/Bougainville</td>\n</tr>\n<tr>\n<td>66837</td>\n<td>Chatham Standard Time - Chatham</td>\n<td>12.8</td>\n<td>Pacific/Chatham</td>\n</tr>\n<tr>\n<td>66838</td>\n<td>Chuuk Time - Chuuk</td>\n<td>10.0</td>\n<td>Pacific/Chuuk</td>\n</tr>\n<tr>\n<td>66839</td>\n<td>Easter Island Standard Time - Easter</td>\n<td>-6.0</td>\n<td>Pacific/Easter</td>\n</tr>\n<tr>\n<td>66840</td>\n<td>Vanuatu Standard Time - Efate</td>\n<td>11.0</td>\n<td>Pacific/Efate</td>\n</tr>\n<tr>\n<td>66841</td>\n<td>Phoenix Islands Time - Enderbury</td>\n<td>13.0</td>\n<td>Pacific/Enderbury</td>\n</tr>\n<tr>\n<td>66842</td>\n<td>Tokelau Time - Fakaofo</td>\n<td>13.0</td>\n<td>Pacific/Fakaofo</td>\n</tr>\n<tr>\n<td>66843</td>\n<td>Tuvalu Time - Funafuti</td>\n<td>12.0</td>\n<td>Pacific/Funafuti</td>\n</tr>\n<tr>\n<td>66844</td>\n<td>Galapagos Time - Galapagos</td>\n<td>-6.0</td>\n<td>Pacific/Galapagos</td>\n</tr>\n<tr>\n<td>66845</td>\n<td>Gambier Time - Gambier</td>\n<td>-9.0</td>\n<td>Pacific/Gambier</td>\n</tr>\n<tr>\n<td>66846</td>\n<td>Solomon Islands Time - Guadalcanal</td>\n<td>11.0</td>\n<td>Pacific/Guadalcanal</td>\n</tr>\n<tr>\n<td>66847</td>\n<td>Line Islands Time - Kiritimati</td>\n<td>14.0</td>\n<td>Pacific/Kiritimati</td>\n</tr>\n<tr>\n<td>66848</td>\n<td>Kosrae Time - Kosrae</td>\n<td>11.0</td>\n<td>Pacific/Kosrae</td>\n</tr>\n<tr>\n<td>66849</td>\n<td>Marshall Islands Time - Majuro</td>\n<td>12.0</td>\n<td>Pacific/Majuro</td>\n</tr>\n<tr>\n<td>66850</td>\n<td>Marquesas Time - Marquesas</td>\n<td>0.0</td>\n<td>Pacific/Marquesas</td>\n</tr>\n<tr>\n<td>66851</td>\n<td>Nauru Time - Nauru</td>\n<td>12.0</td>\n<td>Pacific/Nauru</td>\n</tr>\n<tr>\n<td>66852</td>\n<td>Niue Time - Niue</td>\n<td>0.0</td>\n<td>Pacific/Niue</td>\n</tr>\n<tr>\n<td>66853</td>\n<td>Norfolk Island Time - Norfolk</td>\n<td>11.0</td>\n<td>Pacific/Norfolk</td>\n</tr>\n<tr>\n<td>66854</td>\n<td>New Caledonia Standard Time - Noumea</td>\n<td>11.0</td>\n<td>Pacific/Noumea</td>\n</tr>\n<tr>\n<td>66855</td>\n<td>Samoa Standard Time - Pago Pago</td>\n<td>0.0</td>\n<td>Pacific/Pago_Pago</td>\n</tr>\n<tr>\n<td>66856</td>\n<td>Palau Time - Palau</td>\n<td>9.0</td>\n<td>Pacific/Palau</td>\n</tr>\n<tr>\n<td>66857</td>\n<td>Pitcairn Time - Pitcairn</td>\n<td>-8.0</td>\n<td>Pacific/Pitcairn</td>\n</tr>\n<tr>\n<td>66858</td>\n<td>Ponape Time - Pohnpei</td>\n<td>11.0</td>\n<td>Pacific/Pohnpei</td>\n</tr>\n<tr>\n<td>66859</td>\n<td>Cook Islands Standard Time - Rarotonga</td>\n<td>-10.0</td>\n<td>Pacific/Rarotonga</td>\n</tr>\n<tr>\n<td>66860</td>\n<td>Gilbert Islands Time - Tarawa</td>\n<td>12.0</td>\n<td>Pacific/Tarawa</td>\n</tr>\n<tr>\n<td>66861</td>\n<td>Wake Island Time - Wake</td>\n<td>12.0</td>\n<td>Pacific/Wake</td>\n</tr>\n<tr>\n<td>66862</td>\n<td>Wallis &amp; Futuna Time - Wallis</td>\n<td>12.0</td>\n<td>Pacific/Wallis</td>\n</tr>\n<tr>\n<td>66863</td>\n<td>Casey Time - Casey</td>\n<td>11.0</td>\n<td>Antarctica/Casey</td>\n</tr>\n<tr>\n<td>66864</td>\n<td>Davis Time - Davis</td>\n<td>7.0</td>\n<td>Antarctica/Davis</td>\n</tr>\n<tr>\n<td>66865</td>\n<td>Dumont-dâ€™Urville Time - DumontDUrville</td>\n<td>10.0</td>\n<td>Antarctica/DumontDUrville</td>\n</tr>\n<tr>\n<td>66866</td>\n<td>Australian Eastern Standard Time - Macquarie</td>\n<td>11.0</td>\n<td>Antarctica/Macquarie</td>\n</tr>\n<tr>\n<td>66867</td>\n<td>Mawson Time - Mawson</td>\n<td>5.0</td>\n<td>Antarctica/Mawson</td>\n</tr>\n<tr>\n<td>66868</td>\n<td>Chile Standard Time - Palmer Station</td>\n<td>-3.0</td>\n<td>Antarctica/Palmer</td>\n</tr>\n<tr>\n<td>66869</td>\n<td>Rothera Time - Rothera</td>\n<td>-3.0</td>\n<td>Antarctica/Rothera</td>\n</tr>\n<tr>\n<td>66870</td>\n<td>Syowa Time - Syowa</td>\n<td>3.0</td>\n<td>Antarctica/Syowa</td>\n</tr>\n<tr>\n<td>66871</td>\n<td>Greenwich Mean Time - Troll</td>\n<td>0.0</td>\n<td>Antarctica/Troll</td>\n</tr>\n<tr>\n<td>66872</td>\n<td>Vostok Time - Vostok</td>\n<td>6.0</td>\n<td>Antarctica/Vostok</td>\n</tr>\n<tr>\n<td>66873</td>\n<td>Asia/Anadyr</td>\n<td>12.0</td>\n<td>Asia/Anadyr</td>\n</tr>\n<tr>\n<td>66874</td>\n<td>West Kazakhstan Time - Aqtau</td>\n<td>5.0</td>\n<td>Asia/Aqtau</td>\n</tr>\n<tr>\n<td>66875</td>\n<td>West Kazakhstan Time - Aqtobe</td>\n<td>5.0</td>\n<td>Asia/Aqtobe</td>\n</tr>\n<tr>\n<td>66876</td>\n<td>Turkmenistan Standard Time - Ashgabat</td>\n<td>5.0</td>\n<td>Asia/Ashgabat</td>\n</tr>\n<tr>\n<td>66877</td>\n<td>West Kazakhstan Time - Atyrau</td>\n<td>5.0</td>\n<td>Asia/Atyrau</td>\n</tr>\n<tr>\n<td>66878</td>\n<td>GMT+07:00 - Barnaul</td>\n<td>7.0</td>\n<td>Asia/Barnaul</td>\n</tr>\n<tr>\n<td>66879</td>\n<td>Kyrgyzstan Time - Bishkek</td>\n<td>6.0</td>\n<td>Asia/Bishkek</td>\n</tr>\n<tr>\n<td>66880</td>\n<td>Yakutsk Standard Time - Chita</td>\n<td>9.0</td>\n<td>Asia/Chita</td>\n</tr>\n<tr>\n<td>66881</td>\n<td>Ulaanbaatar Standard Time - Choibalsan</td>\n<td>8.0</td>\n<td>Asia/Choibalsan</td>\n</tr>\n<tr>\n<td>66882</td>\n<td>China Standard Time - Chungking</td>\n<td>8.0</td>\n<td>Asia/Chungking</td>\n</tr>\n<tr>\n<td>66883</td>\n<td>East Timor Time - Dili</td>\n<td>9.0</td>\n<td>Asia/Dili</td>\n</tr>\n<tr>\n<td>66884</td>\n<td>Tajikistan Time - Dushanbe</td>\n<td>5.0</td>\n<td>Asia/Dushanbe</td>\n</tr>\n<tr>\n<td>66885</td>\n<td>Eastern European Time - Famagusta</td>\n<td>2.0</td>\n<td>Asia/Famagusta</td>\n</tr>\n<tr>\n<td>66886</td>\n<td>China Standard Time - Harbin</td>\n<td>8.0</td>\n<td>Asia/Harbin</td>\n</tr>\n<tr>\n<td>66887</td>\n<td>Eastern European Standard Time - Hebron</td>\n<td>2.0</td>\n<td>Asia/Hebron</td>\n</tr>\n<tr>\n<td>66888</td>\n<td>Indochina Time - Ho Chi Minh</td>\n<td>7.0</td>\n<td>Asia/Ho_Chi_Minh</td>\n</tr>\n<tr>\n<td>66889</td>\n<td>Hovd Standard Time - Hovd</td>\n<td>7.0</td>\n<td>Asia/Hovd</td>\n</tr>\n<tr>\n<td>66890</td>\n<td>Turkey Time - Istanbul</td>\n<td>3.0</td>\n<td>Asia/Istanbul</td>\n</tr>\n<tr>\n<td>66891</td>\n<td>China Standard Time - Kashgar</td>\n<td>6.0</td>\n<td>Asia/Kashgar</td>\n</tr>\n<tr>\n<td>66892</td>\n<td>Yakutsk Standard Time - Khandyga</td>\n<td>9.0</td>\n<td>Asia/Khandyga</td>\n</tr>\n<tr>\n<td>66893</td>\n<td>Malaysia Time - Kuching</td>\n<td>8.0</td>\n<td>Asia/Kuching</td>\n</tr>\n<tr>\n<td>66894</td>\n<td>Krasnoyarsk Standard Time - Novokuznetsk</td>\n<td>7.0</td>\n<td>Asia/Novokuznetsk</td>\n</tr>\n<tr>\n<td>66895</td>\n<td>Novosibirsk Standard Time - Novosibirsk</td>\n<td>7.0</td>\n<td>Asia/Novosibirsk</td>\n</tr>\n<tr>\n<td>66896</td>\n<td>West Kazakhstan Time - Oral</td>\n<td>5.0</td>\n<td>Asia/Oral</td>\n</tr>\n<tr>\n<td>66897</td>\n<td>Western Indonesia Time - Pontianak</td>\n<td>7.0</td>\n<td>Asia/Pontianak</td>\n</tr>\n<tr>\n<td>66898</td>\n<td>Korean Standard Time - Pyongyang</td>\n<td>9.0</td>\n<td>Asia/Pyongyang</td>\n</tr>\n<tr>\n<td>66899</td>\n<td>Australian Central Standard Time - Yancowinna</td>\n<td>9.5</td>\n<td>Australia/Yancowinna</td>\n</tr>\n<tr>\n<td>66900</td>\n<td>Samara Standard Time - Astrakhan</td>\n<td>4.0</td>\n<td>Europe/Astrakhan</td>\n</tr>\n<tr>\n<td>66901</td>\n<td>Greenwich Mean Time - Belfast</td>\n<td>0.0</td>\n<td>Europe/Belfast</td>\n</tr>\n<tr>\n<td>66902</td>\n<td>Central European Standard Time - Gibraltar</td>\n<td>1.0</td>\n<td>Europe/Gibraltar</td>\n</tr>\n<tr>\n<td>66903</td>\n<td>Greenwich Mean Time - Guernsey</td>\n<td>0.0</td>\n<td>Europe/Guernsey</td>\n</tr>\n<tr>\n<td>66904</td>\n<td>Eastern European Standard Time - Kaliningrad</td>\n<td>2.0</td>\n<td>Europe/Kaliningrad</td>\n</tr>\n<tr>\n<td>66905</td>\n<td>Moscow Standard Time - Kirov</td>\n<td>3.0</td>\n<td>Europe/Kirov</td>\n</tr>\n<tr>\n<td>66906</td>\n<td>Eastern European Standard Time - Mariehamn</td>\n<td>2.0</td>\n<td>Europe/Mariehamn</td>\n</tr>\n<tr>\n<td>66907</td>\n<td>Central European Standard Time - San Marino</td>\n<td>1.0</td>\n<td>Europe/San_Marino</td>\n</tr>\n<tr>\n<td>66908</td>\n<td>Russia Time Zone 3 - Saratov</td>\n<td>4.0</td>\n<td>Europe/Saratov</td>\n</tr>\n<tr>\n<td>66909</td>\n<td>Moscow Standard Time - Simferopol</td>\n<td>3.0</td>\n<td>Europe/Simferopol</td>\n</tr>\n<tr>\n<td>66910</td>\n<td>Eastern European Standard Time - Tiraspol</td>\n<td>2.0</td>\n<td>Europe/Tiraspol</td>\n</tr>\n<tr>\n<td>66911</td>\n<td>Russia Time Zone 3 - Ulyanovsk</td>\n<td>4.0</td>\n<td>Europe/Ulyanovsk</td>\n</tr>\n<tr>\n<td>66912</td>\n<td>Israel Standard Time - Tel Aviv</td>\n<td>2.0</td>\n<td>Asia/Tel_Aviv</td>\n</tr>\n<tr>\n<td>66913</td>\n<td>Bhutan Time - Thimbu</td>\n<td>6.0</td>\n<td>Asia/Thimbu</td>\n</tr>\n<tr>\n<td>66914</td>\n<td>Bhutan Time - Thimphu</td>\n<td>6.0</td>\n<td>Asia/Thimphu</td>\n</tr>\n<tr>\n<td>66915</td>\n<td>GMT+07:00 - Tomsk</td>\n<td>7.0</td>\n<td>Asia/Tomsk</td>\n</tr>\n<tr>\n<td>66916</td>\n<td>Central Indonesia Time - Ujung Pandang</td>\n<td>8.0</td>\n<td>Asia/Ujung_Pandang</td>\n</tr>\n<tr>\n<td>66917</td>\n<td>China Standard Time - Urumqi</td>\n<td>6.0</td>\n<td>Asia/Urumqi</td>\n</tr>\n<tr>\n<td>66918</td>\n<td>Central European Standard Time - Vaduz</td>\n<td>1.0</td>\n<td>Europe/Vaduz</td>\n</tr>\n<tr>\n<td>66919</td>\n<td>Central European Standard Time - Vatican</td>\n<td>1.0</td>\n<td>Europe/Vatican</td>\n</tr>\n<tr>\n<td>66920</td>\n<td>Eastern European Standard Time - Zaporozhye</td>\n<td>2.0</td>\n<td>Europe/Zaporozhye</td>\n</tr>\n<tr>\n<td>66921</td>\n<td>Indian Ocean Time - Chagos</td>\n<td>6.0</td>\n<td>Indian/Chagos</td>\n</tr>\n<tr>\n<td>66922</td>\n<td>Christmas Island Time - Christmas</td>\n<td>7.0</td>\n<td>Indian/Christmas</td>\n</tr>\n<tr>\n<td>66923</td>\n<td>Cocos Islands Time - Cocos</td>\n<td>6.5</td>\n<td>Indian/Cocos</td>\n</tr>\n<tr>\n<td>66924</td>\n<td>East Africa Time - Comoro</td>\n<td>3.0</td>\n<td>Indian/Comoro</td>\n</tr>\n<tr>\n<td>66925</td>\n<td>French Southern &amp; Antarctic Time - Kerguelen</td>\n<td>5.0</td>\n<td>Indian/Kerguelen</td>\n</tr>\n<tr>\n<td>66926</td>\n<td>Indochina Time - Vientiane</td>\n<td>7.0</td>\n<td>Asia/Vientiane</td>\n</tr>\n<tr>\n<td>66927</td>\n<td>Western European Standard Time - Faeroe</td>\n<td>0.0</td>\n<td>Atlantic/Faeroe</td>\n</tr>\n<tr>\n<td>66928</td>\n<td>Central European Standard Time - Jan Mayen</td>\n<td>1.0</td>\n<td>Atlantic/Jan_Mayen</td>\n</tr>\n<tr>\n<td>66929</td>\n<td>Western European Standard Time - Madeira</td>\n<td>0.0</td>\n<td>Atlantic/Madeira</td>\n</tr>\n<tr>\n<td>66930</td>\n<td>Greenwich Mean Time - St Helena</td>\n<td>0.0</td>\n<td>Atlantic/St_Helena</td>\n</tr>\n<tr>\n<td>66931</td>\n<td>Australian Central Standard Time - Broken Hill</td>\n<td>9.5</td>\n<td>Australia/Broken_Hill</td>\n</tr>\n<tr>\n<td>66932</td>\n<td>Australian Eastern Standard Time - Lindeman</td>\n<td>10.0</td>\n<td>Australia/Lindeman</td>\n</tr>\n<tr>\n<td>66933</td>\n<td>Sakhalin Standard Time - Sakhalin</td>\n<td>1.0</td>\n<td>Asia/Sakhalin</td>\n</tr>\n<tr>\n<td>66934</td>\n<td>Magadan Standard Time - Srednekolymsk</td>\n<td>1.0</td>\n<td>Asia/Srednekolymsk</td>\n</tr>\n<tr>\n<td>66935</td>\n<td>Vladivostok Standard Time - Ust-Nera</td>\n<td>1.0</td>\n<td>Asia/Ust-Nera</td>\n</tr>\n<tr>\n<td>66936</td>\n<td>Myanmar Time - Yangon</td>\n<td>6.5</td>\n<td>Asia/Yangon</td>\n</tr>\n<tr>\n<td>66937</td>\n<td>Western European Standard Time - Faroe</td>\n<td>0.0</td>\n<td>Atlantic/Faroe</td>\n</tr>\n<tr>\n<td>66938</td>\n<td>South Georgia Time - South Georgia</td>\n<td>-2.0</td>\n<td>Atlantic/South_Georgia</td>\n</tr>\n<tr>\n<td>66939</td>\n<td>Falkland Islands Standard Time - Stanley</td>\n<td>-3.0</td>\n<td>Atlantic/Stanley</td>\n</tr>\n<tr>\n<td>66940</td>\n<td>Australian Eastern Standard Time - Canberra</td>\n<td>10.0</td>\n<td>Australia/Canberra</td>\n</tr>\n<tr>\n<td>66941</td>\n<td>Australian Eastern Standard Time - Currie</td>\n<td>10.0</td>\n<td>Australia/Currie</td>\n</tr>\n<tr>\n<td>66942</td>\n<td>Australian Central Western Standard Time - Eucla</td>\n<td>8.8</td>\n<td>Australia/Eucla</td>\n</tr>\n<tr>\n<td>66943</td>\n<td>Lord Howe Standard Time - Lord Howe</td>\n<td>10.5</td>\n<td>Australia/Lord_Howe</td>\n</tr>\n<tr>\n<td>66944</td>\n<td>Eastern European Standard Time - Uzhgorod</td>\n<td>2.0</td>\n<td>Europe/Uzhgorod</td>\n</tr>\n</tbody>\n</table>\n</div>","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":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"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":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]}},"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"}]}