{"info":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","description":"
Welcome to the Splash API! This information has been assembled to make it easier to navigate our API and access your Splash data. This material covers the most commonly used endpoints. With the Splash API, users can retrieve data from Splash for use in other applications such as custom event hubs or data visualization tools.
\nUse of the API requires a Client ID and a Client Secret. These are obtained by contacting your Customer Success Manager and discussing your API needs. Once the Client ID and Client Secret are generated, they can be delivered via a secure, cryptographic messaging app.
\nWhen working with the Splash API, here are some best practices to keep in mind:
\nRate Limiting: Ensure you pace your API calls appropriately to prevent overloading the system.
\nAccess Token Reuse: Reusing the same access token for multiple requests can help streamline authentication and reduce overhead.
\nToken Refresh Flow: Implement the token refresh flow to maintain secure and continuous access, especially for long-running operations.
\nResponse Caching: Utilizing response caching can minimize redundant requests and improve response times for frequently accessed data.
\nAlso, 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.
\nAll valid Splash API requests begin with the domain: https://api.splashthat.com/ From there, the remainder of a request is built on five separate elements.
\nThe API is typically grouped into four top-level endpoints, each interacting with a Splash Object.
\n/oauth/v2/token: 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.
\n/events: 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.
\n/groupcontacts (guests): GroupContacts is an internal programmatic term for Splash event guests. This is your go-to endpoint for anything involving creating, retrieving, or updating them.
\n/contacts: 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.
\n/crm/events: 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.
\nEndpoints typically accept one or more of five methods/verbs:
\nGET: fetch an object's data
\nPOST: create an object
\nPUT/PATCH: update an object
\nDELETE: delete an object
\nPath 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.
\nMany 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.
\nRequest 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.
\nSplash 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.
\nIf 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.
\nThe 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.
\nSplash 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.
\nThe Splash API uses rate limiting to ensure fair usage, prevent customers from overloading resources, and maximize performance.
\nAll requests made to the Splash API using a valid Client ID are subject to a default rate limit of 2 requests per second (req/s). The rate limit is calculated based on the number of requests made within a rolling time window.
\nIf a client exceeds the rate limit, the API will respond with a 429 Too Many Requests status code, indicating that the limit has been exceeded. This response includes a RateLimit-Reset header that specifies the duration in seconds, after which the client can retry the request.
{ \"message\": \"API rate limit exceeded\" }
To comply with the rate limit, monitoring the rate of your API requests is important. You can determine the remaining limit by inspecting the headers of the API response. For example, the X-RateLimit-Limit-Second header indicates the total number of requests allowed within the rate limit window, and the X-RateLimit-Remaining-Second header shows the number of requests remaining before reaching the limit.
For more details on how to adhere to the rate limit, the benefits and impacts of rate limiting, and examples of the 429 response, refer to our Help Center article What is API rate limiting and what are the benefits and impacts?
\n","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"API Access","slug":"api-access"},{"content":"Requests","slug":"requests"}],"owner":"6088160","collectionId":"1ea4e17d-5541-4b22-bffb-95199f944712","publishedId":"SVmvTe3o","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"5230EE"},"publishDate":"2019-10-22T19:40:51.000Z"},"item":[{"name":"Authentication","item":[{"name":"Access Token","id":"82e509c9-b52e-4c0f-81a2-2f2b398bff21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"grant_type","value":"password","type":"text"},{"key":"scope","value":"user","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"https://api.splashthat.com/oauth/v2/token","description":"Use this endpoint and its parameters to acquire an Access Token.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"When your Access Token has expired, use this endpoint along with your Refresh Token to acquire a new one.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"Your Splash API client ID
\n","type":"text/plain"},"key":"client_id","value":"{{client_id}}"},{"description":{"content":"Your Splash API client secret
\n","type":"text/plain"},"key":"client_secret","value":"{{client_secret}}"},{"description":{"content":"This OAuth grant type indicates that you are refreshing your authentication, abridging the need for a username and password.
\n","type":"text/plain"},"key":"grant_type","value":"refresh_token"},{"description":{"content":"As with the Access Token, the scope for the Refresh Token will be \"user.\"
\n","type":"text/plain"},"key":"scope","value":"user"},{"description":{"content":"The refresh token you received when you originally authorized.
\n","type":"text/plain"},"key":"refresh_token","value":"{{refresh_token}}"}],"variable":[]}},"response":[{"id":"495b5bbc-7e22-401b-bcdf-6afcf79313c8","name":"Successful Refresh","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.splashthat.com/oauth/v2/token?client_id={{client_id}}&client_secret={{client_secret}}&grant_type=refresh_token&scope=user&refresh_token={{refresh_token}}","host":["https://api.splashthat.com"],"path":["oauth","v2","token"],"query":[{"key":"client_id","value":"{{client_id}}"},{"key":"client_secret","value":"{{client_secret}}"},{"key":"grant_type","value":"refresh_token"},{"key":"scope","value":"user"},{"key":"refresh_token","value":"{{refresh_token}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Sep 2019 17:23:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"no-store, private"},{"key":"Pragma","value":"no-cache"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"access_token\": \"OTQyNWVkZDEzOGFjZjZkNzljMGFkZTI2OWZlNWNmMDIyNzA3OTFkNjJkZGVhZTk1OWZhZTAwMGU4YTIzMzIwMA\",\n \"expires_in\": 604800,\n \"token_type\": \"bearer\",\n \"scope\": \"user\",\n \"refresh_token\": \"ZDEyZTgwOTVjNzFjYTE2NGZmNjRmOTAyOWRlNDk3OTA3MTc3ZGM1MDAzNGQzYjlkMDU1YTdlMDViYWQyOWFkZQ\"\n}"},{"id":"6b7d0f23-aa6a-4a46-8f5c-a15753ea045a","name":"Invalid Refresh Token","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.splashthat.com/oauth/v2/token?client_id={{client_id}}&client_secret={{client_secret}}&grant_type=refresh_token&scope=user&refresh_token={{refresh_token}}","host":["https://api.splashthat.com"],"path":["oauth","v2","token"],"query":[{"key":"client_id","value":"{{client_id}}"},{"key":"client_secret","value":"{{client_secret}}"},{"key":"grant_type","value":"refresh_token"},{"key":"scope","value":"user"},{"key":"refresh_token","value":"{{refresh_token}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Sep 2019 17:23:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-store, private"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n \"error\": \"invalid_grant\",\n \"error_description\": \"Invalid refresh token\"\n}"}],"_postman_id":"363a070f-d478-4ffc-85f6-2b6280e9b38f"}],"id":"477ca8a0-07bb-43a0-a9ce-7d6db618cf7d","description":"The authentication process for the Splash API follows the OAuth 2.0 standard. A Client ID, a Client Secret, a Username, and a Password are needed to acquire an access token. These parameters must be included in a request made to the Access Token endpoint, as explained below.
\nUpon successful validation of these credentials, you will be issued both an Access Token and a Refresh Token. The Access Token remains valid for the next 8 hours. After this period, you must redeem the Refresh Token to acquire a new one. For all subsequent API requests, your Access Token should be included in the Authorization header for proper authentication.
\n","event":[{"listen":"prerequest","script":{"id":"04a2d88d-5ac2-4760-b2c6-bb2c87f8b62a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"817fb7cf-9c11-4923-8f38-343ce40a6002","type":"text/javascript","exec":[""]}}],"_postman_id":"477ca8a0-07bb-43a0-a9ce-7d6db618cf7d","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"Use this header to send your access token.
\n","type":"text"}],"url":"https://api.splashthat.com/events?limit=5&page=1&search={{event_search_string}}&sort={{sort_type}}&upcoming={{upcoming_bool}}&past={{past_bool}}&tbd={{tbd_bool}}&event_start_after={{my_timestamp_a}}&event_start_before={{my_timestamp_b}}&tag_names[0]={{event_tag}}&venues[0]={{my_venue}}&event_type_ids[0]={{my_event_type}}&include_themes={{themes_bool}}&theme_ids[0]={{my_theme_id}}&exclude_ids[0]={{excluded_event}}&rsvp_events={{rsvp_bool}}&ticketed_events={{ticketed_bool}}&viewGroups[]=eventWorkflow","description":"This endpoint is used for retrieving lists of Events from your Splash organization. It has a lot of flexibility to allow you to specify different search parameters and filters. Use these parameters to ensure workable payload sizes and relevant results.
\nYou can also include workflow information in the response payload by including the viewsGroups[]=eventWorkflow query parameter.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"Limits how many events are returned. If no limit is specified, the default is set to 5.
\n","type":"text/plain"},"key":"limit","value":"5"},{"description":{"content":"When using a limit, this will allow you to specify which page of results to retrieve.
\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"Use a search string to refine your results. Filters results by Event title, domain, and venue fields.
\n","type":"text/plain"},"key":"search","value":"{{event_search_string}}"},{"description":{"content":"Sort the results by a requested field. Supported options are:
\nConstrains your results to events with a start date later than 2 days ago.
\n","type":"text/plain"},"key":"upcoming","value":"{{upcoming_bool}}"},{"description":{"content":"Include or exclude past events.
\n","type":"text/plain"},"key":"past","value":"{{past_bool}}"},{"description":{"content":"Include or exclude events with TBD dates.
\n","type":"text/plain"},"key":"tbd","value":"{{tbd_bool}}"},{"description":{"content":"Only return events that start after a certain date (format: yyyy-mm-dd hh:mm:ss).
\n","type":"text/plain"},"key":"event_start_after","value":"{{my_timestamp_a}}"},{"description":{"content":"Only return events that start before a certain date (format: yyyy-mm-dd hh:mm:ss).
\n","type":"text/plain"},"key":"event_start_before","value":"{{my_timestamp_b}}"},{"description":{"content":"Search your Splash events by their tags.
\n","type":"text/plain"},"key":"tag_names[0]","value":"{{event_tag}}"},{"description":{"content":"Specify the venues by which you would like to constrain your results.
\n","type":"text/plain"},"key":"venues[0]","value":"{{my_venue}}"},{"description":{"content":"Enter the event types by which you would like to filter.
\n","type":"text/plain"},"key":"event_type_ids[0]","value":"{{my_event_type}}"},{"description":{"content":"Include themes in the event list.
\n","type":"text/plain"},"key":"include_themes","value":"{{themes_bool}}"},{"description":{"content":"Enter theme IDs to only retrieve events that use that specified theme.
\n","type":"text/plain"},"key":"theme_ids[0]","value":"{{my_theme_id}}"},{"description":{"content":"Exclude specific event IDs from your request.
\n","type":"text/plain"},"key":"exclude_ids[0]","value":"{{excluded_event}}"},{"description":{"content":"Limit your request to only RSVP events.
\n","type":"text/plain"},"key":"rsvp_events","value":"{{rsvp_bool}}"},{"description":{"content":"Limit your request to only return ticketed events.
\n","type":"text/plain"},"key":"ticketed_events","value":"{{ticketed_bool}}"},{"description":{"content":"Including this query parameter and value will return the workflow information in the response payloads.
\n","type":"text/plain"},"key":"viewGroups[]","value":"eventWorkflow"}],"variable":[]}},"response":[{"id":"0cb8af96-f23e-4cba-b417-79616715beb8","name":"Retrieve events with workflow information","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"Use this header to send your access token.","key":"Authorization","type":"text","value":"{{my_token}}"}],"url":{"raw":"https://api.splashthat.com/events?limit=5&page=1&access_token=NjNiMDgyODljNzgwZjgxZGM0NzUzOThjOTNkNDI2NjY3NWM2YmVjMTViYjkxODgyN2Y1ODI2NTQwN2E5NWUxNQ&viewGroups[]=eventWorkflow","host":["https://api.splashthat.com"],"path":["events"],"query":[{"key":"limit","value":"5","description":"Limits how many events are returned. If no limit is specified, the default is set to 5. "},{"key":"page","value":"1","description":"When using a limit, this will allow you to specify which page of results to retrieve."},{"key":"search","value":"{{event_search_string}}","description":"Use a search string to refine your results. ","disabled":true},{"key":"sort","value":"{{sort_type}}","description":"Sort the results by a requested field. Supported options are: \n* created_desc \n* created_asc\n* event_start_desc\n* event_start_asc\n* title_asc\n* title_desc\n* modified_asc\n* modified_desc","disabled":true},{"key":"upcoming","value":"{{upcoming_bool}}","description":"Constrains your results to events with a start date later than 2 days ago.","disabled":true},{"key":"past","value":"{{past_bool}}","description":"Include or exclude past events.","disabled":true},{"key":"tbd","value":"{{tbd_bool}}","description":"Include or exclude events with TBD dates. ","disabled":true},{"key":"event_start_after","value":"{{my_timestamp_a}}","description":"Only return events that start after a certain date (format: yyyy-mm-dd hh:mm:ss).","disabled":true},{"key":"event_start_before","value":"{{my_timestamp_b}}","description":"Only return events that start before a certain date (format: yyyy-mm-dd hh:mm:ss).","disabled":true},{"key":"tag_names[0]","value":"{{event_tag}}","description":"Search your Splash events by their tags. ","disabled":true},{"key":"venues[0]","value":"{{my_venue}}","description":"Specify the venues by which you would like to constrain your results. ","disabled":true},{"key":"event_type_ids[0]","value":"{{my_event_type}}","description":"Enter the event types by which you would like to filter.","disabled":true},{"key":"include_themes","value":"{{themes_bool}}","description":"Include themes in the event list.","disabled":true},{"key":"theme_ids[0]","value":"{{my_theme_id}}","description":"Enter theme IDs to only retrieve events that use that specified theme.","disabled":true},{"key":"exclude_ids[0]","value":"{{excluded_event}}","description":"Exclude specific event IDs from your request.","disabled":true},{"key":"rsvp_events","value":"{{rsvp_bool}}","description":"Limit your request to only RSVP events.","disabled":true},{"key":"ticketed_events","value":"{{ticketed_bool}}","description":"Limit your request to only return ticketed events.","disabled":true},{"key":"access_token","value":"NjNiMDgyODljNzgwZjgxZGM0NzUzOThjOTNkNDI2NjY3NWM2YmVjMTViYjkxODgyN2Y1ODI2NTQwN2E5NWUxNQ"},{"key":"viewGroups[]","value":"eventWorkflow","description":"Including this query parameter and value will return the workflow information in the response payloads. "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 23 Sep 2020 16:39:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"page\": 1,\n \"limit\": 5,\n \"count\": 41,\n \"data\": [\n {\n \"id\": 457932652,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 0\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Perry\",\n \"event_owner_last_name\": \"Hubs\",\n \"event_owner_email\": \"perry+hubs@splashthat.com\",\n \"registration_updating_enabled\": \"\",\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24548,\n \"name\": \"Happy Hours\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n []\n ],\n \"event_workflow\": {\n \"workflow_id\": \"0212d6a0-fdad-11ea-be23-d7767e14ad3b\",\n \"status\": \"approved\"\n },\n \"splash_theme\": {\n \"id\": 1212608,\n \"name\": \"Promote\",\n \"abbr\": \"Promote\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/457/457399824/assets/1f8.sm-2-full.png\",\n \"thumbnail_url\": null,\n \"sort\": 0,\n \"active\": true,\n \"created\": \"2019-09-16T17:13:30-0400\"\n },\n \"event_setting\": {\n \"id\": 1833616,\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457451161/assets/5e719763a740b026dec60a467d2b5a5a.cf6.ben-blennerhassett-ZXfUUM_LR0k-unsplash.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#CorialentNow\",\n \"rsvp_max\": 1,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"FIRST NAME\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"LAST NAME\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"EMAIL\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x1.deb10686.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x2.6ee6d63d.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x3.3733ff1e.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"triggered_emails\": [\n {\n \"trigger\": \"rsvp-yes\",\n \"active\": 1,\n \"include_pdf_attachment\": 0,\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n },\n {\n \"trigger\": \"ticket-default\",\n \"subject\": \"[first_name], thanks for purchasing tickets for [title].\",\n \"content\": \"Thank you for your purchase. \",\n \"include_calendar_attachment\": 1,\n \"include_pdf_attachment\": 1,\n \"pdf_content\": null,\n \"use_default_confirmation\": 0,\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n },\n {\n \"trigger\": \"ticket-multi\",\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n }\n ]\n },\n \"event_host\": \"Perry Hubs\",\n \"button_closed_message\": \"\",\n \"autosave\": false\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"12701\"\n ],\n \"title\": \"Hello Test Event\",\n \"description\": \"\",\n \"description_text\": \"It’s not just another fashion event, it is however – all about the benjamins, his glasses that is. Get access to the finest in designer eyewear from Scandinavian boutique brands and couture eyewear fanatics. Space is limited.
\",\n \"event_start\": \"2020-09-30T19:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2020-09-23T10:56:47-0400\",\n \"modified_at\": \"2020-09-23T10:56:50-0400\",\n \"domain\": \"hellotestevent\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"published\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://hellotestevent.splashthat.com\",\n \"mobile_check_in_url\": \"https://hellotestevent.splashthat.com/checkin/b319260d49d2c4ae25686cfdc682c464db60ee920ac717bcebbc7b39ec545b06\"\n },\n {\n \"id\": 457754628,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 3\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Perry\",\n \"event_owner_last_name\": \"Splash Master\",\n \"event_owner_email\": \"perry+master@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24549,\n \"name\": \"Exhibits & Shows\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n [],\n [],\n []\n ],\n \"event_workflow\": null,\n \"splash_theme\": {\n \"id\": 1205922,\n \"name\": \"Test Faster Theme\",\n \"abbr\": \"TestFaster Theme\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/230/2304161/assets/9c7.PR_conference_2.png\",\n \"thumbnail_url\": null,\n \"sort\": 0,\n \"active\": false,\n \"created\": \"2018-03-30T11:43:45-0400\"\n },\n \"event_setting\": {\n \"id\": 1726545,\n \"header_image\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/361.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#TestingFasterFont\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457754628.x1.986473b6.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457754628.x2.4d82334f.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457754628.x3.94cb2197.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": [],\n \"event_host\": \"Perry Splash Master\",\n \"button_closed_message\": \"\",\n \"autosave\": true\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"6050\",\n \"6051\",\n \"7090\",\n \"8511\",\n \"8533\",\n \"12701\"\n ],\n \"title\": \"New Event with Touchpoint\",\n \"description\": \"\",\n \"description_text\": \"The Corialent NOW Conference is an invite-only event for senior-level marketers in the B2B sector. We’re filling the room with CMOs, creative directors, veteran agency executives, brand directors, and industry analysts. The goal: to get the smartest minds in B2B marketing in one room and then learn a whole lot from each other. Let's do this.
\",\n \"event_start\": \"2020-06-02T19:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2020-05-26T10:13:57-0400\",\n \"modified_at\": \"2020-09-16T15:49:45-0400\",\n \"domain\": \"neweventwithtouchpoint\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"published\": true,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://neweventwithtouchpoint.splashthat.com\",\n \"mobile_check_in_url\": \"https://neweventwithtouchpoint.splashthat.com/checkin/c6e4922813459594e1db22e460acb32943e29790adc3cdadb8cfc1d32ce2e437\"\n },\n {\n \"id\": 457724461,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 0\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Perry\",\n \"event_owner_last_name\": \"Splash Master\",\n \"event_owner_email\": \"perry+master@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 18868,\n \"name\": \"Conference\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n [],\n []\n ],\n \"event_workflow\": null,\n \"splash_theme\": {\n \"id\": 1205922,\n \"name\": \"Test Faster Theme\",\n \"abbr\": \"TestFaster Theme\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/230/2304161/assets/9c7.PR_conference_2.png\",\n \"thumbnail_url\": null,\n \"sort\": 0,\n \"active\": false,\n \"created\": \"2018-03-30T11:43:45-0400\"\n },\n \"event_setting\": {\n \"id\": 1696351,\n \"header_image\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/361.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#TestingFasterFont\",\n \"rsvp_max\": 1,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457724461.x1.771843a2.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457724461.x2.d8035789.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457724461.x3.b62b133c.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": [],\n \"event_host\": \"Perry Splash Master\",\n \"button_closed_message\": \"\",\n \"autosave\": true\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"6050\",\n \"6051\",\n \"7090\",\n \"8511\",\n \"8533\",\n \"12701\"\n ],\n \"title\": \"My Vimeo Livestream\",\n \"description\": \"\",\n \"description_text\": \"The Corialent NOW Conference is an invite-only event for senior-level marketers in the B2B sector. We’re filling the room with CMOs, creative directors, veteran agency executives, brand directors, and industry analysts. The goal: to get the smartest minds in B2B marketing in one room and then learn a whole lot from each other. Let's do this.
\",\n \"event_start\": \"2020-05-01T19:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2020-04-24T16:09:39-0400\",\n \"modified_at\": \"2020-04-24T16:09:43-0400\",\n \"domain\": \"myvimeolivestream\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"published\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://myvimeolivestream.splashthat.com\",\n \"mobile_check_in_url\": \"https://myvimeolivestream.splashthat.com/checkin/7ee4103d7228486389a5dfaa5c7ec357639564ff75ee83533498e84c9aad6fa0\"\n },\n {\n \"id\": 457720381,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 2\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Perry\",\n \"event_owner_last_name\": \"Splash Master\",\n \"event_owner_email\": \"perry+master@splashthat.com\",\n \"registration_updating_enabled\": \"\",\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 18868,\n \"name\": \"Conference\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n [],\n [],\n []\n ],\n \"event_workflow\": null,\n \"splash_theme\": {\n \"id\": 1213902,\n \"name\": \"Hero\",\n \"abbr\": \"Hero\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/457/457408231/assets/cc5.med-3-full.png\",\n \"thumbnail_url\": null,\n \"sort\": 0,\n \"active\": true,\n \"created\": \"2020-01-14T12:26:00-0500\"\n },\n \"event_setting\": {\n \"id\": 1692291,\n \"header_image\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/361.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"tickets\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#CorialentNow\",\n \"rsvp_max\": 1,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457720381.x1.5e4f31eb.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457720381.x2.2c01267f.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457720381.x3.8022838b.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"triggered_emails\": [\n {\n \"trigger\": \"rsvp-yes\",\n \"event_message_id\": null,\n \"active\": 1,\n \"event_message_linked_to_theme\": 1,\n \"include_pdf_attachment\": 0\n },\n {\n \"trigger\": \"ticket-default\",\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n },\n {\n \"trigger\": \"ticket-multi\",\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n }\n ]\n },\n \"event_host\": \"Perry Splash Master\",\n \"button_closed_message\": \"\",\n \"autosave\": true\n },\n \"ticket_types\": [\n {\n \"id\": 12835792,\n \"ticket_order_discounts\": [],\n \"parent_ticket_types\": [],\n \"primary_ticket_type\": null,\n \"name\": \"GA\",\n \"display_date\": \"-0001-11-30T00:00:00-0500\",\n \"price\": 0,\n \"display_date_end\": \"-0001-11-30T00:00:00-0500\",\n \"custom_rsvp_fields\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ]\n }\n ],\n \"statistics\": null,\n \"group_ids\": [\n \"6050\",\n \"6051\",\n \"7090\",\n \"8511\",\n \"8533\",\n \"12701\"\n ],\n \"title\": \"Testing Tick Confirmationz\",\n \"description\": \"\",\n \"description_text\": \"The Corialent NOW Conference is an invite-only event for senior-level marketers in the B2B sector. We’re filling the room with CMOs, creative directors, veteran agency executives, brand directors, and industry analysts. The goal: to get the smartest minds in B2B marketing in one room and then learn a whole lot from each other. Let's do this.
\",\n \"event_start\": \"2020-04-29T19:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2020-04-22T14:23:55-0400\",\n \"modified_at\": \"2020-04-22T14:21:48-0400\",\n \"domain\": \"testingtickconfirmationz\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"published\": true,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://testingtickconfirmationz.splashthat.com\",\n \"mobile_check_in_url\": \"https://testingtickconfirmationz.splashthat.com/checkin/d58c547f11299dafd98dee5c92851a11cb0f9d8fe1ee69c9f1768afea0ecb8d9\"\n },\n {\n \"id\": 457648593,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 1\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Perry\",\n \"event_owner_last_name\": \"Piep\",\n \"event_owner_email\": \"perry@splashthat.com\",\n \"registration_updating_enabled\": true,\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 18868,\n \"name\": \"Conference\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n [],\n [],\n [],\n []\n ],\n \"event_workflow\": null,\n \"splash_theme\": {\n \"id\": 1200635,\n \"name\": \"Bedford\",\n \"abbr\": \"Bedford\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129247/assets/d37.2019-05-13-19-00-bedford-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 26,\n \"active\": true,\n \"created\": \"2015-04-14T14:34:43-0400\"\n },\n \"event_setting\": {\n \"id\": 1619949,\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/205/2058638/assets/f98.Stocksy_txp88de263aPtI000_Medium_354714.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#BedfordV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"values\": [],\n \"selected_values\": [],\n \"name\": \"Job Title\",\n \"required\": false,\n \"deleted\": false,\n \"external_link\": \"invalid\",\n \"custom_question_id\": 371203,\n \"column_name\": \"custom_field_8\"\n },\n {\n \"type\": \"radio\",\n \"values\": [\n \"Yes{{1}}\",\n \"No{{0}}\"\n ],\n \"selected_values\": [],\n \"name\": \"Are you attending?\",\n \"required\": true,\n \"deleted\": false,\n \"external_link\": \"invalid\",\n \"custom_question_id\": \"invalid\",\n \"column_name\": \"custom_field_9\"\n },\n {\n \"type\": \"checkbox\",\n \"values\": [],\n \"selected_values\": [],\n \"name\": \"Bringing a guest?\",\n \"required\": false,\n \"deleted\": false,\n \"external_link\": \"invalid\",\n \"custom_question_id\": \"invalid\",\n \"column_name\": \"custom_field_10\"\n },\n {\n \"type\": \"text\",\n \"values\": [],\n \"selected_values\": [],\n \"name\": \"Guest First Name\",\n \"required\": false,\n \"deleted\": false,\n \"external_link\": \"invalid\",\n \"custom_question_id\": \"invalid\",\n \"column_name\": \"custom_field_11\"\n },\n {\n \"type\": \"text\",\n \"values\": [],\n \"selected_values\": [],\n \"name\": \"Guest Last Name\",\n \"required\": false,\n \"deleted\": false,\n \"external_link\": \"invalid\",\n \"custom_question_id\": \"invalid\",\n \"column_name\": \"custom_field_12\"\n },\n {\n \"type\": \"email\",\n \"values\": [],\n \"selected_values\": [],\n \"name\": \"Guest Email\",\n \"required\": false,\n \"deleted\": false,\n \"external_link\": \"invalid\",\n \"custom_question_id\": \"invalid\",\n \"column_name\": \"custom_field_13\"\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457648593.x1.c4b82b0e.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457648593.x2.f8af34d2.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457648593.x3.72159e25.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": [],\n \"event_host\": \"Perry Piep\",\n \"button_closed_message\": \"\",\n \"autosave\": true\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"10061\"\n ],\n \"title\": \"Experience is Everything Conference 2020\",\n \"description\": \"\",\n \"description_text\": \"Clear your calendar - It's going down! Bedford V2 kicks off on April 20th, and you're invited to take part in the festivities. Splash HQ (122 W 26th St) is our meeting spot for a night of fun and excitement. Come one, come all, bring a guest, and hang loose. This is going to be epic!
\",\n \"event_start\": \"2020-02-20T19:00:00-0500\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2020-02-13T16:24:37-0500\",\n \"modified_at\": \"2020-02-19T15:35:44-0500\",\n \"domain\": \"experienceiseverythingconference\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"published\": true,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://experienceiseverythingconference.splashthat.com\",\n \"mobile_check_in_url\": \"https://experienceiseverythingconference.splashthat.com/checkin/7cb6e8db782d84852cb54aa7f43d195a88b8800681eec8a76c589ced361a3091\"\n }\n ],\n \"meta\": {\n \"code\": 200\n },\n \"pagination\": {\n \"page\": 1,\n \"limit\": 5,\n \"count\": 41\n }\n}"},{"id":"d38548ab-abdc-4510-9b30-6daebf3b2f47","name":"Get Events by tags and dates","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/events?limit=5&page=1&tag_names[0]=Finals&event_start_after=2025-06-2 00:00:00&=","host":["https://api.splashthat.com"],"path":["events"],"query":[{"key":"limit","value":"5","description":"(integer) Limits how many events are returned, which paginates the response. "},{"key":"page","value":"1","description":"(integer) When using a limit, this will allow you to specify which page of results you would like to retrieve."},{"key":"search","value":"","description":"(string) Use a search string to filter your results. ","disabled":true},{"key":"sort","value":"","description":"(string) Sort the results by a requested field. Supported options are: \n* created_desc \n* created_asc\n* event_start_desc\n* event_start_asc\n* title_asc\n* title_desc","disabled":true},{"key":"upcoming","value":"","description":"(boolean) Include or exclude upcoming events.","disabled":true},{"key":"past","value":"","description":"(boolean) Include or exclude past events.","disabled":true},{"key":"tbd","value":"","description":"(boolean) Include or exclude events with TBD dates. ","disabled":true},{"key":"include_themes","value":"","description":"(boolean) Include themes in the event list.","disabled":true},{"key":"rsvp_events","value":"","description":"(boolean) Limit your request to only return RSVP events.","disabled":true},{"key":"ticketed_events","value":"","description":"(boolean) Limit your request to only return ticketed events.","disabled":true},{"key":"exclude_ids","value":"","description":"(array [integer]) Exclude specific event IDs from your request. ","disabled":true},{"key":"tag_names[0]","value":"Finals"},{"key":"event_start_after","value":"2025-06-2 00:00:00"},{"key":"event_start_before","value":"","type":"text","disabled":true},{"key":"","value":"","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 19:04:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"page\": 1,\n \"limit\": 5,\n \"count\": 1,\n \"data\": [\n {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 1\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 16\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 4\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443344,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24551,\n \"name\": \"Seminars & Workshops\"\n },\n \"time_zone\": [],\n \"event_stages\": [],\n \"splash_theme\": {\n \"id\": 1200654,\n \"name\": \"Gramercy\",\n \"abbr\": \"Gramercy\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129252/assets/4cc.2019-05-13-19-17-gramercy-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 29,\n \"active\": true,\n \"created\": \"2015-04-20T10:47:45-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/splash/KWH_0438.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439348,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#GramercyV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/cyclopsbigexam.splashthat.com%3Fpartial%3D168549%26screenshotHash%3D0dec21221b479cf8%26showWorkspace%3D1%26t%3D1568149702%26isTakingScreenshot%3D174.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/cyclopsbigexam.splashthat.com%3Fpartial%3D168549%26screenshotHash%3D0dec21221b479cf8%26showWorkspace%3D1%26t%3D1568149702%26isTakingScreenshot%3D123.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/cyclopsbigexam.splashthat.com%3Fpartial%3D168549%26screenshotHash%3D0dec21221b479cf8%26showWorkspace%3D1%26t%3D1568149702%26isTakingScreenshot%3D143.png\"\n },\n \"venue_tbd\": 0,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-06-10T13:01:26-0400\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"cached_maps\": {\n \"wide\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443344/assets/map-1568149701.550x220.png\",\n \"square\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443344/assets/map-1568149702.200x200.png\"\n },\n \"google_map_url\": \"http://maps.google.com/?q=NaN,NaN\"\n },\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Cyclops' Big Exam\",\n \"description\": \"\",\n \"description_text\": \"\",\n \"event_start\": \"2025-06-02T11:00:00-0400\",\n \"event_end\": \"2025-06-02T14:00:00-0400\",\n \"hide_event_time\": true,\n \"venue_name\": \"Main Classroom\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2019-09-10T17:08:16-0400\",\n \"modified_at\": \"2019-09-10T17:08:21-0400\",\n \"domain\": \"cyclopsbigexam\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://cyclopsbigexam.splashthat.com\",\n \"mobile_check_in_url\": \"https://cyclopsbigexam.splashthat.com/checkin/83a9d7ced25c0dc43800cb7149300e8322e6137cb56c2e24512286bfca8c0afb\"\n }\n ],\n \"meta\": {\n \"code\": 200\n },\n \"pagination\": {\n \"page\": 1,\n \"limit\": 5,\n \"count\": 1\n }\n}"},{"id":"db736134-c588-4926-a6ec-e4492d33bc9b","name":"Get All Events","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/events?limit=5&page=1","host":["https://api.splashthat.com"],"path":["events"],"query":[{"key":"limit","value":"5","description":"(integer) Limits how many events are returned, which paginates the response. "},{"key":"page","value":"1","description":"(integer) When using a limit, this will allow you to specify which page of results you would like to retrieve."},{"key":"search","value":"","description":"(string) Use a search string to filter your results. ","disabled":true},{"key":"sort","value":"","description":"(string) Sort the results by a requested field. Supported options are: \n* created_desc \n* created_asc\n* event_start_desc\n* event_start_asc\n* title_asc\n* title_desc","disabled":true},{"key":"upcoming","value":"","description":"(boolean) Include or exclude upcoming events.","disabled":true},{"key":"past","value":"","description":"(boolean) Include or exclude past events.","disabled":true},{"key":"tbd","value":"","description":"(boolean) Include or exclude events with TBD dates. ","disabled":true},{"key":"include_themes","value":"","description":"(boolean) Include themes in the event list.","disabled":true},{"key":"rsvp_events","value":"","description":"(boolean) Limit your request to only return RSVP events.","disabled":true},{"key":"ticketed_events","value":"","description":"(boolean) Limit your request to only return ticketed events.","disabled":true},{"key":"exclude_ids","value":"","description":"(array [integer]) Exclude specific event IDs from your request. ","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 18:57:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"page\": 1,\n \"limit\": 5,\n \"count\": 6,\n \"data\": [\n {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 3\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 21\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443351,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 51620,\n \"name\": \"Hub\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n []\n ],\n \"splash_theme\": {\n \"id\": 1200635,\n \"name\": \"Bedford\",\n \"abbr\": \"Bedford\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129247/assets/d37.2019-05-13-19-00-bedford-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 25,\n \"active\": true,\n \"created\": \"2015-04-14T14:34:43-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/205/2058638/assets/f98.Stocksy_txp88de263aPtI000_Medium_354714.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439353,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#BedfordV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/xavierschoolfinalsweek.splashthat.com%3Fpartial%3D898032%26screenshotHash%3Da8518a37a6791520%26showWorkspace%3D1%26t%3D1568149837%26isTakingScreenshot%3D132.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/xavierschoolfinalsweek.splashthat.com%3Fpartial%3D898032%26screenshotHash%3Da8518a37a6791520%26showWorkspace%3D1%26t%3D1568149837%26isTakingScreenshot%3D15.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/xavierschoolfinalsweek.splashthat.com%3Fpartial%3D898032%26screenshotHash%3Da8518a37a6791520%26showWorkspace%3D1%26t%3D1568149837%26isTakingScreenshot%3D179.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-11-04T11:14:17-0500\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": [],\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Xavier School Finals Week\",\n \"description\": \"\",\n \"description_text\": \"Clear your calendar - It's going down! Bedford V2 kicks off on April 20th, and you're invited to take part in the festivities. Splash HQ (122 W 26th St) is our meeting spot for a night of fun and excitement. Come one, come all, bring a guest, and hang loose. This is going to be epic!
\",\n \"event_start\": null,\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2019-09-10T17:10:33-0400\",\n \"modified_at\": \"2019-09-10T17:21:59-0400\",\n \"domain\": \"xavierschoolfinalsweek\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 2,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://xavierschoolfinalsweek.splashthat.com\",\n \"mobile_check_in_url\": \"https://xavierschoolfinalsweek.splashthat.com/checkin/44fa0008c4da6895bb2c70faa88d7f5913f2f24a36fee21acafb022a06064a5b\"\n },\n {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 2\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443348,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24548,\n \"name\": \"Happy Hours\"\n },\n \"time_zone\": [],\n \"event_stages\": [],\n \"splash_theme\": {\n \"id\": 1200637,\n \"name\": \"Thompson\",\n \"abbr\": \"Thompson\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129258/assets/ca5.2019-05-13-19-29-thompson-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 33,\n \"active\": true,\n \"created\": \"2015-04-14T19:56:05-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/204/2047527/assets/912.bw-room.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439351,\n \"rsvp_method\": \"collect\",\n \"lat\": \"40.7226196\",\n \"lng\": \"-73.98638900000003\",\n \"currency\": [],\n \"event_hashtag\": \"#ThompsonV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/studyhallwithwolverine.splashthat.com%3Fpartial%3D866237%26screenshotHash%3D03fab093dece11bb%26showWorkspace%3D1%26t%3D1568149788%26isTakingScreenshot%3D127.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/studyhallwithwolverine.splashthat.com%3Fpartial%3D866237%26screenshotHash%3D03fab093dece11bb%26showWorkspace%3D1%26t%3D1568149788%26isTakingScreenshot%3D114.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/studyhallwithwolverine.splashthat.com%3Fpartial%3D866237%26screenshotHash%3D03fab093dece11bb%26showWorkspace%3D1%26t%3D1568149788%26isTakingScreenshot%3D136.png\"\n },\n \"venue_tbd\": 0,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-06-10T13:07:35-0400\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"cached_maps\": {\n \"wide\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443348/assets/map-1568149787.550x220.png\",\n \"square\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443348/assets/map-1568149788.200x200.png\"\n },\n \"google_map_url\": \"http://maps.google.com/?q=40.7226196,-73.98638900000003\"\n },\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Study Hall With Wolverine\",\n \"description\": \"\",\n \"description_text\": \"\",\n \"event_start\": \"2025-06-01T16:30:00-0400\",\n \"event_end\": \"2025-06-02T03:30:00-0400\",\n \"hide_event_time\": true,\n \"venue_name\": \"The Library\",\n \"address\": \"7 Avenue A\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"zip_code\": \"10009\",\n \"country\": \"United States\",\n \"created_at\": \"2019-09-10T17:09:44-0400\",\n \"modified_at\": \"2019-09-10T17:09:47-0400\",\n \"domain\": \"studyhallwithwolverine\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://studyhallwithwolverine.splashthat.com\",\n \"mobile_check_in_url\": \"https://studyhallwithwolverine.splashthat.com/checkin/9dbf77697ea302db1c5b52b4f7ef14175d02135f47b4186994f22fe20692710f\"\n },\n {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 1\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 16\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 4\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443344,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24551,\n \"name\": \"Seminars & Workshops\"\n },\n \"time_zone\": [],\n \"event_stages\": [],\n \"splash_theme\": {\n \"id\": 1200654,\n \"name\": \"Gramercy\",\n \"abbr\": \"Gramercy\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129252/assets/4cc.2019-05-13-19-17-gramercy-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 29,\n \"active\": true,\n \"created\": \"2015-04-20T10:47:45-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/splash/KWH_0438.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439348,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#GramercyV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/cyclopsbigexam.splashthat.com%3Fpartial%3D168549%26screenshotHash%3D0dec21221b479cf8%26showWorkspace%3D1%26t%3D1568149702%26isTakingScreenshot%3D174.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/cyclopsbigexam.splashthat.com%3Fpartial%3D168549%26screenshotHash%3D0dec21221b479cf8%26showWorkspace%3D1%26t%3D1568149702%26isTakingScreenshot%3D123.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/cyclopsbigexam.splashthat.com%3Fpartial%3D168549%26screenshotHash%3D0dec21221b479cf8%26showWorkspace%3D1%26t%3D1568149702%26isTakingScreenshot%3D143.png\"\n },\n \"venue_tbd\": 0,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-06-10T13:01:26-0400\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"cached_maps\": {\n \"wide\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443344/assets/map-1568149701.550x220.png\",\n \"square\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443344/assets/map-1568149702.200x200.png\"\n },\n \"google_map_url\": \"http://maps.google.com/?q=NaN,NaN\"\n },\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Cyclops' Big Exam\",\n \"description\": \"\",\n \"description_text\": \"\",\n \"event_start\": \"2025-06-02T11:00:00-0400\",\n \"event_end\": \"2025-06-02T14:00:00-0400\",\n \"hide_event_time\": true,\n \"venue_name\": \"Main Classroom\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2019-09-10T17:08:16-0400\",\n \"modified_at\": \"2019-09-10T17:08:21-0400\",\n \"domain\": \"cyclopsbigexam\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://cyclopsbigexam.splashthat.com\",\n \"mobile_check_in_url\": \"https://cyclopsbigexam.splashthat.com/checkin/83a9d7ced25c0dc43800cb7149300e8322e6137cb56c2e24512286bfca8c0afb\"\n },\n {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 2\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 4\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 1\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443340,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 51618,\n \"name\": \"Office Hours\"\n },\n \"time_zone\": [],\n \"event_stages\": [],\n \"splash_theme\": {\n \"id\": 1200658,\n \"name\": \"Madison\",\n \"abbr\": \"Madison\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129255/assets/1db.2019-05-13-19-20-madison-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 30,\n \"active\": true,\n \"created\": \"2015-04-20T11:09:19-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/200/2002982/assets/573.HWijjF7RwOPGEJ1nb4Zb_IMG_3773.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439341,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#MadisonV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/stormsofficehours.splashthat.com%3Fpartial%3D80765%26screenshotHash%3Da1365cfba24c3c35%26showWorkspace%3D1%26t%3D1568149534%26isTakingScreenshot%3D119.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/stormsofficehours.splashthat.com%3Fpartial%3D80765%26screenshotHash%3Da1365cfba24c3c35%26showWorkspace%3D1%26t%3D1568149534%26isTakingScreenshot%3D122.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/stormsofficehours.splashthat.com%3Fpartial%3D80765%26screenshotHash%3Da1365cfba24c3c35%26showWorkspace%3D1%26t%3D1568149534%26isTakingScreenshot%3D178.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-06-10T13:03:55-0400\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": [],\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Storm's Office Hours\",\n \"description\": \"\",\n \"description_text\": \"\",\n \"event_start\": \"2025-05-15T13:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2019-09-10T17:05:30-0400\",\n \"modified_at\": \"2019-09-10T17:05:33-0400\",\n \"domain\": \"stormsofficehours\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://stormsofficehours.splashthat.com\",\n \"mobile_check_in_url\": \"https://stormsofficehours.splashthat.com/checkin/2ecd86e75b779fab34300d6cc252f675c35d5f611b4902f313b4a4c630d2f3aa\"\n },\n {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 3\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 11\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 2\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443330,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24549,\n \"name\": \"Exhibits & Shows\"\n },\n \"time_zone\": [],\n \"event_stages\": [],\n \"splash_theme\": {\n \"id\": 1200655,\n \"name\": \"Elizabeth\",\n \"abbr\": \"Elizabeth\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2128952/assets/f91.2019-05-13-19-09-elizabeth-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 27,\n \"active\": true,\n \"created\": \"2015-04-20T10:48:54-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/208/2083488/assets/4e4.RONyPwknRQOO3ag4xf3R_Kinsey.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439336,\n \"rsvp_method\": \"collect\",\n \"lat\": \"38.89127930000001\",\n \"lng\": \"-77.03005089999999\",\n \"currency\": [],\n \"event_hashtag\": \"#ElizabethV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/xavierschoolhistoryfieldtrip.splashthat.com%3Fpartial%3D265435%26screenshotHash%3Da47bf39a7dc301a8%26showWorkspace%3D1%26t%3D1568149146%26isTakingScreenshot%3D17.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/xavierschoolhistoryfieldtrip.splashthat.com%3Fpartial%3D265435%26screenshotHash%3Da47bf39a7dc301a8%26showWorkspace%3D1%26t%3D1568149146%26isTakingScreenshot%3D190.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/xavierschoolhistoryfieldtrip.splashthat.com%3Fpartial%3D265435%26screenshotHash%3Da47bf39a7dc301a8%26showWorkspace%3D1%26t%3D1568149146%26isTakingScreenshot%3D151.png\"\n },\n \"venue_tbd\": 0,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-06-10T12:54:06-0400\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"cached_maps\": {\n \"wide\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443330/assets/map-1568149145.550x220.png\",\n \"square\": \"https://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457443330/assets/map-1568149145.200x200.png\"\n },\n \"google_map_url\": \"http://maps.google.com/?q=38.89127930000001,-77.03005089999999\"\n },\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Xavier School History Field Trip\",\n \"description\": \"\",\n \"description_text\": \"\",\n \"event_start\": \"2025-05-06T10:00:00-0400\",\n \"event_end\": \"2025-05-06T16:00:00-0400\",\n \"hide_event_time\": true,\n \"venue_name\": \"Smithsonian National Museum of American History\",\n \"address\": \"1300 Constitution Avenue Northwest\",\n \"city\": \"Washington\",\n \"state\": \"DC\",\n \"zip_code\": \"20560\",\n \"country\": \"United States\",\n \"created_at\": \"2019-09-10T16:59:01-0400\",\n \"modified_at\": \"2019-09-10T16:59:05-0400\",\n \"domain\": \"xavierschoolhistoryfieldtrip\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://xavierschoolhistoryfieldtrip.splashthat.com\",\n \"mobile_check_in_url\": \"https://xavierschoolhistoryfieldtrip.splashthat.com/checkin/4bf12b29aa5c221681532cb3990daef72c03347dc49ebc46e55cd8a9f3f584ba\"\n }\n ],\n \"meta\": {\n \"code\": 200\n },\n \"pagination\": {\n \"page\": 1,\n \"limit\": 5,\n \"count\": 6\n }\n}"}],"_postman_id":"a761b9f1-dfa4-41fc-8ec5-22125597760c"},{"name":"Individual Event","id":"0b1ef42d-dd69-4298-97e2-df7d55cb56c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"url":"https://api.splashthat.com/events/:event_id?viewGroups[]=eventWorkflow","description":"Retrieve a single event when its event ID is known by including the ID as a path parameter. The payload on this call is much smaller as only that event is returned, however, it is not as efficient a method of extracting event data as calling multiple events at once.
\nTo retrieve workflow ID information for approval flows, you can include the viewGroups[]=eventWorkflow URL parameter. This will include a workflow ID section in the response payload.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"The ID of the event you would like to retrieve.
\n","type":"text/plain"},"type":"string","value":"{{my_event_id}}","key":"event_id"}]}},"response":[{"id":"a87b2995-83f2-404a-84d0-57a092e674d8","name":"Event with workflow ID in respoonse payload","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"key":"Authorization","value":"{{my_token}}","description":"Use this header to send your access token.","type":"text"}],"url":{"raw":"https://api.splashthat.com/events/:event_id?access_token=NjNiMDgyODljNzgwZjgxZGM0NzUzOThjOTNkNDI2NjY3NWM2YmVjMTViYjkxODgyN2Y1ODI2NTQwN2E5NWUxNQ&viewGroups[]=eventWorkflow","host":["https://api.splashthat.com"],"path":["events",":event_id"],"query":[{"key":"access_token","value":"NjNiMDgyODljNzgwZjgxZGM0NzUzOThjOTNkNDI2NjY3NWM2YmVjMTViYjkxODgyN2Y1ODI2NTQwN2E5NWUxNQ"},{"key":"viewGroups[]","value":"eventWorkflow","description":"This variable can be used to retrieve an event with its workflow ID information included in the payload. "}],"variable":[{"key":"event_id","value":"457932652","type":"string","description":"The ID of the event you would like to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 23 Sep 2020 16:28:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 457932652,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 0\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Peter\",\n \"event_owner_last_name\": \"Parker\",\n \"event_owner_email\": \"spiderman@splashthat.com\",\n \"registration_updating_enabled\": \"\",\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24548,\n \"name\": \"Happy Hours\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n []\n ],\n \"event_workflow\": {\n \"workflow_id\": \"0212d6a0-fdad-11ea-be23-d7767e14ad3b\",\n \"status\": \"approved\"\n },\n \"splash_theme\": {\n \"id\": 1212608,\n \"name\": \"Promote\",\n \"abbr\": \"Promote\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/457/457399824/assets/1f8.sm-2-full.png\",\n \"thumbnail_url\": null,\n \"sort\": 0,\n \"active\": true,\n \"created\": \"2019-09-16T17:13:30-0400\"\n },\n \"event_setting\": {\n \"id\": 1833616,\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457451161/assets/5e719763a740b026dec60a467d2b5a5a.cf6.ben-blennerhassett-ZXfUUM_LR0k-unsplash.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#CorialentNow\",\n \"rsvp_max\": 1,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"FIRST NAME\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"LAST NAME\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"EMAIL\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x1.deb10686.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x2.6ee6d63d.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x3.3733ff1e.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"triggered_emails\": [\n {\n \"trigger\": \"rsvp-yes\",\n \"active\": 1,\n \"include_pdf_attachment\": 0,\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n },\n {\n \"trigger\": \"ticket-default\",\n \"subject\": \"[first_name], thanks for purchasing tickets for [title].\",\n \"content\": \"Thank you for your purchase. \",\n \"include_calendar_attachment\": 1,\n \"include_pdf_attachment\": 1,\n \"pdf_content\": null,\n \"use_default_confirmation\": 0,\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n },\n {\n \"trigger\": \"ticket-multi\",\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n }\n ]\n },\n \"event_host\": \"Spider Hubs\",\n \"button_closed_message\": \"\",\n \"autosave\": false\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"12701\"\n ],\n \"title\": \"Hello Test Event\",\n \"description\": \"\",\n \"description_text\": \"It’s not just another fashion event, it is however – all about the benjamins, his glasses that is. Get access to the finest in designer eyewear from Scandinavian boutique brands and couture eyewear fanatics. Space is limited.
\",\n \"event_start\": \"2020-09-30T19:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2020-09-23T10:56:47-0400\",\n \"modified_at\": \"2020-09-23T10:56:50-0400\",\n \"domain\": \"hellotestevent\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"published\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://hellotestevent.splashthat.com\",\n \"mobile_check_in_url\": \"https://hellotestevent.splashthat.com/checkin/b319260d49d2c4ae25686cfdc682c464db60ee920ac717bcebbc7b39ec545b06\"\n },\n \"success\": true\n}"},{"id":"bd218d02-5160-4590-8f4c-6af272de8b1f","name":"Invalid Event ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/events/:event_id","host":["https://api.splashthat.com"],"path":["events",":event_id"],"query":[{"key":"limit","value":"5","description":"(integer) Limits how many events are returned, which paginates the response. ","disabled":true},{"key":"page","value":"1","description":"(integer) When using a limit, this will allow you to specify which page of results you would like to retrieve.","disabled":true},{"key":"search","value":"","description":"(string) Use a search string to filter your results. ","disabled":true},{"key":"sort","value":"","description":"(string) Sort the results by a requested field. Supported options are: \n* created_desc \n* created_asc\n* event_start_desc\n* event_start_asc\n* title_asc\n* title_desc","disabled":true},{"key":"upcoming","value":"","description":"(boolean) Include or exclude upcoming events.","disabled":true},{"key":"past","value":"","description":"(boolean) Include or exclude past events.","disabled":true},{"key":"tbd","value":"","description":"(boolean) Include or exclude events with TBD dates. ","disabled":true},{"key":"include_themes","value":"","description":"(boolean) Include themes in the event list.","disabled":true},{"key":"rsvp_events","value":"","description":"(boolean) Limit your request to only return RSVP events.","disabled":true},{"key":"ticketed_events","value":"","description":"(boolean) Limit your request to only return ticketed events.","disabled":true},{"key":"exclude_ids","value":"","description":"(array [integer]) Exclude specific event IDs from your request. ","disabled":true},{"key":"tag_names[0]","value":"Finals","disabled":true},{"key":"event_start_after","value":"2025-06-2 00:00:00","disabled":true}],"variable":[{"key":"event_id","value":"999999999"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 19:07:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 403,\n \"message\": \"Forbidden\",\n \"errors\": null\n },\n \"data\": {\n \"event_id\": \"999999999\"\n }\n}"},{"id":"fb88a368-cc0b-4a2c-b88f-a88909b38803","name":"Get a single event by ID ","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/events/:event_id","host":["https://api.splashthat.com"],"path":["events",":event_id"],"query":[{"key":"limit","value":"5","description":"(integer) Limits how many events are returned, which paginates the response. ","disabled":true},{"key":"page","value":"1","description":"(integer) When using a limit, this will allow you to specify which page of results you would like to retrieve.","disabled":true},{"key":"search","value":"","description":"(string) Use a search string to filter your results. ","disabled":true},{"key":"sort","value":"","description":"(string) Sort the results by a requested field. Supported options are: \n* created_desc \n* created_asc\n* event_start_desc\n* event_start_asc\n* title_asc\n* title_desc","disabled":true},{"key":"upcoming","value":"","description":"(boolean) Include or exclude upcoming events.","disabled":true},{"key":"past","value":"","description":"(boolean) Include or exclude past events.","disabled":true},{"key":"tbd","value":"","description":"(boolean) Include or exclude events with TBD dates. ","disabled":true},{"key":"include_themes","value":"","description":"(boolean) Include themes in the event list.","disabled":true},{"key":"rsvp_events","value":"","description":"(boolean) Limit your request to only return RSVP events.","disabled":true},{"key":"ticketed_events","value":"","description":"(boolean) Limit your request to only return ticketed events.","disabled":true},{"key":"exclude_ids","value":"","description":"(array [integer]) Exclude specific event IDs from your request. ","disabled":true},{"key":"tag_names[0]","value":"Finals","disabled":true},{"key":"event_start_after","value":"2025-06-2 00:00:00","disabled":true}],"variable":[{"key":"event_id","value":"457443340"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 19:05:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 2\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 4\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 1\n }\n ],\n \"event_owner_first_name\": \"Quinn\",\n \"event_owner_last_name\": \"API\",\n \"event_owner_email\": \"quinn.soutar.api@splashthat.com\",\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"id\": 457443340,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 51618,\n \"name\": \"Office Hours\"\n },\n \"time_zone\": [],\n \"event_stages\": [],\n \"splash_theme\": {\n \"id\": 1200658,\n \"name\": \"Madison\",\n \"abbr\": \"Madison\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/212/2129255/assets/1db.2019-05-13-19-20-madison-v2.splashthat.com.png\",\n \"thumbnail_url\": null,\n \"sort\": 30,\n \"active\": true,\n \"created\": \"2015-04-20T11:09:19-0400\"\n },\n \"event_setting\": {\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/200/2002982/assets/573.HWijjF7RwOPGEJ1nb4Zb_IMG_3773.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"id\": 1439341,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#MadisonV2\",\n \"rsvp_max\": 0,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"First Name\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"Last Name\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"Email\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/stormsofficehours.splashthat.com%3Fpartial%3D80765%26screenshotHash%3Da1365cfba24c3c35%26showWorkspace%3D1%26t%3D1568149534%26isTakingScreenshot%3D119.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/stormsofficehours.splashthat.com%3Fpartial%3D80765%26screenshotHash%3Da1365cfba24c3c35%26showWorkspace%3D1%26t%3D1568149534%26isTakingScreenshot%3D122.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/splashthat.com/sites/view/stormsofficehours.splashthat.com%3Fpartial%3D80765%26screenshotHash%3Da1365cfba24c3c35%26showWorkspace%3D1%26t%3D1568149534%26isTakingScreenshot%3D178.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"tminus0hours\",\n \"rsvp_closed_at\": \"2015-06-10T13:03:55-0400\",\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": [],\n \"event_host\": \"Quinn API\"\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"\"\n ],\n \"title\": \"Storm's Office Hours\",\n \"description\": \"\",\n \"description_text\": \"\",\n \"event_start\": \"2025-05-15T13:00:00-0400\",\n \"event_end\": null,\n \"hide_event_time\": true,\n \"venue_name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip_code\": \"\",\n \"country\": \"\",\n \"created_at\": \"2019-09-10T17:05:30-0400\",\n \"modified_at\": \"2019-09-10T17:05:33-0400\",\n \"domain\": \"stormsofficehours\",\n \"paid_for_domain\": false,\n \"deleted\": false,\n \"custom_domain\": \"\",\n \"hub\": 0,\n \"mobility_account_id\": \"\",\n \"mobility_wholesaler_id\": \"\",\n \"fq_url\": \"https://stormsofficehours.splashthat.com\",\n \"mobile_check_in_url\": \"https://stormsofficehours.splashthat.com/checkin/2ecd86e75b779fab34300d6cc252f675c35d5f611b4902f313b4a4c630d2f3aa\"\n },\n \"success\": true\n}"}],"_postman_id":"0b1ef42d-dd69-4298-97e2-df7d55cb56c2"},{"name":"Event Details","id":"2d121a2e-3c73-4276-9acc-70278208b91c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"title\": \"The Birthday of the Millennium\",\n \"domain\": \"https://millenniumbirthday.splashthat.com\",\n \"start_time\": \"your_start_time\",\n \"end_time\": \"your_end_time\",\n \"venue\": {\n \"name\": \"Super Delicious Restaurant\",\n \"address\": \"101 Dope Avenue\",\n \"city\": \"New York City\",\n \"region\": \"New York\",\n \"country\": \"USA\",\n \"postal_code\": \"1234567\",\n \"lat\": \"your_latitutde\",\n \"lon\": \"your_longitude\"\n },\n \"type\": \"Birthday\",\n \"event_host\": \"Quinn Soutar\",\n \"status\": \"your_status\",\n \"page_action\": \"RSVP\",\n \"tags\": \"Birthday, Party, Dinner\",\n \"waitlist\": true,\n \"currency\": \"USD\",\n \"meta_title\": \"your_meta_title\",\n \"meta_description\": \"your_meta_desc\",\n \"meta_calendar_description\": \"your_meta_cal\",\n \"favicon_url\": \"your_favicon_url\",\n \"no_index\": true,\n \"limit_one_per_email\": true,\n \"is_invite_only\": true,\n \"page_password\": \"your_page_password\",\n \"page_privacy_type\": \"Public\",\n \"require_captcha\": true,\n \"facebook_title\": \"your_facebook_title\",\n \"facebook_description\": \"your_facebook_description\",\n \"twitter_default\": \"your_twitter_default\",\n \"linkedin_title\": \"your_linkedin_title\",\n \"linkedin_description\": \"your_linkedin_description\",\n \"hashtag\": \"#millenniumbirthday\",\n \"salesforce_campaign_id\": \"campaign_id_for_sfdc_integration\",\n \"sessions_overlap\": true,\n \"registration_updating_enabled\": true,\n \"registration_updating_deadline\": 0,\n \"splash_hub_auto_subscribe\": true,\n \"email_white_label_key\": \"your_key\"\n}\n"},"url":"https://api.splashthat.com/events/:event_id/settings","description":"Some event object fields are not found at the /events endpoint. You can find additional details about your events at the /settings endpoint. Just use a known event ID to specify the event for this extra information.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"The ID of the event for which details are needed.
\n","type":"text/plain"},"type":"string","value":"{{my_event_id}}","key":"event_id"}]}},"response":[{"id":"1912420f-c33c-4d8b-9b13-4e32afca20af","name":"Get an Event's Details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"title\": \"The Birthday of the Millennium\",\n \"domain\": \"https://millenniumbirthday.splashthat.com\",\n \"start_time\": \"your_start_time\",\n \"end_time\": \"your_end_time\",\n \"venue\": {\n \"name\": \"Super Delicious Restaurant\",\n \"address\": \"101 Dope Avenue\",\n \"city\": \"New York City\",\n \"region\": \"New York\",\n \"country\": \"USA\",\n \"postal_code\": \"1234567\",\n \"lat\": \"your_latitutde\",\n \"lon\": \"your_longitude\"\n },\n \"type\": \"Birthday\",\n \"event_host\": \"Quinn Soutar\",\n \"status\": \"your_status\",\n \"page_action\": \"RSVP\",\n \"tags\": \"Birthday, Party, Dinner\",\n \"waitlist\": true,\n \"currency\": \"USD\",\n \"meta_title\": \"your_meta_title\",\n \"meta_description\": \"your_meta_desc\",\n \"meta_calendar_description\": \"your_meta_cal\",\n \"favicon_url\": \"your_favicon_url\",\n \"no_index\": true,\n \"limit_one_per_email\": true,\n \"is_invite_only\": true,\n \"page_password\": \"your_page_password\",\n \"page_privacy_type\": \"Public\",\n \"require_captcha\": true,\n \"facebook_title\": \"your_facebook_title\",\n \"facebook_description\": \"your_facebook_description\",\n \"twitter_default\": \"your_twitter_default\",\n \"linkedin_title\": \"your_linkedin_title\",\n \"linkedin_description\": \"your_linkedin_description\",\n \"hashtag\": \"#millenniumbirthday\",\n \"salesforce_campaign_id\": \"campaign_id_for_sfdc_integration\",\n \"sessions_overlap\": true,\n \"registration_updating_enabled\": true,\n \"registration_updating_deadline\": 0,\n \"splash_hub_auto_subscribe\": true,\n \"email_white_label_key\": \"your_key\"\n}\n"},"url":{"raw":"https://api.splashthat.com/events/:event_id/settings","host":["https://api.splashthat.com"],"path":["events",":event_id","settings"],"variable":[{"key":"event_id","value":"457443340"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 20:27:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"title\": \"Storm's Office Hours\",\n \"domain\": \"stormsofficehours\",\n \"custom_domain\": \"\",\n \"paid_for_domain\": false,\n \"white_label\": 1,\n \"start_time\": \"2025-05-15T13:00:00\",\n \"end_time\": null,\n \"venue\": {\n \"name\": \"\",\n \"address\": \"\",\n \"city\": \"\",\n \"region\": \"\",\n \"country\": \"\",\n \"postal_code\": \"\",\n \"lat\": \"NaN\",\n \"lon\": \"NaN\"\n },\n \"type\": \"Office Hours\",\n \"event_host\": \"Quinn API\",\n \"status\": \"tminus0hours\",\n \"page_action\": \"collect\",\n \"tags\": [\n \"Study\"\n ],\n \"waitlist\": false,\n \"currency\": \"USD\",\n \"meta_title\": null,\n \"meta_description\": null,\n \"meta_calendar_description\": null,\n \"favicon_url\": \"\",\n \"no_index\": false,\n \"limit_one_per_email\": false,\n \"is_invite_only\": false,\n \"page_password\": null,\n \"page_privacy_type\": \"none\",\n \"require_captcha\": false,\n \"facebook_title\": null,\n \"facebook_description\": null,\n \"twitter_default\": null,\n \"linkedin_title\": null,\n \"linkedin_description\": null,\n \"hashtag\": \"#MadisonV2\",\n \"salesforce_campaign_id\": \"\",\n \"sessions_overlap\": false,\n \"share_image_url\": \"\",\n \"time_zone_id\": 1,\n \"invite_link_privacy_bypass\": false,\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"splash_hub_auto_subscribe\": 0,\n \"form_email_domain_restriction\": null,\n \"email_white_label_key\": null,\n \"description_text\": \"\",\n \"user\": {\n \"event_types\": [\n {\n \"id\": 18865,\n \"name\": \"Concert\"\n },\n {\n \"id\": 18867,\n \"name\": \"Networking Event\"\n },\n {\n \"id\": 18868,\n \"name\": \"Conference\"\n },\n {\n \"id\": 18870,\n \"name\": \"Launch Event\"\n },\n {\n \"id\": 18871,\n \"name\": \"Recruiting Event\"\n },\n {\n \"id\": 18872,\n \"name\": \"Sweepstakes\"\n },\n {\n \"id\": 18874,\n \"name\": \"Birthday\"\n },\n {\n \"id\": 18875,\n \"name\": \"Other\"\n },\n {\n \"id\": 24548,\n \"name\": \"Happy Hours\"\n },\n {\n \"id\": 24549,\n \"name\": \"Exhibits & Shows\"\n },\n {\n \"id\": 24550,\n \"name\": \"Party Just to Party\"\n },\n {\n \"id\": 24551,\n \"name\": \"Seminars & Workshops\"\n },\n {\n \"id\": 32649,\n \"name\": \"In-Store Engagement\"\n }\n ]\n },\n \"is_rsvp_open\": true\n },\n \"success\": true\n}"},{"id":"f4c77814-0eb5-4a22-95e1-4c62d2da9c91","name":"Event Details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.","type":"text"}],"body":{"mode":"raw","raw":"{\n \"title\": \"The Birthday of the Millennium\",\n \"domain\": \"https://millenniumbirthday.splashthat.com\",\n \"start_time\": \"your_start_time\",\n \"end_time\": \"your_end_time\",\n \"venue\": {\n \"name\": \"Super Delicious Restaurant\",\n \"address\": \"101 Dope Avenue\",\n \"city\": \"New York City\",\n \"region\": \"New York\",\n \"country\": \"USA\",\n \"postal_code\": \"1234567\",\n \"lat\": \"your_latitutde\",\n \"lon\": \"your_longitude\"\n },\n \"type\": \"Birthday\",\n \"event_host\": \"Quinn Soutar\",\n \"status\": \"your_status\",\n \"page_action\": \"RSVP\",\n \"tags\": \"Birthday, Party, Dinner\",\n \"waitlist\": true,\n \"currency\": \"USD\",\n \"meta_title\": \"your_meta_title\",\n \"meta_description\": \"your_meta_desc\",\n \"meta_calendar_description\": \"your_meta_cal\",\n \"favicon_url\": \"your_favicon_url\",\n \"no_index\": true,\n \"limit_one_per_email\": true,\n \"is_invite_only\": true,\n \"page_password\": \"your_page_password\",\n \"page_privacy_type\": \"Public\",\n \"require_captcha\": true,\n \"facebook_title\": \"your_facebook_title\",\n \"facebook_description\": \"your_facebook_description\",\n \"twitter_default\": \"your_twitter_default\",\n \"linkedin_title\": \"your_linkedin_title\",\n \"linkedin_description\": \"your_linkedin_description\",\n \"hashtag\": \"#millenniumbirthday\",\n \"salesforce_campaign_id\": \"campaign_id_for_sfdc_integration\",\n \"sessions_overlap\": true,\n \"registration_updating_enabled\": true,\n \"registration_updating_deadline\": 0,\n \"splash_hub_auto_subscribe\": true,\n \"email_white_label_key\": \"your_key\"\n}\n"},"url":{"raw":"https://api.splashthat.com/events/:event_id/settings","host":["https://api.splashthat.com"],"path":["events",":event_id","settings"],"variable":[{"key":"event_id","value":"459174409","description":"The ID of the event for which details are needed. ","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"x-ratelimit-limit-second","value":"100000"},{"key":"via","value":"kong/3.4.2, 1.1 varnish, 1.1 varnish"},{"key":"content-type","value":"application/json"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"server","value":"nginx"},{"key":"ratelimit-remaining","value":"99999"},{"key":"x-ratelimit-remaining-second","value":"99999"},{"key":"cache-control","value":"no-cache, private"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-kong-proxy-latency","value":"2"},{"key":"allow","value":"GET, PATCH"},{"key":"accept-ranges","value":"bytes"},{"key":"x-kong-upstream-latency","value":"425"},{"key":"ratelimit-reset","value":"1"},{"key":"ratelimit-limit","value":"100000"},{"key":"Date","value":"Thu, 17 Apr 2025 14:30:23 GMT"},{"key":"X-Served-By","value":"cache-iad-kcgs7200060-IAD, cache-iad-kiad7000110-IAD"},{"key":"X-Cache","value":"MISS, MISS"},{"key":"X-Cache-Hits","value":"0, 0"},{"key":"X-Timer","value":"S1744900223.225332,VS0,VE452"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"title\": \"GBG Leadership Offsite, 2025\",\n \"domain\": \"gbgleaders25\",\n \"custom_domain\": \"events.atmeta.com/gbgleaders25\",\n \"paid_for_domain\": true,\n \"white_label\": 1,\n \"start_time\": \"2025-10-29T09:00:00\",\n \"end_time\": \"2025-10-30T17:00:00\",\n \"venue\": {\n \"name\": \"Meta, HY50\",\n \"address\": \"50 Hudson Yards\",\n \"city\": \"New York\",\n \"region\": \"NY\",\n \"country\": \"United States\",\n \"postal_code\": \"10001\",\n \"lat\": \"40.7545733\",\n \"lon\": \"-74.0001065\"\n },\n \"type\": \"In Person\",\n \"event_type_id\": 72138,\n \"event_host\": \" \",\n \"status\": \"open\",\n \"page_action\": \"collect\",\n \"tags\": [],\n \"waitlist\": false,\n \"currency\": \"USD\",\n \"meta_title\": null,\n \"meta_description\": null,\n \"meta_calendar_description\": null,\n \"favicon_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/458/458261300/assets/244b6e649f1f0b4805ff27f942000302.M_Favicon_270x270.png\",\n \"hide_footer\": false,\n \"no_index\": true,\n \"limit_one_per_email\": true,\n \"is_invite_only\": false,\n \"page_password\": null,\n \"page_privacy_type\": \"none\",\n \"require_captcha\": false,\n \"facebook_title\": null,\n \"facebook_description\": null,\n \"twitter_default\": null,\n \"linkedin_title\": null,\n \"linkedin_description\": null,\n \"hashtag\": \"#FacebookRecruitingFlow\",\n \"salesforce_campaign_id\": \"\",\n \"sessions_overlap\": true,\n \"share_image_url\": \"\",\n \"time_zone_id\": 1,\n \"invite_link_privacy_bypass\": false,\n \"registration_updating_enabled\": true,\n \"registration_updating_deadline\": 24,\n \"splash_hub_auto_subscribe\": false,\n \"form_email_domain_restriction\": {\n \"restriction_mode\": \"off\",\n \"domains\": [],\n \"only_main_email\": true\n },\n \"email_white_label_key\": \"eventmetamail\",\n \"description_text\": \"Clear your calendar - It's going down! Splash Blocks kicks off on April 20th, and you're invited to take part in the festivities. Splash HQ (122 W 26th St) is our meeting spot for a night of fun and excitement. Come one, come all, bring a guest, and hang loose.\",\n \"button_closed_message\": \"\",\n \"send_guest_confirmation\": false,\n \"published\": true,\n \"autosave\": false,\n \"locale\": \"\",\n \"redirect_to\": \"\",\n \"attendance_types\": [\n \"in-person\"\n ],\n \"multisession\": true,\n \"has_virtual\": false,\n \"limit_one_order_per_email\": false,\n \"limit_one_ticket_type_per_email\": false,\n \"meta_sitemap_xml\": \"\",\n \"meta_robots_txt\": \"\",\n \"hub\": 0,\n \"multi_currency_options\": [\n {\n \"id\": 1,\n \"code\": \"USD\",\n \"name\": \"United States Dollar\"\n },\n {\n \"id\": 2,\n \"code\": \"EUR\",\n \"name\": \"Euro\"\n },\n {\n \"id\": 3,\n \"code\": \"GBP\",\n \"name\": \"British Pound\"\n },\n {\n \"id\": 4,\n \"code\": \"ILS\",\n \"name\": \"Israeli Shekel\"\n },\n {\n \"id\": 5,\n \"code\": \"ZAR\",\n \"name\": \"South African Rand\"\n },\n {\n \"id\": 6,\n \"code\": \"JPY\",\n \"name\": \"Japanese Yen\"\n },\n {\n \"id\": 7,\n \"code\": \"BRL\",\n \"name\": \"Brazillian Real\"\n },\n {\n \"id\": 8,\n \"code\": \"INR\",\n \"name\": \"Indian Rupees\"\n },\n {\n \"id\": 9,\n \"code\": \"HKD\",\n \"name\": \"Hong Kong Dollar\"\n },\n {\n \"id\": 10,\n \"code\": \"CAD\",\n \"name\": \"Canadian Dollar\"\n },\n {\n \"id\": 12,\n \"code\": \"AUD\",\n \"name\": \"Australian Dollar\"\n },\n {\n \"id\": 13,\n \"code\": \"TWD\",\n \"name\": \"Taiwanese Dollar\"\n },\n {\n \"id\": 14,\n \"code\": \"SGD\",\n \"name\": \"Singapore Dollar\"\n }\n ],\n \"has_event_sold_tickets\": false,\n \"has_event_sold_or_pending_tickets\": false,\n \"vat_settings\": null,\n \"user\": {\n \"event_types\": [\n {\n \"id\": 72137,\n \"name\": \"Hybrid: Splash integrated with Zoom\"\n },\n {\n \"id\": 72138,\n \"name\": \"In Person\"\n },\n {\n \"id\": 72140,\n \"name\": \"Virtual: Splash integrated with Zoom\"\n },\n {\n \"id\": 72199,\n \"name\": \"Virtual: Splash microsite only\"\n },\n {\n \"id\": 72200,\n \"name\": \"Virtual: Splash with embedded video\"\n }\n ],\n \"email_white_label_options\": \"{\\\"eventmetamail\\\":{\\\"default\\\":true,\\\"label\\\":\\\"@splash.metamail.com\\\",\\\"domain\\\":\\\"splash.metamail.com\\\",\\\"sendgrid_apikey\\\":\\\"REDACTED_SENDGRID_EXAMPLE_KEY.Fk2QGgzc5rUCom13URgQvgaCKIJS4fL0xrXMtjEHPtA\\\"},\\\"dach\\\":{\\\"domain\\\":\\\"splash.metamail.com\\\",\\\"label\\\":\\\"dach@splash.metamail.com\\\",\\\"static_address\\\":\\\"dach@splash.metamail.com\\\",\\\"sendgrid_apikey\\\":\\\"REDACTED_SENDGRID_EXAMPLE_KEY.Fk2QGgzc5rUCom13URgQvgaCKIJS4fL0xrXMtjEHPtA\\\"},\\\"no-reply\\\":{\\\"domain\\\":\\\"splash.metamail.com\\\",\\\"label\\\":\\\"no-reply@splash.metamail.com\\\",\\\"static_address\\\":\\\"no-reply@splash.metamail.com\\\",\\\"sendgrid_apikey\\\":\\\"REDACTED_SENDGRID_EXAMPLE_KEY.Fk2QGgzc5rUCom13URgQvgaCKIJS4fL0xrXMtjEHPtA\\\"},\\\"Meta Summit\\\":{\\\"label\\\":\\\"MetaSummit@splash.metamail.com\\\",\\\"domain\\\":\\\"splash.metamail.com\\\",\\\"static_address\\\":\\\"splash.metamail.com\\\",\\\"sendgrid_apikey\\\":\\\"REDACTED_SENDGRID_EXAMPLE_KEY.Fk2QGgzc5rUCom13URgQvgaCKIJS4fL0xrXMtjEHPtA\\\"}}\",\n \"locales\": [\n {\n \"code\": \"af-na\",\n \"name\": \"Afrikaans (Namibia)\"\n },\n {\n \"code\": \"af-za\",\n \"name\": \"Afrikaans (South Africa)\"\n },\n {\n \"code\": \"ak-gh\",\n \"name\": \"Akan (Ghana)\"\n },\n {\n \"code\": \"sq-al\",\n \"name\": \"Albanian (Albania)\"\n },\n {\n \"code\": \"sq-xk\",\n \"name\": \"Albanian (Kosovo)\"\n },\n {\n \"code\": \"sq-mk\",\n \"name\": \"Albanian (Macedonia)\"\n },\n {\n \"code\": \"am-et\",\n \"name\": \"Amharic (Ethiopia)\"\n },\n {\n \"code\": \"ar-dz\",\n \"name\": \"Arabic (Algeria)\"\n },\n {\n \"code\": \"ar-bh\",\n \"name\": \"Arabic (Bahrain)\"\n },\n {\n \"code\": \"ar-td\",\n \"name\": \"Arabic (Chad)\"\n },\n {\n \"code\": \"ar-km\",\n \"name\": \"Arabic (Comoros)\"\n },\n {\n \"code\": \"ar-dj\",\n \"name\": \"Arabic (Djibouti)\"\n },\n {\n \"code\": \"ar-eg\",\n \"name\": \"Arabic (Egypt)\"\n },\n {\n \"code\": \"ar-er\",\n \"name\": \"Arabic (Eritrea)\"\n },\n {\n \"code\": \"ar-iq\",\n \"name\": \"Arabic (Iraq)\"\n },\n {\n \"code\": \"ar-il\",\n \"name\": \"Arabic (Israel)\"\n },\n {\n \"code\": \"ar-jo\",\n \"name\": \"Arabic (Jordan)\"\n },\n {\n \"code\": \"ar-kw\",\n \"name\": \"Arabic (Kuwait)\"\n },\n {\n \"code\": \"ar-lb\",\n \"name\": \"Arabic (Lebanon)\"\n },\n {\n \"code\": \"ar-ly\",\n \"name\": \"Arabic (Libya)\"\n },\n {\n \"code\": \"ar-mr\",\n \"name\": \"Arabic (Mauritania)\"\n },\n {\n \"code\": \"ar-ma\",\n \"name\": \"Arabic (Morocco)\"\n },\n {\n \"code\": \"ar-om\",\n \"name\": \"Arabic (Oman)\"\n },\n {\n \"code\": \"ar-ps\",\n \"name\": \"Arabic (Palestinian Territories)\"\n },\n {\n \"code\": \"ar-qa\",\n \"name\": \"Arabic (Qatar)\"\n },\n {\n \"code\": \"ar-sa\",\n \"name\": \"Arabic (Saudi Arabia)\"\n },\n {\n \"code\": \"ar-so\",\n \"name\": \"Arabic (Somalia)\"\n },\n {\n \"code\": \"ar-ss\",\n \"name\": \"Arabic (South Sudan)\"\n },\n {\n \"code\": \"ar-sd\",\n \"name\": \"Arabic (Sudan)\"\n },\n {\n \"code\": \"ar-sy\",\n \"name\": \"Arabic (Syria)\"\n },\n {\n \"code\": \"ar-tn\",\n \"name\": \"Arabic (Tunisia)\"\n },\n {\n \"code\": \"ar-ae\",\n \"name\": \"Arabic (United Arab Emirates)\"\n },\n {\n \"code\": \"ar-eh\",\n \"name\": \"Arabic (Western Sahara)\"\n },\n {\n \"code\": \"ar-ye\",\n \"name\": \"Arabic (Yemen)\"\n },\n {\n \"code\": \"hy-am\",\n \"name\": \"Armenian (Armenia)\"\n },\n {\n \"code\": \"as-in\",\n \"name\": \"Assamese (India)\"\n },\n {\n \"code\": \"az-az\",\n \"name\": \"Azerbaijani (Azerbaijan)\"\n },\n {\n \"code\": \"az-cyrl\",\n \"name\": \"Azerbaijani (Cyrillic)\"\n },\n {\n \"code\": \"az-cyrl-az\",\n \"name\": \"Azerbaijani (Cyrillic, Azerbaijan)\"\n },\n {\n \"code\": \"az-latn\",\n \"name\": \"Azerbaijani (Latin)\"\n },\n {\n \"code\": \"az-latn-az\",\n \"name\": \"Azerbaijani (Latin, Azerbaijan)\"\n },\n {\n \"code\": \"bm-latn\",\n \"name\": \"Bambara (Latin)\"\n },\n {\n \"code\": \"bm-latn-ml\",\n \"name\": \"Bambara (Latin, Mali)\"\n },\n {\n \"code\": \"eu-es\",\n \"name\": \"Basque (Spain)\"\n },\n {\n \"code\": \"be-by\",\n \"name\": \"Belarusian (Belarus)\"\n },\n {\n \"code\": \"bn-bd\",\n \"name\": \"Bengali (Bangladesh)\"\n },\n {\n \"code\": \"bn-in\",\n \"name\": \"Bengali (India)\"\n },\n {\n \"code\": \"bs-ba\",\n \"name\": \"Bosnian (Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"bs-cyrl\",\n \"name\": \"Bosnian (Cyrillic)\"\n },\n {\n \"code\": \"bs-cyrl-ba\",\n \"name\": \"Bosnian (Cyrillic, Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"bs-latn\",\n \"name\": \"Bosnian (Latin)\"\n },\n {\n \"code\": \"bs-latn-ba\",\n \"name\": \"Bosnian (Latin, Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"br-fr\",\n \"name\": \"Breton (France)\"\n },\n {\n \"code\": \"bg-bg\",\n \"name\": \"Bulgarian (Bulgaria)\"\n },\n {\n \"code\": \"my-mm\",\n \"name\": \"Burmese (Myanmar (Burma))\"\n },\n {\n \"code\": \"ca-ad\",\n \"name\": \"Catalan (Andorra)\"\n },\n {\n \"code\": \"ca-fr\",\n \"name\": \"Catalan (France)\"\n },\n {\n \"code\": \"ca-it\",\n \"name\": \"Catalan (Italy)\"\n },\n {\n \"code\": \"ca-es\",\n \"name\": \"Catalan (Spain)\"\n },\n {\n \"code\": \"zh-cn\",\n \"name\": \"Chinese (China)\"\n },\n {\n \"code\": \"zh-hk\",\n \"name\": \"Chinese (Hong Kong SAR China)\"\n },\n {\n \"code\": \"zh-mo\",\n \"name\": \"Chinese (Macau SAR China)\"\n },\n {\n \"code\": \"zh-hans\",\n \"name\": \"Chinese (Simplified)\"\n },\n {\n \"code\": \"zh-hans-cn\",\n \"name\": \"Chinese (Simplified, China)\"\n },\n {\n \"code\": \"zh-hans-hk\",\n \"name\": \"Chinese (Simplified, Hong Kong SAR China)\"\n },\n {\n \"code\": \"zh-hans-mo\",\n \"name\": \"Chinese (Simplified, Macau SAR China)\"\n },\n {\n \"code\": \"zh-hans-sg\",\n \"name\": \"Chinese (Simplified, Singapore)\"\n },\n {\n \"code\": \"zh-sg\",\n \"name\": \"Chinese (Singapore)\"\n },\n {\n \"code\": \"zh-tw\",\n \"name\": \"Chinese (Taiwan)\"\n },\n {\n \"code\": \"zh-hant\",\n \"name\": \"Chinese (Traditional)\"\n },\n {\n \"code\": \"zh-hant-hk\",\n \"name\": \"Chinese (Traditional, Hong Kong SAR China)\"\n },\n {\n \"code\": \"zh-hant-mo\",\n \"name\": \"Chinese (Traditional, Macau SAR China)\"\n },\n {\n \"code\": \"zh-hant-tw\",\n \"name\": \"Chinese (Traditional, Taiwan)\"\n },\n {\n \"code\": \"kw-gb\",\n \"name\": \"Cornish (United Kingdom)\"\n },\n {\n \"code\": \"hr-ba\",\n \"name\": \"Croatian (Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"hr-hr\",\n \"name\": \"Croatian (Croatia)\"\n },\n {\n \"code\": \"cs-cz\",\n \"name\": \"Czech (Czech Republic)\"\n },\n {\n \"code\": \"da-dk\",\n \"name\": \"Danish (Denmark)\"\n },\n {\n \"code\": \"da-gl\",\n \"name\": \"Danish (Greenland)\"\n },\n {\n \"code\": \"nl-aw\",\n \"name\": \"Dutch (Aruba)\"\n },\n {\n \"code\": \"nl-be\",\n \"name\": \"Dutch (Belgium)\"\n },\n {\n \"code\": \"nl-bq\",\n \"name\": \"Dutch (Caribbean Netherlands)\"\n },\n {\n \"code\": \"nl-cw\",\n \"name\": \"Dutch (Curaçao)\"\n },\n {\n \"code\": \"nl-nl\",\n \"name\": \"Dutch (Netherlands)\"\n },\n {\n \"code\": \"nl-sx\",\n \"name\": \"Dutch (Sint Maarten)\"\n },\n {\n \"code\": \"nl-sr\",\n \"name\": \"Dutch (Suriname)\"\n },\n {\n \"code\": \"dz-bt\",\n \"name\": \"Dzongkha (Bhutan)\"\n },\n {\n \"code\": \"en-as\",\n \"name\": \"English (American Samoa)\"\n },\n {\n \"code\": \"en-ai\",\n \"name\": \"English (Anguilla)\"\n },\n {\n \"code\": \"en-ag\",\n \"name\": \"English (Antigua & Barbuda)\"\n },\n {\n \"code\": \"en-au\",\n \"name\": \"English (Australia)\"\n },\n {\n \"code\": \"en-bs\",\n \"name\": \"English (Bahamas)\"\n },\n {\n \"code\": \"en-bb\",\n \"name\": \"English (Barbados)\"\n },\n {\n \"code\": \"en-be\",\n \"name\": \"English (Belgium)\"\n },\n {\n \"code\": \"en-bz\",\n \"name\": \"English (Belize)\"\n },\n {\n \"code\": \"en-bm\",\n \"name\": \"English (Bermuda)\"\n },\n {\n \"code\": \"en-bw\",\n \"name\": \"English (Botswana)\"\n },\n {\n \"code\": \"en-io\",\n \"name\": \"English (British Indian Ocean Territory)\"\n },\n {\n \"code\": \"en-vg\",\n \"name\": \"English (British Virgin Islands)\"\n },\n {\n \"code\": \"en-cm\",\n \"name\": \"English (Cameroon)\"\n },\n {\n \"code\": \"en-ca\",\n \"name\": \"English (Canada)\"\n },\n {\n \"code\": \"en-ky\",\n \"name\": \"English (Cayman Islands)\"\n },\n {\n \"code\": \"en-cx\",\n \"name\": \"English (Christmas Island)\"\n },\n {\n \"code\": \"en-cc\",\n \"name\": \"English (Cocos (Keeling) Islands)\"\n },\n {\n \"code\": \"en-ck\",\n \"name\": \"English (Cook Islands)\"\n },\n {\n \"code\": \"en-dg\",\n \"name\": \"English (Diego Garcia)\"\n },\n {\n \"code\": \"en-dm\",\n \"name\": \"English (Dominica)\"\n },\n {\n \"code\": \"en-er\",\n \"name\": \"English (Eritrea)\"\n },\n {\n \"code\": \"en-fk\",\n \"name\": \"English (Falkland Islands)\"\n },\n {\n \"code\": \"en-fj\",\n \"name\": \"English (Fiji)\"\n },\n {\n \"code\": \"en-gm\",\n \"name\": \"English (Gambia)\"\n },\n {\n \"code\": \"en-gh\",\n \"name\": \"English (Ghana)\"\n },\n {\n \"code\": \"en-gi\",\n \"name\": \"English (Gibraltar)\"\n },\n {\n \"code\": \"en-gd\",\n \"name\": \"English (Grenada)\"\n },\n {\n \"code\": \"en-gu\",\n \"name\": \"English (Guam)\"\n },\n {\n \"code\": \"en-gg\",\n \"name\": \"English (Guernsey)\"\n },\n {\n \"code\": \"en-gy\",\n \"name\": \"English (Guyana)\"\n },\n {\n \"code\": \"en-hk\",\n \"name\": \"English (Hong Kong SAR China)\"\n },\n {\n \"code\": \"en-in\",\n \"name\": \"English (India)\"\n },\n {\n \"code\": \"en-ie\",\n \"name\": \"English (Ireland)\"\n },\n {\n \"code\": \"en-im\",\n \"name\": \"English (Isle of Man)\"\n },\n {\n \"code\": \"en-jm\",\n \"name\": \"English (Jamaica)\"\n },\n {\n \"code\": \"en-je\",\n \"name\": \"English (Jersey)\"\n },\n {\n \"code\": \"en-ke\",\n \"name\": \"English (Kenya)\"\n },\n {\n \"code\": \"en-ki\",\n \"name\": \"English (Kiribati)\"\n },\n {\n \"code\": \"en-ls\",\n \"name\": \"English (Lesotho)\"\n },\n {\n \"code\": \"en-lr\",\n \"name\": \"English (Liberia)\"\n },\n {\n \"code\": \"en-mo\",\n \"name\": \"English (Macau SAR China)\"\n },\n {\n \"code\": \"en-mg\",\n \"name\": \"English (Madagascar)\"\n },\n {\n \"code\": \"en-mw\",\n \"name\": \"English (Malawi)\"\n },\n {\n \"code\": \"en-my\",\n \"name\": \"English (Malaysia)\"\n },\n {\n \"code\": \"en-mt\",\n \"name\": \"English (Malta)\"\n },\n {\n \"code\": \"en-mh\",\n \"name\": \"English (Marshall Islands)\"\n },\n {\n \"code\": \"en-mu\",\n \"name\": \"English (Mauritius)\"\n },\n {\n \"code\": \"en-fm\",\n \"name\": \"English (Micronesia)\"\n },\n {\n \"code\": \"en-ms\",\n \"name\": \"English (Montserrat)\"\n },\n {\n \"code\": \"en-na\",\n \"name\": \"English (Namibia)\"\n },\n {\n \"code\": \"en-nr\",\n \"name\": \"English (Nauru)\"\n },\n {\n \"code\": \"en-nz\",\n \"name\": \"English (New Zealand)\"\n },\n {\n \"code\": \"en-ng\",\n \"name\": \"English (Nigeria)\"\n },\n {\n \"code\": \"en-nu\",\n \"name\": \"English (Niue)\"\n },\n {\n \"code\": \"en-nf\",\n \"name\": \"English (Norfolk Island)\"\n },\n {\n \"code\": \"en-mp\",\n \"name\": \"English (Northern Mariana Islands)\"\n },\n {\n \"code\": \"en-pk\",\n \"name\": \"English (Pakistan)\"\n },\n {\n \"code\": \"en-pw\",\n \"name\": \"English (Palau)\"\n },\n {\n \"code\": \"en-pg\",\n \"name\": \"English (Papua New Guinea)\"\n },\n {\n \"code\": \"en-ph\",\n \"name\": \"English (Philippines)\"\n },\n {\n \"code\": \"en-pn\",\n \"name\": \"English (Pitcairn Islands)\"\n },\n {\n \"code\": \"en-pr\",\n \"name\": \"English (Puerto Rico)\"\n },\n {\n \"code\": \"en-rw\",\n \"name\": \"English (Rwanda)\"\n },\n {\n \"code\": \"en-ws\",\n \"name\": \"English (Samoa)\"\n },\n {\n \"code\": \"en-sc\",\n \"name\": \"English (Seychelles)\"\n },\n {\n \"code\": \"en-sl\",\n \"name\": \"English (Sierra Leone)\"\n },\n {\n \"code\": \"en-sg\",\n \"name\": \"English (Singapore)\"\n },\n {\n \"code\": \"en-sx\",\n \"name\": \"English (Sint Maarten)\"\n },\n {\n \"code\": \"en-sb\",\n \"name\": \"English (Solomon Islands)\"\n },\n {\n \"code\": \"en-za\",\n \"name\": \"English (South Africa)\"\n },\n {\n \"code\": \"en-ss\",\n \"name\": \"English (South Sudan)\"\n },\n {\n \"code\": \"en-sh\",\n \"name\": \"English (St. Helena)\"\n },\n {\n \"code\": \"en-kn\",\n \"name\": \"English (St. Kitts & Nevis)\"\n },\n {\n \"code\": \"en-lc\",\n \"name\": \"English (St. Lucia)\"\n },\n {\n \"code\": \"en-vc\",\n \"name\": \"English (St. Vincent & Grenadines)\"\n },\n {\n \"code\": \"en-sd\",\n \"name\": \"English (Sudan)\"\n },\n {\n \"code\": \"en-sz\",\n \"name\": \"English (Swaziland)\"\n },\n {\n \"code\": \"en-tz\",\n \"name\": \"English (Tanzania)\"\n },\n {\n \"code\": \"en-tk\",\n \"name\": \"English (Tokelau)\"\n },\n {\n \"code\": \"en-to\",\n \"name\": \"English (Tonga)\"\n },\n {\n \"code\": \"en-tt\",\n \"name\": \"English (Trinidad & Tobago)\"\n },\n {\n \"code\": \"en-tc\",\n \"name\": \"English (Turks & Caicos Islands)\"\n },\n {\n \"code\": \"en-tv\",\n \"name\": \"English (Tuvalu)\"\n },\n {\n \"code\": \"en-um\",\n \"name\": \"English (U.S. Outlying Islands)\"\n },\n {\n \"code\": \"en-vi\",\n \"name\": \"English (U.S. Virgin Islands)\"\n },\n {\n \"code\": \"en-ug\",\n \"name\": \"English (Uganda)\"\n },\n {\n \"code\": \"en-gb\",\n \"name\": \"English (United Kingdom)\"\n },\n {\n \"code\": \"en-us\",\n \"name\": \"English (United States)\"\n },\n {\n \"code\": \"en-vu\",\n \"name\": \"English (Vanuatu)\"\n },\n {\n \"code\": \"en-zm\",\n \"name\": \"English (Zambia)\"\n },\n {\n \"code\": \"en-zw\",\n \"name\": \"English (Zimbabwe)\"\n },\n {\n \"code\": \"et-ee\",\n \"name\": \"Estonian (Estonia)\"\n },\n {\n \"code\": \"ee-gh\",\n \"name\": \"Ewe (Ghana)\"\n },\n {\n \"code\": \"ee-tg\",\n \"name\": \"Ewe (Togo)\"\n },\n {\n \"code\": \"fo-fo\",\n \"name\": \"Faroese (Faroe Islands)\"\n },\n {\n \"code\": \"fi-fi\",\n \"name\": \"Finnish (Finland)\"\n },\n {\n \"code\": \"fr-dz\",\n \"name\": \"French (Algeria)\"\n },\n {\n \"code\": \"fr-be\",\n \"name\": \"French (Belgium)\"\n },\n {\n \"code\": \"fr-bj\",\n \"name\": \"French (Benin)\"\n },\n {\n \"code\": \"fr-bf\",\n \"name\": \"French (Burkina Faso)\"\n },\n {\n \"code\": \"fr-bi\",\n \"name\": \"French (Burundi)\"\n },\n {\n \"code\": \"fr-cm\",\n \"name\": \"French (Cameroon)\"\n },\n {\n \"code\": \"fr-ca\",\n \"name\": \"French (Canada)\"\n },\n {\n \"code\": \"fr-cf\",\n \"name\": \"French (Central African Republic)\"\n },\n {\n \"code\": \"fr-td\",\n \"name\": \"French (Chad)\"\n },\n {\n \"code\": \"fr-km\",\n \"name\": \"French (Comoros)\"\n },\n {\n \"code\": \"fr-cg\",\n \"name\": \"French (Congo - Brazzaville)\"\n },\n {\n \"code\": \"fr-cd\",\n \"name\": \"French (Congo - Kinshasa)\"\n },\n {\n \"code\": \"fr-ci\",\n \"name\": \"French (Côte d\\u0092Ivoire)\"\n },\n {\n \"code\": \"fr-dj\",\n \"name\": \"French (Djibouti)\"\n },\n {\n \"code\": \"fr-gq\",\n \"name\": \"French (Equatorial Guinea)\"\n },\n {\n \"code\": \"fr-fr\",\n \"name\": \"French (France)\"\n },\n {\n \"code\": \"fr-gf\",\n \"name\": \"French (French Guiana)\"\n },\n {\n \"code\": \"fr-pf\",\n \"name\": \"French (French Polynesia)\"\n },\n {\n \"code\": \"fr-ga\",\n \"name\": \"French (Gabon)\"\n },\n {\n \"code\": \"fr-gp\",\n \"name\": \"French (Guadeloupe)\"\n },\n {\n \"code\": \"fr-gn\",\n \"name\": \"French (Guinea)\"\n },\n {\n \"code\": \"fr-ht\",\n \"name\": \"French (Haiti)\"\n },\n {\n \"code\": \"fr-lu\",\n \"name\": \"French (Luxembourg)\"\n },\n {\n \"code\": \"fr-mg\",\n \"name\": \"French (Madagascar)\"\n },\n {\n \"code\": \"fr-ml\",\n \"name\": \"French (Mali)\"\n },\n {\n \"code\": \"fr-mq\",\n \"name\": \"French (Martinique)\"\n },\n {\n \"code\": \"fr-mr\",\n \"name\": \"French (Mauritania)\"\n },\n {\n \"code\": \"fr-mu\",\n \"name\": \"French (Mauritius)\"\n },\n {\n \"code\": \"fr-yt\",\n \"name\": \"French (Mayotte)\"\n },\n {\n \"code\": \"fr-mc\",\n \"name\": \"French (Monaco)\"\n },\n {\n \"code\": \"fr-ma\",\n \"name\": \"French (Morocco)\"\n },\n {\n \"code\": \"fr-nc\",\n \"name\": \"French (New Caledonia)\"\n },\n {\n \"code\": \"fr-ne\",\n \"name\": \"French (Niger)\"\n },\n {\n \"code\": \"fr-rw\",\n \"name\": \"French (Rwanda)\"\n },\n {\n \"code\": \"fr-re\",\n \"name\": \"French (Réunion)\"\n },\n {\n \"code\": \"fr-sn\",\n \"name\": \"French (Senegal)\"\n },\n {\n \"code\": \"fr-sc\",\n \"name\": \"French (Seychelles)\"\n },\n {\n \"code\": \"fr-bl\",\n \"name\": \"French (St. Barthélemy)\"\n },\n {\n \"code\": \"fr-mf\",\n \"name\": \"French (St. Martin)\"\n },\n {\n \"code\": \"fr-pm\",\n \"name\": \"French (St. Pierre & Miquelon)\"\n },\n {\n \"code\": \"fr-ch\",\n \"name\": \"French (Switzerland)\"\n },\n {\n \"code\": \"fr-sy\",\n \"name\": \"French (Syria)\"\n },\n {\n \"code\": \"fr-tg\",\n \"name\": \"French (Togo)\"\n },\n {\n \"code\": \"fr-tn\",\n \"name\": \"French (Tunisia)\"\n },\n {\n \"code\": \"fr-vu\",\n \"name\": \"French (Vanuatu)\"\n },\n {\n \"code\": \"fr-wf\",\n \"name\": \"French (Wallis & Futuna)\"\n },\n {\n \"code\": \"ff-cm\",\n \"name\": \"Fulah (Cameroon)\"\n },\n {\n \"code\": \"ff-gn\",\n \"name\": \"Fulah (Guinea)\"\n },\n {\n \"code\": \"ff-mr\",\n \"name\": \"Fulah (Mauritania)\"\n },\n {\n \"code\": \"ff-sn\",\n \"name\": \"Fulah (Senegal)\"\n },\n {\n \"code\": \"gl-es\",\n \"name\": \"Galician (Spain)\"\n },\n {\n \"code\": \"lg-ug\",\n \"name\": \"Ganda (Uganda)\"\n },\n {\n \"code\": \"ka-ge\",\n \"name\": \"Georgian (Georgia)\"\n },\n {\n \"code\": \"de-at\",\n \"name\": \"German (Austria)\"\n },\n {\n \"code\": \"de-be\",\n \"name\": \"German (Belgium)\"\n },\n {\n \"code\": \"de-de\",\n \"name\": \"German (Germany)\"\n },\n {\n \"code\": \"de-li\",\n \"name\": \"German (Liechtenstein)\"\n },\n {\n \"code\": \"de-lu\",\n \"name\": \"German (Luxembourg)\"\n },\n {\n \"code\": \"de-ch\",\n \"name\": \"German (Switzerland)\"\n },\n {\n \"code\": \"el-cy\",\n \"name\": \"Greek (Cyprus)\"\n },\n {\n \"code\": \"el-gr\",\n \"name\": \"Greek (Greece)\"\n },\n {\n \"code\": \"gu-in\",\n \"name\": \"Gujarati (India)\"\n },\n {\n \"code\": \"ha-gh\",\n \"name\": \"Hausa (Ghana)\"\n },\n {\n \"code\": \"ha-latn\",\n \"name\": \"Hausa (Latin)\"\n },\n {\n \"code\": \"ha-latn-gh\",\n \"name\": \"Hausa (Latin, Ghana)\"\n },\n {\n \"code\": \"ha-latn-ne\",\n \"name\": \"Hausa (Latin, Niger)\"\n },\n {\n \"code\": \"ha-latn-ng\",\n \"name\": \"Hausa (Latin, Nigeria)\"\n },\n {\n \"code\": \"ha-ne\",\n \"name\": \"Hausa (Niger)\"\n },\n {\n \"code\": \"ha-ng\",\n \"name\": \"Hausa (Nigeria)\"\n },\n {\n \"code\": \"he-il\",\n \"name\": \"Hebrew (Israel)\"\n },\n {\n \"code\": \"hi-in\",\n \"name\": \"Hindi (India)\"\n },\n {\n \"code\": \"hu-hu\",\n \"name\": \"Hungarian (Hungary)\"\n },\n {\n \"code\": \"is-is\",\n \"name\": \"Icelandic (Iceland)\"\n },\n {\n \"code\": \"ig-ng\",\n \"name\": \"Igbo (Nigeria)\"\n },\n {\n \"code\": \"id-id\",\n \"name\": \"Indonesian (Indonesia)\"\n },\n {\n \"code\": \"ga-ie\",\n \"name\": \"Irish (Ireland)\"\n },\n {\n \"code\": \"it-it\",\n \"name\": \"Italian (Italy)\"\n },\n {\n \"code\": \"it-sm\",\n \"name\": \"Italian (San Marino)\"\n },\n {\n \"code\": \"it-ch\",\n \"name\": \"Italian (Switzerland)\"\n },\n {\n \"code\": \"ja-jp\",\n \"name\": \"Japanese (Japan)\"\n },\n {\n \"code\": \"kl-gl\",\n \"name\": \"Kalaallisut (Greenland)\"\n },\n {\n \"code\": \"kn-in\",\n \"name\": \"Kannada (India)\"\n },\n {\n \"code\": \"ks-arab\",\n \"name\": \"Kashmiri (Arabic)\"\n },\n {\n \"code\": \"ks-arab-in\",\n \"name\": \"Kashmiri (Arabic, India)\"\n },\n {\n \"code\": \"ks-in\",\n \"name\": \"Kashmiri (India)\"\n },\n {\n \"code\": \"kk-cyrl\",\n \"name\": \"Kazakh (Cyrillic)\"\n },\n {\n \"code\": \"kk-cyrl-kz\",\n \"name\": \"Kazakh (Cyrillic, Kazakhstan)\"\n },\n {\n \"code\": \"kk-kz\",\n \"name\": \"Kazakh (Kazakhstan)\"\n },\n {\n \"code\": \"km-kh\",\n \"name\": \"Khmer (Cambodia)\"\n },\n {\n \"code\": \"ki-ke\",\n \"name\": \"Kikuyu (Kenya)\"\n },\n {\n \"code\": \"rw-rw\",\n \"name\": \"Kinyarwanda (Rwanda)\"\n },\n {\n \"code\": \"ko-kp\",\n \"name\": \"Korean (North Korea)\"\n },\n {\n \"code\": \"ko-kr\",\n \"name\": \"Korean (South Korea)\"\n },\n {\n \"code\": \"ky-cyrl\",\n \"name\": \"Kyrgyz (Cyrillic)\"\n },\n {\n \"code\": \"ky-cyrl-kg\",\n \"name\": \"Kyrgyz (Cyrillic, Kyrgyzstan)\"\n },\n {\n \"code\": \"ky-kg\",\n \"name\": \"Kyrgyz (Kyrgyzstan)\"\n },\n {\n \"code\": \"lo-la\",\n \"name\": \"Lao (Laos)\"\n },\n {\n \"code\": \"lv-lv\",\n \"name\": \"Latvian (Latvia)\"\n },\n {\n \"code\": \"ln-ao\",\n \"name\": \"Lingala (Angola)\"\n },\n {\n \"code\": \"ln-cf\",\n \"name\": \"Lingala (Central African Republic)\"\n },\n {\n \"code\": \"ln-cg\",\n \"name\": \"Lingala (Congo - Brazzaville)\"\n },\n {\n \"code\": \"ln-cd\",\n \"name\": \"Lingala (Congo - Kinshasa)\"\n },\n {\n \"code\": \"lt-lt\",\n \"name\": \"Lithuanian (Lithuania)\"\n },\n {\n \"code\": \"lu-cd\",\n \"name\": \"Luba-Katanga (Congo - Kinshasa)\"\n },\n {\n \"code\": \"lb-lu\",\n \"name\": \"Luxembourgish (Luxembourg)\"\n },\n {\n \"code\": \"mk-mk\",\n \"name\": \"Macedonian (Macedonia)\"\n },\n {\n \"code\": \"mg-mg\",\n \"name\": \"Malagasy (Madagascar)\"\n },\n {\n \"code\": \"ms-bn\",\n \"name\": \"Malay (Brunei)\"\n },\n {\n \"code\": \"ms-latn\",\n \"name\": \"Malay (Latin)\"\n },\n {\n \"code\": \"ms-latn-bn\",\n \"name\": \"Malay (Latin, Brunei)\"\n },\n {\n \"code\": \"ms-latn-my\",\n \"name\": \"Malay (Latin, Malaysia)\"\n },\n {\n \"code\": \"ms-latn-sg\",\n \"name\": \"Malay (Latin, Singapore)\"\n },\n {\n \"code\": \"ms-my\",\n \"name\": \"Malay (Malaysia)\"\n },\n {\n \"code\": \"ms-sg\",\n \"name\": \"Malay (Singapore)\"\n },\n {\n \"code\": \"ml-in\",\n \"name\": \"Malayalam (India)\"\n },\n {\n \"code\": \"mt-mt\",\n \"name\": \"Maltese (Malta)\"\n },\n {\n \"code\": \"gv-im\",\n \"name\": \"Manx (Isle of Man)\"\n },\n {\n \"code\": \"mr-in\",\n \"name\": \"Marathi (India)\"\n },\n {\n \"code\": \"mn-cyrl\",\n \"name\": \"Mongolian (Cyrillic)\"\n },\n {\n \"code\": \"mn-cyrl-mn\",\n \"name\": \"Mongolian (Cyrillic, Mongolia)\"\n },\n {\n \"code\": \"mn-mn\",\n \"name\": \"Mongolian (Mongolia)\"\n },\n {\n \"code\": \"ne-in\",\n \"name\": \"Nepali (India)\"\n },\n {\n \"code\": \"ne-np\",\n \"name\": \"Nepali (Nepal)\"\n },\n {\n \"code\": \"nd-zw\",\n \"name\": \"North Ndebele (Zimbabwe)\"\n },\n {\n \"code\": \"se-fi\",\n \"name\": \"Northern Sami (Finland)\"\n },\n {\n \"code\": \"se-no\",\n \"name\": \"Northern Sami (Norway)\"\n },\n {\n \"code\": \"se-se\",\n \"name\": \"Northern Sami (Sweden)\"\n },\n {\n \"code\": \"no-no\",\n \"name\": \"Norwegian (Norway)\"\n },\n {\n \"code\": \"nb-no\",\n \"name\": \"Norwegian Bokmål (Norway)\"\n },\n {\n \"code\": \"nb-sj\",\n \"name\": \"Norwegian Bokmål (Svalbard & Jan Mayen)\"\n },\n {\n \"code\": \"nn-no\",\n \"name\": \"Norwegian Nynorsk (Norway)\"\n },\n {\n \"code\": \"or-in\",\n \"name\": \"Oriya (India)\"\n },\n {\n \"code\": \"om-et\",\n \"name\": \"Oromo (Ethiopia)\"\n },\n {\n \"code\": \"om-ke\",\n \"name\": \"Oromo (Kenya)\"\n },\n {\n \"code\": \"os-ge\",\n \"name\": \"Ossetic (Georgia)\"\n },\n {\n \"code\": \"os-ru\",\n \"name\": \"Ossetic (Russia)\"\n },\n {\n \"code\": \"ps-af\",\n \"name\": \"Pashto (Afghanistan)\"\n },\n {\n \"code\": \"fa-af\",\n \"name\": \"Persian (Afghanistan)\"\n },\n {\n \"code\": \"fa-ir\",\n \"name\": \"Persian (Iran)\"\n },\n {\n \"code\": \"pl-pl\",\n \"name\": \"Polish (Poland)\"\n },\n {\n \"code\": \"pt-ao\",\n \"name\": \"Portuguese (Angola)\"\n },\n {\n \"code\": \"pt-br\",\n \"name\": \"Portuguese (Brazil)\"\n },\n {\n \"code\": \"pt-cv\",\n \"name\": \"Portuguese (Cape Verde)\"\n },\n {\n \"code\": \"pt-gw\",\n \"name\": \"Portuguese (Guinea-Bissau)\"\n },\n {\n \"code\": \"pt-mo\",\n \"name\": \"Portuguese (Macau SAR China)\"\n },\n {\n \"code\": \"pt-mz\",\n \"name\": \"Portuguese (Mozambique)\"\n },\n {\n \"code\": \"pt-pt\",\n \"name\": \"Portuguese (Portugal)\"\n },\n {\n \"code\": \"pt-st\",\n \"name\": \"Portuguese (São Tomé & Príncipe)\"\n },\n {\n \"code\": \"pt-tl\",\n \"name\": \"Portuguese (Timor-Leste)\"\n },\n {\n \"code\": \"pa-arab\",\n \"name\": \"Punjabi (Arabic)\"\n },\n {\n \"code\": \"pa-arab-pk\",\n \"name\": \"Punjabi (Arabic, Pakistan)\"\n },\n {\n \"code\": \"pa-guru\",\n \"name\": \"Punjabi (Gurmukhi)\"\n },\n {\n \"code\": \"pa-guru-in\",\n \"name\": \"Punjabi (Gurmukhi, India)\"\n },\n {\n \"code\": \"pa-in\",\n \"name\": \"Punjabi (India)\"\n },\n {\n \"code\": \"pa-pk\",\n \"name\": \"Punjabi (Pakistan)\"\n },\n {\n \"code\": \"qu-bo\",\n \"name\": \"Quechua (Bolivia)\"\n },\n {\n \"code\": \"qu-ec\",\n \"name\": \"Quechua (Ecuador)\"\n },\n {\n \"code\": \"qu-pe\",\n \"name\": \"Quechua (Peru)\"\n },\n {\n \"code\": \"ro-md\",\n \"name\": \"Romanian (Moldova)\"\n },\n {\n \"code\": \"ro-ro\",\n \"name\": \"Romanian (Romania)\"\n },\n {\n \"code\": \"rm-ch\",\n \"name\": \"Romansh (Switzerland)\"\n },\n {\n \"code\": \"rn-bi\",\n \"name\": \"Rundi (Burundi)\"\n },\n {\n \"code\": \"ru-by\",\n \"name\": \"Russian (Belarus)\"\n },\n {\n \"code\": \"ru-kz\",\n \"name\": \"Russian (Kazakhstan)\"\n },\n {\n \"code\": \"ru-kg\",\n \"name\": \"Russian (Kyrgyzstan)\"\n },\n {\n \"code\": \"ru-md\",\n \"name\": \"Russian (Moldova)\"\n },\n {\n \"code\": \"ru-ru\",\n \"name\": \"Russian (Russia)\"\n },\n {\n \"code\": \"ru-ua\",\n \"name\": \"Russian (Ukraine)\"\n },\n {\n \"code\": \"sg-cf\",\n \"name\": \"Sango (Central African Republic)\"\n },\n {\n \"code\": \"gd-gb\",\n \"name\": \"Scottish Gaelic (United Kingdom)\"\n },\n {\n \"code\": \"sr-ba\",\n \"name\": \"Serbian (Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"sr-cyrl\",\n \"name\": \"Serbian (Cyrillic)\"\n },\n {\n \"code\": \"sr-cyrl-ba\",\n \"name\": \"Serbian (Cyrillic, Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"sr-cyrl-xk\",\n \"name\": \"Serbian (Cyrillic, Kosovo)\"\n },\n {\n \"code\": \"sr-cyrl-me\",\n \"name\": \"Serbian (Cyrillic, Montenegro)\"\n },\n {\n \"code\": \"sr-cyrl-rs\",\n \"name\": \"Serbian (Cyrillic, Serbia)\"\n },\n {\n \"code\": \"sr-xk\",\n \"name\": \"Serbian (Kosovo)\"\n },\n {\n \"code\": \"sr-latn\",\n \"name\": \"Serbian (Latin)\"\n },\n {\n \"code\": \"sr-latn-ba\",\n \"name\": \"Serbian (Latin, Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"sr-latn-xk\",\n \"name\": \"Serbian (Latin, Kosovo)\"\n },\n {\n \"code\": \"sr-latn-me\",\n \"name\": \"Serbian (Latin, Montenegro)\"\n },\n {\n \"code\": \"sr-latn-rs\",\n \"name\": \"Serbian (Latin, Serbia)\"\n },\n {\n \"code\": \"sr-me\",\n \"name\": \"Serbian (Montenegro)\"\n },\n {\n \"code\": \"sr-rs\",\n \"name\": \"Serbian (Serbia)\"\n },\n {\n \"code\": \"sh-ba\",\n \"name\": \"Serbo-Croatian (Bosnia & Herzegovina)\"\n },\n {\n \"code\": \"sn-zw\",\n \"name\": \"Shona (Zimbabwe)\"\n },\n {\n \"code\": \"ii-cn\",\n \"name\": \"Sichuan Yi (China)\"\n },\n {\n \"code\": \"si-lk\",\n \"name\": \"Sinhala (Sri Lanka)\"\n },\n {\n \"code\": \"sk-sk\",\n \"name\": \"Slovak (Slovakia)\"\n },\n {\n \"code\": \"sl-si\",\n \"name\": \"Slovenian (Slovenia)\"\n },\n {\n \"code\": \"so-dj\",\n \"name\": \"Somali (Djibouti)\"\n },\n {\n \"code\": \"so-et\",\n \"name\": \"Somali (Ethiopia)\"\n },\n {\n \"code\": \"so-ke\",\n \"name\": \"Somali (Kenya)\"\n },\n {\n \"code\": \"so-so\",\n \"name\": \"Somali (Somalia)\"\n },\n {\n \"code\": \"es-ar\",\n \"name\": \"Spanish (Argentina)\"\n },\n {\n \"code\": \"es-bo\",\n \"name\": \"Spanish (Bolivia)\"\n },\n {\n \"code\": \"es-ic\",\n \"name\": \"Spanish (Canary Islands)\"\n },\n {\n \"code\": \"es-ea\",\n \"name\": \"Spanish (Ceuta & Melilla)\"\n },\n {\n \"code\": \"es-cl\",\n \"name\": \"Spanish (Chile)\"\n },\n {\n \"code\": \"es-co\",\n \"name\": \"Spanish (Colombia)\"\n },\n {\n \"code\": \"es-cr\",\n \"name\": \"Spanish (Costa Rica)\"\n },\n {\n \"code\": \"es-cu\",\n \"name\": \"Spanish (Cuba)\"\n },\n {\n \"code\": \"es-do\",\n \"name\": \"Spanish (Dominican Republic)\"\n },\n {\n \"code\": \"es-ec\",\n \"name\": \"Spanish (Ecuador)\"\n },\n {\n \"code\": \"es-sv\",\n \"name\": \"Spanish (El Salvador)\"\n },\n {\n \"code\": \"es-gq\",\n \"name\": \"Spanish (Equatorial Guinea)\"\n },\n {\n \"code\": \"es-gt\",\n \"name\": \"Spanish (Guatemala)\"\n },\n {\n \"code\": \"es-hn\",\n \"name\": \"Spanish (Honduras)\"\n },\n {\n \"code\": \"es-mx\",\n \"name\": \"Spanish (Mexico)\"\n },\n {\n \"code\": \"es-ni\",\n \"name\": \"Spanish (Nicaragua)\"\n },\n {\n \"code\": \"es-pa\",\n \"name\": \"Spanish (Panama)\"\n },\n {\n \"code\": \"es-py\",\n \"name\": \"Spanish (Paraguay)\"\n },\n {\n \"code\": \"es-pe\",\n \"name\": \"Spanish (Peru)\"\n },\n {\n \"code\": \"es-ph\",\n \"name\": \"Spanish (Philippines)\"\n },\n {\n \"code\": \"es-pr\",\n \"name\": \"Spanish (Puerto Rico)\"\n },\n {\n \"code\": \"es-es\",\n \"name\": \"Spanish (Spain)\"\n },\n {\n \"code\": \"es-us\",\n \"name\": \"Spanish (United States)\"\n },\n {\n \"code\": \"es-uy\",\n \"name\": \"Spanish (Uruguay)\"\n },\n {\n \"code\": \"es-ve\",\n \"name\": \"Spanish (Venezuela)\"\n },\n {\n \"code\": \"sw-ke\",\n \"name\": \"Swahili (Kenya)\"\n },\n {\n \"code\": \"sw-tz\",\n \"name\": \"Swahili (Tanzania)\"\n },\n {\n \"code\": \"sw-ug\",\n \"name\": \"Swahili (Uganda)\"\n },\n {\n \"code\": \"sv-fi\",\n \"name\": \"Swedish (Finland)\"\n },\n {\n \"code\": \"sv-se\",\n \"name\": \"Swedish (Sweden)\"\n },\n {\n \"code\": \"sv-ax\",\n \"name\": \"Swedish (Åland Islands)\"\n },\n {\n \"code\": \"tl-ph\",\n \"name\": \"Tagalog (Philippines)\"\n },\n {\n \"code\": \"ta-in\",\n \"name\": \"Tamil (India)\"\n },\n {\n \"code\": \"ta-my\",\n \"name\": \"Tamil (Malaysia)\"\n },\n {\n \"code\": \"ta-sg\",\n \"name\": \"Tamil (Singapore)\"\n },\n {\n \"code\": \"ta-lk\",\n \"name\": \"Tamil (Sri Lanka)\"\n },\n {\n \"code\": \"te-in\",\n \"name\": \"Telugu (India)\"\n },\n {\n \"code\": \"th-th\",\n \"name\": \"Thai (Thailand)\"\n },\n {\n \"code\": \"bo-cn\",\n \"name\": \"Tibetan (China)\"\n },\n {\n \"code\": \"bo-in\",\n \"name\": \"Tibetan (India)\"\n },\n {\n \"code\": \"ti-er\",\n \"name\": \"Tigrinya (Eritrea)\"\n },\n {\n \"code\": \"ti-et\",\n \"name\": \"Tigrinya (Ethiopia)\"\n },\n {\n \"code\": \"to-to\",\n \"name\": \"Tongan (Tonga)\"\n },\n {\n \"code\": \"tr-cy\",\n \"name\": \"Turkish (Cyprus)\"\n },\n {\n \"code\": \"tr-tr\",\n \"name\": \"Turkish (Turkey)\"\n },\n {\n \"code\": \"uk-ua\",\n \"name\": \"Ukrainian (Ukraine)\"\n },\n {\n \"code\": \"ur-in\",\n \"name\": \"Urdu (India)\"\n },\n {\n \"code\": \"ur-pk\",\n \"name\": \"Urdu (Pakistan)\"\n },\n {\n \"code\": \"ug-arab\",\n \"name\": \"Uyghur (Arabic)\"\n },\n {\n \"code\": \"ug-arab-cn\",\n \"name\": \"Uyghur (Arabic, China)\"\n },\n {\n \"code\": \"ug-cn\",\n \"name\": \"Uyghur (China)\"\n },\n {\n \"code\": \"uz-af\",\n \"name\": \"Uzbek (Afghanistan)\"\n },\n {\n \"code\": \"uz-arab\",\n \"name\": \"Uzbek (Arabic)\"\n },\n {\n \"code\": \"uz-arab-af\",\n \"name\": \"Uzbek (Arabic, Afghanistan)\"\n },\n {\n \"code\": \"uz-cyrl\",\n \"name\": \"Uzbek (Cyrillic)\"\n },\n {\n \"code\": \"uz-cyrl-uz\",\n \"name\": \"Uzbek (Cyrillic, Uzbekistan)\"\n },\n {\n \"code\": \"uz-latn\",\n \"name\": \"Uzbek (Latin)\"\n },\n {\n \"code\": \"uz-latn-uz\",\n \"name\": \"Uzbek (Latin, Uzbekistan)\"\n },\n {\n \"code\": \"uz-uz\",\n \"name\": \"Uzbek (Uzbekistan)\"\n },\n {\n \"code\": \"vi-vn\",\n \"name\": \"Vietnamese (Vietnam)\"\n },\n {\n \"code\": \"cy-gb\",\n \"name\": \"Welsh (United Kingdom)\"\n },\n {\n \"code\": \"fy-nl\",\n \"name\": \"Western Frisian (Netherlands)\"\n },\n {\n \"code\": \"yo-bj\",\n \"name\": \"Yoruba (Benin)\"\n },\n {\n \"code\": \"yo-ng\",\n \"name\": \"Yoruba (Nigeria)\"\n },\n {\n \"code\": \"zu-za\",\n \"name\": \"Zulu (South Africa)\"\n }\n ]\n },\n \"is_rsvp_open\": true,\n \"event_workflow\": null,\n \"form\": {\n \"isInLibrary\": false\n }\n },\n \"success\": true\n}"}],"_postman_id":"2d121a2e-3c73-4276-9acc-70278208b91c"},{"name":"Update an Event","id":"73f83da3-9952-4300-9b15-cb2f12bad8d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"title\": \"The Birthday of the Millennium\",\n \"domain\": \"https://millenniumbirthday.splashthat.com\",\n \"start_time\": \"your_start_time\",\n \"end_time\": \"your_end_time\",\n \"venue\": {\n \"name\": \"Super Delicious Restaurant\",\n \"address\": \"101 Dope Avenue\",\n \"city\": \"New York City\",\n \"region\": \"New York\",\n \"country\": \"USA\",\n \"postal_code\": \"1234567\",\n \"lat\": \"your_latitutde\",\n \"lon\": \"your_longitude\"\n },\n \"type\": \"Birthday\",\n \"event_host\": \"Quinn Soutar\",\n \"status\": \"your_status\",\n \"page_action\": \"RSVP\",\n \"tags\": \"Birthday, Party, Dinner\",\n \"waitlist\": true,\n \"currency\": \"USD\",\n \"meta_title\": \"your_meta_title\",\n \"meta_description\": \"your_meta_desc\",\n \"meta_calendar_description\": \"your_meta_cal\",\n \"favicon_url\": \"your_favicon_url\",\n \"no_index\": true,\n \"limit_one_per_email\": true,\n \"is_invite_only\": true,\n \"page_password\": \"your_page_password\",\n \"page_privacy_type\": \"Public\",\n \"require_captcha\": true,\n \"facebook_title\": \"your_facebook_title\",\n \"facebook_description\": \"your_facebook_description\",\n \"twitter_default\": \"your_twitter_default\",\n \"linkedin_title\": \"your_linkedin_title\",\n \"linkedin_description\": \"your_linkedin_description\",\n \"hashtag\": \"#millenniumbirthday\",\n \"salesforce_campaign_id\": \"campaign_id_for_sfdc_integration\",\n \"sessions_overlap\": true,\n \"registration_updating_enabled\": true,\n \"registration_updating_deadline\": 0,\n \"splash_hub_auto_subscribe\": true,\n \"email_white_label_key\": \"your_key\"\n }"},"url":"https://api.splashthat.com/events/:event_id/settings","description":"Use this endpoint to update and make changes to an existing Event with a known ID. Specify an Event ID in the path, then format the new Event information as JSON in the message body. See the example body to see the types of fields available to be updated.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"The ID of the event you would like to update.
\n","type":"text/plain"},"type":"string","value":"{{my_event_id}}","key":"event_id"}]}},"response":[{"id":"78cfbb84-8be7-4a3d-8d68-fc6d91f9181e","name":"Update an Event's Information","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"venue\": {\n \"name\": \"Storms Office\"\n }\n}\n"},"url":{"raw":"https://api.splashthat.com/events/:event_id/settings","host":["https://api.splashthat.com"],"path":["events",":event_id","settings"],"variable":[{"key":"event_id","value":"457443340"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 20:39:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"title\": \"Storm's Office Hours\",\n \"domain\": \"stormsofficehours\",\n \"custom_domain\": \"\",\n \"paid_for_domain\": false,\n \"white_label\": 1,\n \"start_time\": \"2025-05-15T13:00:00\",\n \"end_time\": null,\n \"venue\": {\n \"name\": \"Storms Office\",\n \"address\": null,\n \"city\": null,\n \"region\": null,\n \"country\": null,\n \"postal_code\": null,\n \"lat\": null,\n \"lon\": null\n },\n \"type\": \"Office Hours\",\n \"event_host\": \"Quinn API\",\n \"status\": \"tminus0hours\",\n \"page_action\": \"collect\",\n \"tags\": [\n \"Study\"\n ],\n \"waitlist\": false,\n \"currency\": \"USD\",\n \"meta_title\": null,\n \"meta_description\": null,\n \"meta_calendar_description\": null,\n \"favicon_url\": \"\",\n \"no_index\": false,\n \"limit_one_per_email\": false,\n \"is_invite_only\": false,\n \"page_password\": null,\n \"page_privacy_type\": \"none\",\n \"require_captcha\": false,\n \"facebook_title\": null,\n \"facebook_description\": null,\n \"twitter_default\": null,\n \"linkedin_title\": null,\n \"linkedin_description\": null,\n \"hashtag\": \"#MadisonV2\",\n \"salesforce_campaign_id\": \"\",\n \"sessions_overlap\": false,\n \"share_image_url\": \"\",\n \"time_zone_id\": 1,\n \"invite_link_privacy_bypass\": false,\n \"registration_updating_enabled\": false,\n \"registration_updating_deadline\": 0,\n \"splash_hub_auto_subscribe\": 0,\n \"form_email_domain_restriction\": null,\n \"email_white_label_key\": null,\n \"description_text\": \"\",\n \"user\": {\n \"event_types\": [\n {\n \"id\": 18865,\n \"name\": \"Concert\"\n },\n {\n \"id\": 18867,\n \"name\": \"Networking Event\"\n },\n {\n \"id\": 18868,\n \"name\": \"Conference\"\n },\n {\n \"id\": 18870,\n \"name\": \"Launch Event\"\n },\n {\n \"id\": 18871,\n \"name\": \"Recruiting Event\"\n },\n {\n \"id\": 18872,\n \"name\": \"Sweepstakes\"\n },\n {\n \"id\": 18874,\n \"name\": \"Birthday\"\n },\n {\n \"id\": 18875,\n \"name\": \"Other\"\n },\n {\n \"id\": 24548,\n \"name\": \"Happy Hours\"\n },\n {\n \"id\": 24549,\n \"name\": \"Exhibits & Shows\"\n },\n {\n \"id\": 24550,\n \"name\": \"Party Just to Party\"\n },\n {\n \"id\": 24551,\n \"name\": \"Seminars & Workshops\"\n },\n {\n \"id\": 32649,\n \"name\": \"In-Store Engagement\"\n }\n ]\n },\n \"is_rsvp_open\": true\n },\n \"success\": true\n}"},{"id":"da7e0d56-5ffb-4f8f-b7ab-2646e1e2177f","name":"Invalid JSON","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"cofee\": {\n \"roast\": \"medium\"\n }\n}\n"},"url":{"raw":"https://api.splashthat.com/events/:event_id/settings","host":["https://api.splashthat.com"],"path":["events",":event_id","settings"],"variable":[{"key":"event_id","value":"457443340"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 20:40:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 500,\n \"message\": \"Internal Server Error\",\n \"errors\": null\n },\n \"data\": {\n \"errors\": [\n {\n \"message\": \"The object must not contain additional properties ([\\\"cofee\\\"]).\",\n \"keyword\": \"additionalProperties\",\n \"parameter\": false,\n \"data\": {\n \"cofee\": {\n \"roast\": \"medium\"\n }\n },\n \"data_path\": \"/\",\n \"schema\": {\n \"title\": \"Event Settings Payload\",\n \"type\": \"object\",\n \"additional_properties\": false,\n \"properties\": {\n \"title\": {\n \"description\": \"Event Title\",\n \"type\": \"string\"\n },\n \"domain\": {\n \"description\": \"Event Domain (.splashthat.com)\",\n \"type\": \"string\"\n },\n \"custom_domain\": {\n \"description\": \"Event Custom Domain (customdomain.tld)\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"paid_for_domain\": {\n \"description\": \"Event has a paid for Domain\",\n \"type\": \"boolean\",\n \"default\": false\n },\n \"white_label\": {\n \"description\": \"Event white labeling of Splash branding\",\n \"type\": [\n \"number\"\n ]\n },\n \"start_time\": {\n \"description\": \"Event Start Date & Time\",\n \"type\": [\n \"string\",\n \"null\"\n ],\n \"format\": \"date-time\"\n },\n \"end_time\": {\n \"description\": \"Event End Date & Time\",\n \"type\": [\n \"string\",\n \"null\"\n ],\n \"format\": \"date-time\"\n },\n \"time_zone_id\": {\n \"description\": \"Event Timezone\",\n \"type\": [\n \"string\",\n \"number\",\n \"null\"\n ]\n },\n \"invite_link_privacy_bypass\": {\n \"description\": \"Invite Links Bypass Privacy Filters\",\n \"type\": \"boolean\"\n },\n \"venue\": {\n \"description\": \"Event Venue Information\",\n \"type\": [\n \"object\",\n \"null\"\n ],\n \"additional_properties\": false,\n \"properties\": {\n \"name\": {\n \"description\": \"My Basement\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"address\": {\n \"description\": \"45 Park Street\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"city\": {\n \"description\": \"Memphis\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"region\": {\n \"description\": \"TN\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"country\": {\n \"description\": \"United States\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"postal_code\": {\n \"description\": \"01824\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"lat\": {\n \"description\": \"44.82\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"lon\": {\n \"description\": \"48.82\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n }\n }\n },\n \"type\": {\n \"description\": \"Event Type (Party, Big Party, Reallllly Big Party)\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"event_host\": {\n \"description\": \"The name of the person hosting the event\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"status\": {\n \"description\": \"Event Status\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"page_action\": {\n \"description\": \"Event Page Action\",\n \"type\": \"string\",\n \"enum\": [\n \"collect\",\n \"tickets\",\n \"link\"\n ],\n \"default\": \"collect\"\n },\n \"tags\": {\n \"description\": \"Event Tags\",\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"waitlist\": {\n \"description\": \"Event Page Action Goes to Waitlist\",\n \"type\": \"boolean\"\n },\n \"currency\": {\n \"description\": \"Event Currency, Default: USD\",\n \"type\": [\n \"string\"\n ]\n },\n \"meta_title\": {\n \"description\": \"Event Meta Title\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"meta_description\": {\n \"description\": \"Event Meta Description\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"meta_calendar_description\": {\n \"description\": \"Event Meta Calendar Description\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"favicon_url\": {\n \"description\": \"Event Favicon URL\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"no_index\": {\n \"description\": \"Event No-Index For Search Engines\",\n \"type\": \"boolean\",\n \"default\": false\n },\n \"limit_one_per_email\": {\n \"description\": \"Event RSVP Limit One Per Email\",\n \"type\": \"boolean\"\n },\n \"is_invite_only\": {\n \"description\": \"Event RSVP is Invite-Only\",\n \"type\": \"boolean\"\n },\n \"page_password\": {\n \"description\": \"Event Page Password\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"page_privacy_type\": {\n \"description\": \"Event Page Privacy Type\",\n \"type\": [\n \"string\",\n \"null\"\n ],\n \"enum\": [\n \"none\",\n \"all\",\n \"min_age_18\",\n \"min_age\",\n \"attendee_sso_login\",\n \"invite_list\",\n \"when_where_rsvp\",\n \"splash_locked\",\n null,\n \"\"\n ],\n \"default\": \"none\"\n },\n \"require_captcha\": {\n \"description\": \"Event Requires Captcha for Page Action\",\n \"type\": \"boolean\",\n \"default\": false\n },\n \"facebook_title\": {\n \"description\": \"Facebook Title\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"facebook_description\": {\n \"description\": \"Facebook Description\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"twitter_default\": {\n \"description\": \"Twitter Default Tweet Body\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"linkedin_title\": {\n \"description\": \"LinkedIn Title\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"linkedin_description\": {\n \"description\": \"LinkedIn Description\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"hashtag\": {\n \"description\": \"Event Hashtag\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"salesforce_campaign_id\": {\n \"description\": \"Salesforce Campapaign ID\",\n \"type\": [\n \"string\",\n \"number\",\n \"null\"\n ]\n },\n \"sessions_overlap\": {\n \"description\": \"Sessions Overlap\",\n \"type\": \"boolean\",\n \"default\": false\n },\n \"share_image_url\": {\n \"description\": \"Share Image Url\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n },\n \"registration_updating_enabled\": {\n \"description\": \"If attendees are allowed to update their registration\",\n \"type\": [\n \"boolean\",\n \"null\"\n ]\n },\n \"registration_updating_deadline\": {\n \"description\": \"How many hours before an event are attendees allowed to update their registration\",\n \"type\": [\n \"string\",\n \"number\",\n \"null\"\n ]\n },\n \"splash_hub_auto_subscribe\": {\n \"description\": \"Option to auto-subscribe anyone who subscribes to an event within this Hub is available\",\n \"type\": [\n \"boolean\",\n \"number\"\n ]\n },\n \"form_email_domain_restriction\": {\n \"description\": \"Email domain restriction settings\",\n \"type\": [\n \"object\",\n \"null\"\n ],\n \"additional_properties\": false,\n \"properties\": {\n \"restriction_mode\": {\n \"description\": \"Email restriction mode\",\n \"type\": \"string\",\n \"enum\": [\n \"off\",\n \"whitelist\",\n \"blacklist\"\n ]\n },\n \"domains\": {\n \"description\": \"Domain list to restrict\",\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"only_main_email\": {\n \"description\": \"Apply only to main guest email\",\n \"type\": \"boolean\"\n }\n }\n },\n \"email_white_label_key\": {\n \"description\": \"The email white label value for the event, from the organization's possible values\",\n \"type\": [\n \"string\",\n \"null\"\n ],\n \"default\": null\n },\n \"description_text\": {\n \"description\": \"Event Description text\",\n \"type\": [\n \"string\",\n \"null\"\n ]\n }\n }\n },\n \"schema_path\": \"/additionalProperties\",\n \"cause\": [\n \"cofee\"\n ]\n }\n ]\n }\n}"}],"_postman_id":"73f83da3-9952-4300-9b15-cb2f12bad8d8"},{"name":"Delete Event","id":"3e920bc3-2465-4405-a5ff-9e2dee99b8c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"body":{"mode":"raw","raw":"{\n \"ids\": [\n 1234,\n 5678,\n 9012\n ]\n}"},"url":"https://api.splashthat.com/events","description":"Use this endpoint to batch delete Events within your organization. The Events to be deleted should be sent as JSON, with an \"ids\" array containing each of the desired Event IDs. See the example below.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"This endpoint is used to update the workflow status of an event approval flow, using the workflow ID of that event. You can find the workflow ID for an event in the payload from the /events endpoint in the workflowId field. It will need to be explicitly included in the payload by adding the URL viewGroups[]=eventWorkflow URL parameter. This will include a new section called \"event_workflow\" that will include both the workflow ID and the status.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"A UUID formatted string that can be retrieved from the /events endpoint payload.
\n","type":"text/plain"},"type":"string","value":"some_workflow_id","key":"workflow_id"},{"description":{"content":"A string with a fixed value of either approved or declined.
\n","type":"text/plain"},"type":"string","value":"approved","key":"status"}]}},"response":[{"id":"fcd5f314-65a0-4e13-96dc-3724ebf0dea9","name":"Approved Event","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.splashthat.com/workflows/:workflow_id/status/:status?access_token={{access_token}}","host":["https://api.splashthat.com"],"path":["workflows",":workflow_id","status",":status"],"query":[{"key":"access_token","value":"{{access_token}}"}],"variable":[{"description":"A UUID formatted string that can be retrieved from the /events endpoint payload. ","key":"workflow_id","value":"0212d6a0-fdad-11ea-be23-d7767e14ad3b"},{"description":"A string with a fixed value of either approved or declined.","key":"status","value":"approved"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 23 Sep 2020 16:16:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"data\": {\n \"id\": \"0212d6a0-fdad-11ea-be23-d7767e14ad3b\",\n \"workflowTypeId\": \"a3bb2f90-fdab-11ea-be23-d7767e14ad3b\",\n \"entityId\": \"457932652\",\n \"status\": \"approved\",\n \"data\": {\n \"requesterUser\": 434719,\n \"approverGroups\": [\n 12701\n ]\n },\n \"createdAt\": \"2020-09-23T14:56:49.000Z\",\n \"updatedAt\": \"2020-09-23T16:16:57.808Z\",\n \"deletedAt\": null,\n \"history\": [\n {\n \"status\": \"pending_approval\",\n \"date\": \"2020-09-23T14:56:49.000Z\",\n \"user\": {\n \"id\": 434719,\n \"firstName\": \"Peter\",\n \"lastName\": \"Parker\",\n \"email\": \"spiderman@splashthat.com\"\n }\n },\n {\n \"status\": \"approved\",\n \"date\": \"2020-09-23T16:16:57.000Z\",\n \"user\": {\n \"id\": 320977,\n \"firstName\": \"Peter\",\n \"lastName\": \"Parker\",\n \"email\": \"spiderman@splashthat.com\"\n }\n }\n ]\n },\n \"meta\": {\n \"code\": 200\n },\n \"success\": true\n}"}],"_postman_id":"e5e879d0-b134-4b47-adb8-d976b16af320"}],"id":"e4a89f97-4ae1-423c-a633-d96e3cfc418e","description":"Event objects in Splash are interacted with via the /events endpoint. A number of operations can be carried out here:
\nUse this header to send your access token.
\n","type":"text"}],"url":"https://api.splashthat.com/groupcontact/:group_contact_id","description":"You can retrieve a single group contact if their group contact ID is known. It is a simple GET request with no other parameters necessary. Splash responds with a JSON payload detailing the attendee.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"The group contact ID of the individual for which you would like to retrieve data.
\n","type":"text/plain"},"type":"string","value":"{{group_contact_id}}","key":"group_contact_id"}]}},"response":[{"id":"e3a7a48d-5ec8-417d-a582-0793f8759037","name":"Retrieve a single attendee","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/groupcontact/:group_contact_id","host":["https://api.splashthat.com"],"path":["groupcontact",":group_contact_id"],"query":[{"key":"event_id","value":"{{event_id}}","disabled":true},{"key":"limit","value":"5","disabled":true},{"key":"page","value":"1","disabled":true},{"key":"sort","value":"groupContact.id+DESC","disabled":true},{"key":"status[]","value":"checkin_yes","disabled":true},{"key":"text_filter","value":"","type":"text","disabled":true},{"key":"event_rsvp_conditions[]","value":"checkin_yes","type":"text","disabled":true},{"key":"custom_question_ids","value":"","type":"text","disabled":true},{"key":"statistics","value":"","type":"text","disabled":true},{"key":"additional_columns","value":"","type":"text","disabled":true},{"key":"view_groups","value":"","type":"text","disabled":true}],"variable":[{"key":"group_contact_id","value":"{{group_contact_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 17:24:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 255394544,\n \"contact\": {\n \"id\": 77135879,\n \"last_name\": \"Maximoff\",\n \"first_name\": \"Pietro\",\n \"primary_email\": \"quicksilver1025@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443344,\n \"contact_id\": 77135879,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367196,\n \"first_name\": \"Pietro\",\n \"last_name\": \"Maximoff\",\n \"guest_name\": null,\n \"email\": \"quicksilver1025@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:27:34-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"date_rsvped\": \"2019-09-10T17:27:34-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"497619b30f36d65c\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"cyclopsbigexam.splashthat.com/tc/497619b30f36d65c\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:18:37-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n \"success\": true\n}"}],"_postman_id":"417babba-01b8-4bb1-8237-ef8940eb2c09"},{"name":"Group Contacts for One Event","id":"98d629dc-3435-4a84-a050-c21af8b976ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"url":"https://api.splashthat.com/groupcontacts?event_id={{event_id}}&limit=5&page=1&sort={{sort_type}}&status[0]={{guest_status}}&text_filter={{search_string}}&additional_columns[0]={{column_name}}","description":"Using an event ID, you can retrieve the group contacts just for that specific event. Additionally, pagination and other filters can be applied to better navigate the response data.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"The ID of the event for which you would like to see the group contacts (attendees).
\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"},{"description":{"content":"Limits how many group contacts are returned. If no limit is specified, Splash will default to 5.
\n","type":"text/plain"},"key":"limit","value":"5"},{"description":{"content":"When using a limit, this allows you to specify which page of results you would like to retrieve.
\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"Sort the results by a requested field.
\n","type":"text/plain"},"key":"sort","value":"{{sort_type}}"},{"description":{"content":"Use this parameter to limit your results by the RSVP status of the attendees.
\n","type":"text/plain"},"key":"status[0]","value":"{{guest_status}}"},{"description":{"content":"This parameter can constrain results to those that match a particular text string.
\n","type":"text/plain"},"key":"text_filter","value":"{{search_string}}"},{"disabled":true,"key":"event_rsvp_conditions","value":""},{"disabled":true,"key":"custom_question_ids","value":""},{"disabled":true,"key":"statistics","value":""},{"description":{"content":"Use this parameter to specify particular columns to be included in the response.
\n","type":"text/plain"},"key":"additional_columns[0]","value":"{{column_name}}"},{"disabled":true,"key":"viewGroups[]","value":""}],"variable":[]}},"response":[{"id":"de91a84d-58ce-458c-b22e-5f5de90dd461","name":"Retrieve the attendees from an event","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/groupcontacts?event_id={{event_id}}&limit=5&page=2","host":["https://api.splashthat.com"],"path":["groupcontacts"],"query":[{"key":"event_id","value":"{{event_id}}"},{"key":"limit","value":"5"},{"key":"page","value":"2"},{"key":"sort","value":"","type":"text","disabled":true},{"key":"status","value":"","type":"text","disabled":true},{"key":"text_filter","value":"","type":"text","disabled":true},{"key":"event_rsvp_conditions","value":"","type":"text","disabled":true},{"key":"custom_question_ids","value":"","type":"text","disabled":true},{"key":"statistics","value":"","type":"text","disabled":true},{"key":"additional_columns","value":"","type":"text","disabled":true},{"key":"view_groups","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 17:03:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [\n {\n \"id\": 255394767,\n \"contact\": {\n \"id\": 77135869,\n \"last_name\": \"LeBeau\",\n \"first_name\": \"Remy\",\n \"primary_email\": \"gambit1015@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443340,\n \"contact_id\": 77135869,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367472,\n \"first_name\": \"Remy\",\n \"last_name\": \"LeBeau\",\n \"guest_name\": null,\n \"email\": \"gambit1015@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:32:01-0400\",\n \"modified\": \"2019-09-10T17:32:01-0400\",\n \"date_rsvped\": \"2019-09-10T17:32:01-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"dbe46e7a9267de7d\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"stormsofficehours.splashthat.com/tc/dbe46e7a9267de7d\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:20:11-0400\",\n \"modified\": \"2019-09-10T17:32:01-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394768,\n \"contact\": {\n \"id\": 77135875,\n \"last_name\": \"Johnson\",\n \"first_name\": \"Tyrone\",\n \"primary_email\": \"cloak1021@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443340,\n \"contact_id\": 77135875,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367474,\n \"first_name\": \"Tyrone\",\n \"last_name\": \"Johnson\",\n \"guest_name\": null,\n \"email\": \"cloak1021@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:32:01-0400\",\n \"modified\": \"2019-09-10T17:32:01-0400\",\n \"date_rsvped\": \"2019-09-10T17:32:01-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"2cf9e42984eb407c\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"stormsofficehours.splashthat.com/tc/2cf9e42984eb407c\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:20:11-0400\",\n \"modified\": \"2019-09-10T17:32:01-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394769,\n \"contact\": {\n \"id\": 77135876,\n \"last_name\": \"Bowen\",\n \"first_name\": \"Tandy\",\n \"primary_email\": \"dagger1022@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": null,\n \"event_lists\": null,\n \"status\": \"invited\",\n \"created\": \"2019-09-10T17:20:11-0400\",\n \"modified\": \"2019-09-10T17:32:12-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394770,\n \"contact\": {\n \"id\": 77135878,\n \"last_name\": \"Ferguson\",\n \"first_name\": \"Clarice\",\n \"primary_email\": \"blink1024@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": null,\n \"event_lists\": null,\n \"status\": \"invited\",\n \"created\": \"2019-09-10T17:20:11-0400\",\n \"modified\": \"2019-09-10T17:32:12-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394771,\n \"contact\": {\n \"id\": 77135879,\n \"last_name\": \"Maximoff\",\n \"first_name\": \"Pietro\",\n \"primary_email\": \"quicksilver1025@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443340,\n \"contact_id\": 77135879,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367475,\n \"first_name\": \"Pietro\",\n \"last_name\": \"Maximoff\",\n \"guest_name\": null,\n \"email\": \"quicksilver1025@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:32:01-0400\",\n \"modified\": \"2019-09-10T17:32:01-0400\",\n \"date_rsvped\": \"2019-09-10T17:32:01-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"febe5e29a5a19f8f\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"stormsofficehours.splashthat.com/tc/febe5e29a5a19f8f\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:20:12-0400\",\n \"modified\": \"2019-09-10T17:32:01-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n }\n ],\n \"pagination\": {\n \"limit\": 5,\n \"count\": 10,\n \"page\": 2,\n \"pages\": 2,\n \"cursor\": null\n },\n \"limit\": 5,\n \"count\": 10,\n \"page\": 2,\n \"pages\": 2,\n \"cursor\": null\n}"},{"id":"f75563bf-4da0-4d08-b4ba-389691343c39","name":"Group contacts from a single event, sorted","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/groupcontacts?event_id={{event_id}}&limit=5&page=1&sort=groupContact.id+DESC","host":["https://api.splashthat.com"],"path":["groupcontacts"],"query":[{"key":"event_id","value":"{{event_id}}"},{"key":"limit","value":"5"},{"key":"page","value":"1"},{"key":"sort","value":"groupContact.id+DESC"},{"key":"status[]","value":"checkin_yes","disabled":true},{"key":"text_filter","value":"","type":"text","disabled":true},{"key":"event_rsvp_conditions[]","value":"checkin_yes","type":"text","disabled":true},{"key":"custom_question_ids","value":"","type":"text","disabled":true},{"key":"statistics","value":"","type":"text","disabled":true},{"key":"additional_columns","value":"","type":"text","disabled":true},{"key":"view_groups","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 17:19:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [\n {\n \"id\": 255394544,\n \"contact\": {\n \"id\": 77135879,\n \"last_name\": \"Maximoff\",\n \"first_name\": \"Pietro\",\n \"primary_email\": \"quicksilver1025@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443344,\n \"contact_id\": 77135879,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367196,\n \"first_name\": \"Pietro\",\n \"last_name\": \"Maximoff\",\n \"guest_name\": null,\n \"email\": \"quicksilver1025@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:27:34-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"date_rsvped\": \"2019-09-10T17:27:34-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"497619b30f36d65c\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"cyclopsbigexam.splashthat.com/tc/497619b30f36d65c\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:18:37-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394543,\n \"contact\": {\n \"id\": 77135878,\n \"last_name\": \"Ferguson\",\n \"first_name\": \"Clarice\",\n \"primary_email\": \"blink1024@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443344,\n \"contact_id\": 77135878,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367197,\n \"first_name\": \"Clarice\",\n \"last_name\": \"Ferguson\",\n \"guest_name\": null,\n \"email\": \"blink1024@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:27:34-0400\",\n \"modified\": \"2019-09-10T17:29:38-0400\",\n \"date_rsvped\": \"2019-09-10T17:27:34-0400\",\n \"ip_address\": null,\n \"attending\": false,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"4d14f39b6c47388d\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": true,\n \"qr_url\": \"cyclopsbigexam.splashthat.com/tc/4d14f39b6c47388d\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"waitlisted\",\n \"created\": \"2019-09-10T17:18:37-0400\",\n \"modified\": \"2019-09-10T17:29:38-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394542,\n \"contact\": {\n \"id\": 77135877,\n \"last_name\": \"Haller\",\n \"first_name\": \"David\",\n \"primary_email\": \"legion1023@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443344,\n \"contact_id\": 77135877,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": \"2019-09-10T17:29:28-0400\",\n \"id\": 460367198,\n \"first_name\": \"David\",\n \"last_name\": \"Haller\",\n \"guest_name\": null,\n \"email\": \"legion1023@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:27:34-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"date_rsvped\": \"2019-09-10T17:27:34-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"f90491ca8d25375a\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"cyclopsbigexam.splashthat.com/tc/f90491ca8d25375a\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"checkin_no\",\n \"created\": \"2019-09-10T17:18:37-0400\",\n \"modified\": \"2019-09-10T17:29:28-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394541,\n \"contact\": {\n \"id\": 77135876,\n \"last_name\": \"Bowen\",\n \"first_name\": \"Tandy\",\n \"primary_email\": \"dagger1022@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443344,\n \"contact_id\": 77135876,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367199,\n \"first_name\": \"Tandy\",\n \"last_name\": \"Bowen\",\n \"guest_name\": null,\n \"email\": \"dagger1022@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:27:34-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"date_rsvped\": \"2019-09-10T17:27:34-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"579f24ca89a2a14f\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"cyclopsbigexam.splashthat.com/tc/579f24ca89a2a14f\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:18:37-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255394540,\n \"contact\": {\n \"id\": 77135875,\n \"last_name\": \"Johnson\",\n \"first_name\": \"Tyrone\",\n \"primary_email\": \"cloak1021@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443344,\n \"contact_id\": 77135875,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367200,\n \"first_name\": \"Tyrone\",\n \"last_name\": \"Johnson\",\n \"guest_name\": null,\n \"email\": \"cloak1021@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:27:34-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"date_rsvped\": \"2019-09-10T17:27:34-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"c0acbafb594145cc\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"cyclopsbigexam.splashthat.com/tc/c0acbafb594145cc\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_yes\",\n \"created\": \"2019-09-10T17:18:37-0400\",\n \"modified\": \"2019-09-10T17:27:34-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n }\n ],\n \"pagination\": {\n \"limit\": 5,\n \"count\": 25,\n \"page\": 1,\n \"pages\": 5,\n \"cursor\": null\n },\n \"limit\": 5,\n \"count\": 25,\n \"page\": 1,\n \"pages\": 5,\n \"cursor\": null\n}"},{"id":"25ed26f7-58ea-494e-b838-0d278e1e3781","name":"Group Contacts for One Event","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.","type":"text"}],"url":{"raw":"https://api.splashthat.com/groupcontacts?event_id=459178487&limit=250&page=20&additional_columns[0]={{column_name}}","host":["https://api.splashthat.com"],"path":["groupcontacts"],"query":[{"key":"event_id","value":"459178487","description":"The ID of the event for which you would like to see the group contacts (attendees). "},{"key":"limit","value":"250","description":"Limits how many group contacts are returned. If no limit is specified, Splash will default to 5. "},{"key":"page","value":"20","description":"When using a limit, this allows you to specify which page of results you would like to retrieve."},{"key":"sort","value":"{{sort_type}}","description":"Sort the results by a requested field.","disabled":true},{"key":"status[0]","value":"{{guest_status}}","description":"Use this parameter to limit your results by the RSVP status of the attendees.","disabled":true},{"key":"text_filter","value":"{{search_string}}","description":"This parameter can constrain results to those that match a particular text string. ","disabled":true},{"key":"event_rsvp_conditions","value":"","type":"text","disabled":true},{"key":"custom_question_ids","value":"","type":"text","disabled":true},{"key":"statistics","value":"","type":"text","disabled":true},{"key":"additional_columns[0]","value":"{{column_name}}","description":"Use this parameter to specify particular columns to be included in the response. "},{"key":"viewGroups[]","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive"},{"key":"ratelimit-remaining","value":"99994"},{"key":"x-ratelimit-limit-second","value":"100000"},{"key":"content-type","value":"application/json"},{"key":"x-ratelimit-remaining-second","value":"99994"},{"key":"x-content-type-options","value":"nosniff"},{"key":"ratelimit-limit","value":"100000"},{"key":"ratelimit-reset","value":"1"},{"key":"via","value":"kong/3.4.2, 1.1 varnish, 1.1 varnish"},{"key":"x-kong-proxy-latency","value":"2"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"accept-ranges","value":"bytes"},{"key":"server","value":"nginx"},{"key":"cache-control","value":"no-cache, private"},{"key":"x-kong-upstream-latency","value":"76"},{"key":"allow","value":"GET"},{"key":"Date","value":"Fri, 02 May 2025 19:19:54 GMT"},{"key":"X-Served-By","value":"cache-iad-kiad7000165-IAD, cache-iad-kiad7000057-IAD"},{"key":"X-Cache","value":"MISS, MISS"},{"key":"X-Cache-Hits","value":"0, 0"},{"key":"X-Timer","value":"S1746213595.658751,VS0,VE101"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [],\n \"pagination\": {\n \"limit\": 250,\n \"count\": 83,\n \"page\": 20,\n \"pages\": 1,\n \"cursor\": null\n },\n \"limit\": 250,\n \"count\": 83,\n \"page\": 20,\n \"pages\": 1,\n \"cursor\": null\n}"}],"_postman_id":"98d629dc-3435-4a84-a050-c21af8b976ff"},{"name":"All Group Contacts","id":"f6e811a2-7041-42b2-b130-5fce0928fe1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"url":"https://api.splashthat.com/groupcontacts?limit=5&page=1&sort={{sort_type}}&status[0]={{guest_status}}&text_filter={{search_string}}&additional_columns={{column_name}}","description":"By excluding an event ID, you can query your entire group contacts database. This can return a large result set, so pagination is highly recommended. You can still apply all of the same search parameters to this call.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"The ID of the event you would like to see the group contacts (attendees) for.
\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"},{"description":{"content":"Limits how many group contacts are returned. If no limit is specified, Splash will default to 5.
\n","type":"text/plain"},"key":"limit","value":"5"},{"description":{"content":"When using a limit, this allows you to specify which page of results you would like to retrieve.
\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"Sort the results by a requested field.
\n","type":"text/plain"},"key":"sort","value":"{{sort_type}}"},{"description":{"content":"Use this parameter to limit your results by the RSVP status of the attendees.
\n","type":"text/plain"},"key":"status[0]","value":"{{guest_status}}"},{"description":{"content":"This parameter can constrain results to those that match a particular text string.
\n","type":"text/plain"},"key":"text_filter","value":"{{search_string}}"},{"disabled":true,"key":"event_rsvp_conditions","value":""},{"disabled":true,"key":"custom_question_ids","value":""},{"disabled":true,"key":"statistics","value":""},{"disabled":true,"description":{"content":"Get additional data in the response. URL Parameter can be added multiple times in the same request (eg. ...viewGroups[]=groupContactAnswer&viewGroups[]=groupContactCode)
\n","type":"text/plain"},"key":"viewGroups[]","value":""},{"description":{"content":"Use this parameter to specify particular columns to be included in the response.
\n","type":"text/plain"},"key":"additional_columns","value":"{{column_name}}"}],"variable":[]}},"response":[{"id":"34864565-2599-4368-9cca-bb91efd95d43","name":"Retrieve all event attendees","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":{"raw":"https://api.splashthat.com/groupcontacts?limit=5&page=14","host":["https://api.splashthat.com"],"path":["groupcontacts"],"query":[{"key":"event_id","value":"{{event_id}}","disabled":true},{"key":"limit","value":"5"},{"key":"page","value":"14"},{"key":"sort","value":"","type":"text","disabled":true},{"key":"status","value":"","type":"text","disabled":true},{"key":"text_filter","value":"","type":"text","disabled":true},{"key":"event_rsvp_conditions","value":"","type":"text","disabled":true},{"key":"custom_question_ids","value":"","type":"text","disabled":true},{"key":"statistics","value":"","type":"text","disabled":true},{"key":"additional_columns","value":"","type":"text","disabled":true},{"key":"view_groups","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 17:05:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [\n {\n \"id\": 255395835,\n \"contact\": {\n \"id\": 77135870,\n \"last_name\": \"Lee\",\n \"first_name\": \"Jubilation\",\n \"primary_email\": \"jubilee1016@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443324,\n \"contact_id\": 77135870,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367368,\n \"first_name\": \"Jubilation\",\n \"last_name\": \"Lee\",\n \"guest_name\": null,\n \"email\": \"jubilee1016@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:30:21-0400\",\n \"modified\": \"2019-09-10T17:30:21-0400\",\n \"date_rsvped\": \"2019-09-10T17:30:21-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": \"2019-09-10T17:30:21-0400\",\n \"unsub_tag\": \"b1573340cc9708cd\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"professorxslecture.splashthat.com/tc/b1573340cc9708cd\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"checkin_yes\",\n \"created\": \"2019-09-10T17:20:54-0400\",\n \"modified\": \"2019-09-10T17:30:21-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255395842,\n \"contact\": {\n \"id\": 77135872,\n \"last_name\": \"Darkholme\",\n \"first_name\": \"Raven\",\n \"primary_email\": \"mystique1018@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": null,\n \"event_lists\": null,\n \"status\": \"added\",\n \"created\": \"2019-09-10T17:20:54-0400\",\n \"modified\": \"2019-09-10T17:20:54-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255395849,\n \"contact\": {\n \"id\": 77135873,\n \"last_name\": \"Creed\",\n \"first_name\": \"Victor\",\n \"primary_email\": \"sabretooth1019@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443324,\n \"contact_id\": 77135873,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367369,\n \"first_name\": \"Victor\",\n \"last_name\": \"Creed\",\n \"guest_name\": null,\n \"email\": \"sabretooth1019@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:30:21-0400\",\n \"modified\": \"2019-09-10T17:30:34-0400\",\n \"date_rsvped\": \"2019-09-10T17:30:21-0400\",\n \"ip_address\": null,\n \"attending\": false,\n \"deleted\": 0,\n \"checked_in\": null,\n \"unsub_tag\": \"806277b81cc76b50\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"professorxslecture.splashthat.com/tc/806277b81cc76b50\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"rsvp_no\",\n \"created\": \"2019-09-10T17:20:54-0400\",\n \"modified\": \"2019-09-10T17:30:34-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255395851,\n \"contact\": {\n \"id\": 77135875,\n \"last_name\": \"Johnson\",\n \"first_name\": \"Tyrone\",\n \"primary_email\": \"cloak1021@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443324,\n \"contact_id\": 77135875,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367370,\n \"first_name\": \"Tyrone\",\n \"last_name\": \"Johnson\",\n \"guest_name\": null,\n \"email\": \"cloak1021@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:30:21-0400\",\n \"modified\": \"2019-09-10T17:30:21-0400\",\n \"date_rsvped\": \"2019-09-10T17:30:21-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": \"2019-09-10T17:30:21-0400\",\n \"unsub_tag\": \"7f433e15e7aaa08d\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"professorxslecture.splashthat.com/tc/7f433e15e7aaa08d\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"checkin_yes\",\n \"created\": \"2019-09-10T17:20:54-0400\",\n \"modified\": \"2019-09-10T17:30:21-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n {\n \"id\": 255395861,\n \"contact\": {\n \"id\": 77135876,\n \"last_name\": \"Bowen\",\n \"first_name\": \"Tandy\",\n \"primary_email\": \"dagger1022@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"phone\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_url\": \"\",\n \"instagram_url\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": {\n \"event_id\": 457443324,\n \"contact_id\": 77135876,\n \"ticket_sale\": null,\n \"tracking_link\": null,\n \"parent_event_rsvp\": null,\n \"checked_out\": null,\n \"id\": 460367371,\n \"first_name\": \"Tandy\",\n \"last_name\": \"Bowen\",\n \"guest_name\": null,\n \"email\": \"dagger1022@splashthat.com\",\n \"plus_one\": 0,\n \"created\": \"2019-09-10T17:30:21-0400\",\n \"modified\": \"2019-09-10T17:30:21-0400\",\n \"date_rsvped\": \"2019-09-10T17:30:21-0400\",\n \"ip_address\": null,\n \"attending\": true,\n \"deleted\": 0,\n \"checked_in\": \"2019-09-10T17:30:21-0400\",\n \"unsub_tag\": \"ad5f07a632d7ad91\",\n \"ticket_number\": null,\n \"vip\": false,\n \"waitlist\": false,\n \"qr_url\": \"professorxslecture.splashthat.com/tc/ad5f07a632d7ad91\",\n \"unsubscribed\": false\n },\n \"event_lists\": null,\n \"status\": \"checkin_yes\",\n \"created\": \"2019-09-10T17:20:54-0400\",\n \"modified\": \"2019-09-10T17:30:21-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n }\n ],\n \"pagination\": {\n \"limit\": 5,\n \"count\": 96,\n \"page\": 14,\n \"pages\": 20,\n \"cursor\": null\n },\n \"limit\": 5,\n \"count\": 96,\n \"page\": 14,\n \"pages\": 20,\n \"cursor\": null\n}"}],"_postman_id":"f6e811a2-7041-42b2-b130-5fce0928fe1d"},{"name":"Create Single Group Contact","id":"c7ba8c10-491f-4a89-8e23-ab83db7b4447","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"event_id\": 12345 \n\t\"confirmation_email\": true,\n\t\"email\": \"kingkong@splashthat.com\",\n\t\"first_name\": \"King\",\n\t\"last_name\": \"Kong\",\n\t\"status\": \"added\",\n}"},"url":"https://api.splashthat.com/groupcontact","description":"This endpoint can be used to create additional group contacts in your events, one-at-a-time. New attendees are defined via a JSON object, which you can find in the example request body. They require an event_id field to tell Splash to which event they should be added. Additional fields include confirmation email, email, first_name, last_name, and status.
\nNote: The behavior of this endpoint can vary depending upon the guest's status. If a guest with that email address already has \"added\" or \"invited\", they will be updated. Any other status creates a duplicate guest with that email address. As such, we recommend limiting the use of this endpoint to one-off creations of new guests.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"Use this header to send your access token.
\n","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"status\": \"added\",\n\t\"confirmation_email\" : false,\n\t\"email\": \"kingkong@splashthat.com\",\n\t\"first_name\": \"King\",\n\t\"last_name\": \"Kong\",\n\t\"answers\" : [\n\t\t{\n\t\t\t\"question_id\" : 12345,\n\t\t\t\"answer\" : \"My first custom question answer\"\n\t\t}\n\t\t{\n\t\t\t\"question_id\" : 67890,\n\t\t\t\"answer\" : \"My second custom question answer\"\n\t\t}\n\t]\n}"},"url":"https://api.splashthat.com/groupcontact/:group_contact_id","description":"Updating a group contact is how you can change information about your guests, as well as alter their status - such as checking them in, waitlisting them, etc. Reference the body parameter to see which fields you can alter. Include the fields and values for the ones you would like to change in the JSON body. If you have custom questions for your guests, you can use an array in the \"answer\" field and include the question ID and the answer for that guest for each custom question.
\nAlso, know that the guest statuses used by our backend server functions are different than the ones seen on the frontend of the Splash UI. See the table below for a mapping of the front-end statuses to the back-end statuses.
\n","urlObject":{"path":["groupcontact",":group_contact_id"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"description":{"content":"The group contact ID of the individual to be updated.
\n","type":"text/plain"},"type":"string","value":"","key":"group_contact_id"}]}},"response":[{"id":"a31d7fbb-eee5-483c-a5c1-4da20b90c6b8","name":"Attendee creation failure due to bad JSON","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"confirmation_email\": false,\n\t\"email\": \"kingkong10027@splashthat.com\",\n\t\"first_name\": \"King\",\n\t\"last_name\": \"Kong\",\n\t\"status\": \"added\",\n\t\"food_preference\": \"Beef\"\n}"},"url":"https://api.splashthat.com/groupcontact"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:15:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 400,\n \"message\": \"Bad Request\",\n \"errors\": null\n },\n \"data\": []\n}"},{"id":"e133659d-e02e-474f-b927-da05375a2592","name":"Create an event attendee","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"event_id\": 457443348, \n\t\"confirmation_email\": false,\n\t\"email\": \"kingkong10027@splashthat.com\",\n\t\"first_name\": \"King\",\n\t\"last_name\": \"Kong\",\n\t\"status\": \"added\"\n}"},"url":"https://api.splashthat.com/groupcontact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:09:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 255979885,\n \"contact\": {\n \"id\": 77274498,\n \"last_name\": \"Kong\",\n \"first_name\": \"King\",\n \"primary_email\": \"kingkong10027@splashthat.com\",\n \"title\": null,\n \"notes\": null,\n \"organization_name\": null,\n \"avatar_url\": null,\n \"phone\": null,\n \"facebook_url\": null,\n \"linkedin_url\": null,\n \"instagram_url\": null,\n \"createdate\": \"2019-09-12T18:08:59-0400\",\n \"unsubscribed\": false,\n \"vip\": false,\n \"salesforce_id\": null,\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"event_rsvp\": null,\n \"event_lists\": [],\n \"status\": \"added\",\n \"created\": \"2019-09-12T18:09:00-0400\",\n \"modified\": \"2019-09-12T18:09:00-0400\",\n \"deleted\": false,\n \"salesforce_campaign_member_id\": null,\n \"answers\": []\n },\n \"success\": true\n}"}],"_postman_id":"34b78965-b9bf-49c8-9690-0f8bf6d57f0b"},{"name":"Batch Cancel RSVPs","id":"f8e2c873-9c6e-4c2d-86c9-d91ed40eccaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"url":"https://api.splashthat.com/groupcontact/:group_contact_id","description":"To cancel the RSVP of a guest when their group contact id number is known, use the DELETE and id to change their status in your event to RSVP No.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"The ID of the group contact you would like to delete from an event. Note that this is NOT the contact ID, but specifically the group contact ID.
\n","type":"text/plain"},"type":"string","value":"{{group_contact_id}}","key":"group_contact_id"}]}},"response":[{"id":"584f75fd-f9bd-4a3b-8847-2b166ba4adaf","name":"Successful deletion","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.splashthat.com/groupcontact/:group_contact_id","host":["https://api.splashthat.com"],"path":["groupcontact",":group_contact_id"],"variable":[{"key":"group_contact_id","value":"255979885"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:11:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": null,\n \"success\": true\n}"},{"id":"f13d2baa-7a3f-44cb-81ce-d3ffb70e1ea2","name":"Group Contact does not exist","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.splashthat.com/groupcontact/:group_contact_id","host":["https://api.splashthat.com"],"path":["groupcontact",":group_contact_id"],"variable":[{"key":"group_contact_id","value":"255979885"}]}},"status":"Precondition Failed","code":412,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:15:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 412,\n \"message\": \"Precondition Failed\",\n \"errors\": null\n },\n \"data\": {\n \"class\": \"Splash\\\\APIBundle\\\\Entity\\\\GroupContact\",\n \"id\": \"255979885\"\n }\n}"}],"_postman_id":"f8e2c873-9c6e-4c2d-86c9-d91ed40eccaf"}],"id":"8f954337-04ca-44a2-9ca5-82cdfde2f0a8","description":"Splash tracks contacts at two levels: organization-wide contacts and event-by-event attendees. What we typically refer to as event attendees or guests are labeled as Group Contacts within the Splash API. The Group Contacts endpoint is used to interact with them and is the more frequently leveraged contact type. The Group Contacts endpoint can be used to:
\nRetrieve a list of group contacts for a given event
\nRetrieve all of the group contacts across all of your events
\nRetrieve an individual group contact
\nAdd a group contact, one-at-a-time
\nRemove a group contact from an event
\nThe results of some calls to the GroupContacts endpoint can be sorted by a given field. The sort can be applied by specifying the field, and then noting whether it should be ASC (for 'ascending') or DESC (for 'descending'). So, for example, \"firstName DESC\" (without quotes) would list all group contacts by first name, in reverse alphabetical order. Below is a list of sortable fields:
\n\"id\"
\n\"contact_id\"
\n\"email\"
\n\"firstName\" / \"first_name\"
\n\"lastName\" / \"last_name\"
\n\"status\"
\n\"dateCreated\" / \"date_created\"
\n\"modified\"
\n\"dateRsvped\" / \"date_rsvped\"
\n\"title\"
\n\"birthday\"
\n\"company\"
\n\"state\"
\nviewGroups[]To return additional data you can include multiple viewGroups[] values:
guestListSessionNames
\ncontactListUnsubscribe
\ngroupContactEmailCampaignStatuses
\ncontactTags
\ncontactLists
\nbounceInfo
\ngroupContactAnswer
\ngroupContactEventList
\ngroupContactCode
\nUse this header to send your access token.
\n","type":"text"}],"url":"https://api.splashthat.com/contacts?limit=25&page=1","description":"This endpoint returns a JSON payload of organization-level contacts from Splash. Just like /events and /groupcontacts endpoints, there are parameters for paginating the returned list. As this endpoint queries your entire organization and all contacts, it is recommended they be used to prevent overly-large payloads from impacting your performance.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"Limits how many contacts are returned by this call through pagination.
\n","type":"text/plain"},"key":"limit","value":"25"},{"description":{"content":"When a limit is used, this parameter can be utlilized to specify which page of the results to return.
\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"7a4b1b96-095b-4234-83c9-bbf76df3e6c3","name":"All Contacts (pagination)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.splashthat.com/contacts?limit=5&page=2","host":["https://api.splashthat.com"],"path":["contacts"],"query":[{"key":"limit","value":"5","description":"(integer) Limit how many contacts are returned by this call through pagination. "},{"key":"page","value":"2","description":"(integer) When a limit is used, this parameter can be utlilized to specify which page of the results to return. "},{"key":"sort","value":"","description":"(string) Specify a contact field by which to sort your results. ","disabled":true},{"key":"search","value":"","description":"(string) Use this parameter to narrow your search to contacts matching a certain stirng. ","disabled":true},{"key":"emails","value":"","description":"(array [string]) You can search for specific emails in your contacts by listing them in an array. ","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Sep 2019 17:37:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [\n {\n \"id\": 77135859,\n \"last_name\": \"McCoy\",\n \"first_name\": \"Henry\",\n \"middle_name\": \"\",\n \"primary_email\": \"beast1005@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n {\n \"id\": 77135860,\n \"last_name\": \"Grey\",\n \"first_name\": \"Jean\",\n \"middle_name\": \"\",\n \"primary_email\": \"phoenix1006@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n {\n \"id\": 77135861,\n \"last_name\": \"Dane\",\n \"first_name\": \"Lorna\",\n \"middle_name\": \"\",\n \"primary_email\": \"polaris1007@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n {\n \"id\": 77135862,\n \"last_name\": \"Wagner\",\n \"first_name\": \"Kurt\",\n \"middle_name\": \"\",\n \"primary_email\": \"nightcrawler1008@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n {\n \"id\": 77135863,\n \"last_name\": \"Howlett\",\n \"first_name\": \"Logan\",\n \"middle_name\": \"\",\n \"primary_email\": \"wolverine1009@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n }\n ],\n \"pagination\": {\n \"limit\": 5,\n \"count\": 26,\n \"page\": 2,\n \"pages\": 6,\n \"cursor\": null\n },\n \"limit\": 5,\n \"count\": 26,\n \"page\": 2,\n \"pages\": 6,\n \"cursor\": null\n}"}],"_postman_id":"34115d0d-a5e0-4acd-b6e8-94094568461f"},{"name":"Get Single Contact by ID","id":"756bb013-1e3e-43c1-a481-d4efb9777699","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"url":"https://api.splashthat.com/contacts/:contact_id","description":"Use this endpoint to retrieve the information for an individual contact. The contact you want to retrieve is specified by a contact ID in the URL path and is rendered as JSON in the response.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"Use this path variable to specify which contact you would like returned.
\n","type":"text/plain"},"type":"string","value":"{{contact_id}}","key":"contact_id"}]}},"response":[{"id":"fedfac4d-a47e-4442-a74f-ee6dace0f57f","name":"Indiviual Contact","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.splashthat.com/contacts/:contact_id","host":["https://api.splashthat.com"],"path":["contacts",":contact_id"],"variable":[{"key":"contact_id","value":"77135872","description":"Use this path variable to specify which contact you would like returned. "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Sep 2019 18:05:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 77135872,\n \"last_name\": \"Darkholme\",\n \"first_name\": \"Raven\",\n \"middle_name\": \"\",\n \"primary_email\": \"mystique1018@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:05-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false\n },\n \"success\": true\n}"}],"_postman_id":"756bb013-1e3e-43c1-a481-d4efb9777699"},{"name":"Get Contact History","id":"1be7613a-83ba-47ce-b345-d1d766bd4224","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"url":"https://api.splashthat.com/contact/:contact_id/history","description":"Part of privacy compliance is the ability to be transparent about the data you have. The Contact History API call helps meet this compliance necessity by responding to a contact ID with a record of the events with which this contact has been associated in Splash.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"Use this path variable to specify which contact's history you would like to retrieve.
\n","type":"text/plain"},"type":"string","value":"{{contact_id}}","key":"contact_id"}]}},"response":[{"id":"05cc194a-1e39-4f0a-a542-4e8117d2bf7a","name":"Get Contact History","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.splashthat.com/contact/:contact_id/history","host":["https://api.splashthat.com"],"path":["contact",":contact_id","history"],"variable":[{"key":"contact_id","value":"77135872","type":"string","description":"Use this path variable to specify which contact you would like returned. "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 03 Oct 2019 20:15:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"history\": [\n {\n \"type\": \"rsvp\",\n \"object\": {\n \"event\": {\n \"user\": {\n \"id\": 450070,\n \"email\": \"quinn.soutar.api@splashthat.com\",\n \"first_name\": \"Quinn\",\n \"last_name\": \"API\",\n \"cognito_id\": \"us-east-1:5d120884-0a0e-4295-ae45-38c2cd7baee2\"\n },\n \"event_type\": {\n \"name\": \"Exhibits & Shows\"\n },\n \"title\": \"Xavier School History Field Trip\",\n \"domain\": \"xavierschoolhistoryfieldtrip\"\n },\n \"ticket_sale\": null,\n \"checked_out\": null,\n \"id\": 460367527,\n \"email\": \"mystique1018@splashthat.com\",\n \"created\": \"2019-09-10T17:32:46-0400\",\n \"date_rsvped\": \"2019-09-10T17:32:46-0400\",\n \"attending\": false,\n \"checked_in\": null,\n \"vip\": false\n },\n \"text\": \"RSVP'ed to the event\",\n \"created\": 1568151166\n }\n ],\n \"tags\": [],\n \"custom\": []\n },\n \"success\": true\n}"}],"_postman_id":"1be7613a-83ba-47ce-b345-d1d766bd4224"},{"name":"Delete a Contact","id":"3ac26046-8f8d-466e-947f-767fc275b11f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"url":"https://api.splashthat.com/contacts/:contact_id","description":"If you know a contact ID, it can be used to delete that Contact from your list of Splash Contacts. Make certain it is the contact you want to delete and not just an event guest (group contact). Keep in mind this is just a soft delete that makes contacts invisible to Splash users and does not remove them from the Splash database. For GDPR-related use cases and removing personal information, Splash recommends using the anonymize endpoint which is designed to be compliant with privacy laws.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"This is contact ID of the contact to delete.
\n","type":"text/plain"},"type":"string","value":"{{my_contact_id}}","key":"contact_id"}]}},"response":[{"id":"09fc0146-68e9-414a-8e8b-9963d5f3fbdc","name":"Contact deleted","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.splashthat.com/contacts/:contact_id","host":["https://api.splashthat.com"],"path":["contacts",":contact_id"],"variable":[{"key":"contact_id","value":"77135869"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:31:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"full_name\": \"Remy LeBeau\",\n \"contact_answers\": [],\n \"unsubscribes\": [],\n \"event_statuses\": [],\n \"event_counts\": [],\n \"hub_event_counts\": [],\n \"domain\": \"splashthat.com\",\n \"email_md5\": \"2b74a11a23167f2154aac2f8b1d791f6\",\n \"id\": 77135869,\n \"event_message_invites\": [],\n \"last_name\": \"LeBeau\",\n \"first_name\": \"Remy\",\n \"middle_name\": \"\",\n \"primary_email\": \"gambit1015@splashthat.com\",\n \"title\": \"\",\n \"notes\": \"\",\n \"organization_name\": \"\",\n \"avatar_url\": \"\",\n \"profile_image\": \"\",\n \"street\": \"\",\n \"city\": \"\",\n \"state\": \"\",\n \"zip\": \"\",\n \"phone\": \"\",\n \"twitter_display_name\": \"\",\n \"twitter_url\": \"\",\n \"facebook_user_id\": \"\",\n \"facebook_display_name\": \"\",\n \"facebook_url\": \"\",\n \"linkedin_display_name\": \"\",\n \"linkedin_url\": \"\",\n \"pinterest_display_name\": \"\",\n \"pinterest_url\": \"\",\n \"instagram_display_name\": \"\",\n \"instagram_url\": \"\",\n \"website\": \"\",\n \"createdate\": \"2019-09-10T17:16:04-0400\",\n \"gender\": \"\",\n \"unsubscribed\": false,\n \"birthday\": \"\",\n \"vip\": false,\n \"salesforce_id\": \"\",\n \"bounced\": false,\n \"invalid_email\": false,\n \"tags\": null,\n \"lists\": null,\n \"bounce_info\": null\n },\n \"success\": true\n}"},{"id":"3df9d90a-b1b8-4a99-94c5-6085a87af672","name":"No such contact found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.splashthat.com/contacts/:contact_id","host":["https://api.splashthat.com"],"path":["contacts",":contact_id"],"variable":[{"key":"contact_id","value":"255979885"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Sep 2019 22:31:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 500,\n \"message\": \"Internal Server Error\",\n \"errors\": null\n },\n \"data\": []\n}"}],"_postman_id":"3ac26046-8f8d-466e-947f-767fc275b11f"},{"name":"Anonymize Contact","id":"0dd5ea97-76fa-4f8b-8ece-d084ae63bd48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"delete\": true\n}"},"url":"https://api.splashthat.com/contacts/:contact_id/anonymize","description":"Splash takes compliance with privacy laws very seriously. This directly led to the creation of the anonymize contact endpoint as a GDPR compliance tool. Be absolutely certain you want to do this! Once a contact has been anonymized, it cannot be undone.
\nNote:\nUtilizing the Anonymize Contacts endpoint requires special privileges for your API user. Inadequate privileges are indicated by a 403 error when using this endpoint. This privilege is only available to organization admins. Contact your Customer Success Representative to learn how to gain appropriate privileges for access.
Alternatively, you can use the Incoming Webhook integration to accomplish anonymizations and unsubscribes.
This is the contact ID of the person whose information will be anonymized in the Splash database.
\n","type":"text/plain"},"type":"string","value":"{{contact_id}}","key":"contact_id"}]}},"response":[],"_postman_id":"0dd5ea97-76fa-4f8b-8ece-d084ae63bd48"}],"id":"45ea8ba2-6e48-400c-8785-8a435a3184bf","description":"Whereas group contacts exist at the event-level corresponding to the attendees, contacts exist at the organization-level. These are the records that group contacts (attendees) refer to for more general information (such as name or email address), and which Splash uses to track guests between individual events. If you add a contact via the POST /groupcontacts endpoint, an org-level contact is automatically created and associated with that contact.
\nThe most common uses for contacts are:
\nUse this header to send your access token.
\n","key":"Authorization","type":"text","value":"Bearer {{my_token}}"}],"url":"https://api.splashthat.com/public/unsubscribe/:unsub_tag/:unsub_type?event_id={{event_id}}","description":"A GET call to the /unsubscribe endpoint can be used to query for a specified unsubscribe. The unsubscribe tag, type of unsubscribe to retrieve, and event ID for the event from which the unsubscribe came are all required values.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"The ID of the event with which the unsub_tag is associated. This is a required parameter.
\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"}],"variable":[{"id":"7205a998-ec20-4c01-af33-f749712f4452","description":{"content":"This is the unsub_tag found on the GroupContacts object.
\n","type":"text/plain"},"type":"string","value":"","key":"unsub_tag"},{"id":"ab80f56c-3a88-4d8c-845f-4b81d1e12035","description":{"content":"This parameter specifies the types of unsubscribe to retrieve: \"all\", \"event\", or \"any\"
\n","type":"text/plain"},"type":"string","value":"","key":"unsub_type"}]}},"response":[],"_postman_id":"adceb4c6-85e9-4f0f-9380-00cab419a93b"},{"name":"Create an Unsubscribe","id":"338e878b-2398-44ed-b5b2-c75df5fdfbd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{my_token}}","description":"Use this header to send your access token.
\n","type":"text"}],"url":"https://api.splashthat.com/public/unsubscribe/:unsub_tag/:unsub_type?event_id={{event_id}}","description":"You can send a POST to the /unsubscribe endpoint to create new unsubscribes at both the organization and event levels.
\nNote: Unsubscribing a contact means they will no longer receive any communications from Splash to the level that you specify.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"The ID of the event with which the unsub_tag is associated. This is a required parameter.
\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"}],"variable":[{"description":{"content":"This is the unsub_tag found on the GroupContacts object.
\n","type":"text/plain"},"type":"string","value":"","key":"unsub_tag"},{"description":{"content":"This parameter specifies the types of unsubscribe to create: \"all\", \"event\"
\n","type":"text/plain"},"type":"string","value":"","key":"unsub_type"}]}},"response":[],"_postman_id":"338e878b-2398-44ed-b5b2-c75df5fdfbd8"},{"name":"Resubscribe","id":"fede7074-04d8-4fbf-8ce3-38964e60a819","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","description":"Use this header to send your access token.
\n","key":"Authorization","type":"text","value":"Bearer {{my_token}}"}],"url":"https://api.splashthat.com/public/unsubscribe/:unsub_tag/:unsub_type?event_id={{event_id}}","description":"Unsubscribed contacts, whether from an event or an organization, can be resubscribed. Sending a DELETE call to this endpoint and specifying the unsub_tag originally used for the unsubscribe \"deletes\" the unsubscribe, essentially resubscribing the contact to communication from your Splash organization.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"All unsub_tags are associated with an event. When using this endpoint to delete unsubscribes, this parameter is required. Retrieve the event ID when retrieving the unsub_tag.
\n","type":"text/plain"},"key":"event_id","value":"{{event_id}}"}],"variable":[{"id":"e0b3351d-6972-4e8b-9649-e8b93503f29e","description":{"content":"This is the unsub_tag found on the GroupContacts object.
\n","type":"text/plain"},"type":"string","value":"","key":"unsub_tag"},{"id":"43701336-4209-475f-912a-8cb4ae2261a1","description":{"content":"This parameter specifies the types of unsubscribe to delete: \"all\", \"event\", or \"any\"
\n","type":"text/plain"},"type":"string","value":"","key":"unsub_type"}]}},"response":[],"_postman_id":"fede7074-04d8-4fbf-8ce3-38964e60a819"}],"id":"16fe9db8-e7ac-4242-aee5-cba90a10a9f8","description":"For data compliance, it is essential to be able to unsubscribe your contacts and retrieve their subscription histories as requested. The Splash API enables this with several unsubscribe endpoints. It is helpful to understand three of the key parameters Splash uses for handling unsubscribes.
\nWhenever a guest RSVPs for an event, Splash creates an RSVP object on the GroupContact. In this object, the unsub_tag field contains a randomized hash uniquely generated for each event guest RSVP. This hash is used to identify a guest for a specific event or contact across your organization. This hash is found on the GroupContact object, under data.event_rsvp.unsub_tag.
\nSplash 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.
\nEvery unsubscribe is associated with an event in Splash, and the third parameter used in all unsubscribe calls is the ID of the unsub_tag event. Splash recommends retrieving the unsub_tag and its associated event_id from the GroupContact at the same time.
\n","event":[{"listen":"prerequest","script":{"id":"01197f0b-16c4-4549-870b-3bf71a1e8af6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"afac9fc3-30dc-49eb-b3e3-ce57f5516f7c","type":"text/javascript","exec":[""]}}],"_postman_id":"16fe9db8-e7ac-4242-aee5-cba90a10a9f8","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"This is some static text along with the CRM API key provided by your Customer Success Manager. This is different from your regular API key and secret.
\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"description":"The title of the event to create. This field is required.
\n","key":"title","type":"text","value":"Quinn's New Year"},{"description":"The numerical ID of the theme the new event will use. Find this in any GET /events API call response. When an ID is not entered, it defaults to the most recently updated theme to which you have access.
\n","key":"splash_theme_id","type":"text","value":"1200636"},{"description":"The event start date and time, in the format YYYY-mm-dd H:i:s. Splash copies it from the theme itself when none is entered..
\n","key":"event_start","type":"text","value":"2019-12-31 18:00:00"},{"description":"The event end date and time in the same format as event_start.
\n","key":"event_end","type":"text","value":"2020-01-01 03:00:00"},{"description":"Indicate the time zone for your event in this field. For a complete list of timezones, see Appendix A.
\n","key":"time_zone_identifier","type":"text","value":"America/New_York"},{"description":"Choose a particular domain for your event if you do not want to use the one automatically generated from the event's title.
\n","key":"domain","type":"text","value":"quinnsnewyear"},{"description":"The event venue.
\n","key":"venue_name","type":"text","value":"Times Square"},{"description":"The venue address.
\n","key":"address","type":"text","value":"45th Street"},{"description":"The city of the venue.
\n","key":"city","type":"text","value":"New York"},{"description":"The state, province, or territory of the venue.
\n","key":"state","type":"text","value":"New York"},{"description":"The postal code of the venue.
\n","key":"zip_code","type":"text","value":"10036"},{"description":"The country of the event venue.
\n","key":"country","type":"text","value":"United States"},{"description":"Tags can be applied to the created event. Delimit each tag with a comma.
\n","key":"event_tags","type":"text","value":"crm api,new years"},{"description":"Use this field to identify which event type to use.
\n","key":"event_type","type":"text","value":"Concert"},{"description":"The new event can be associated with a Salesforce Campaign by its SFDC object ID. When placed in this field, your Salesforce integration automatically starts synchronizing the guest list.
\n","key":"salesforce_campaign_id","type":"text","value":""},{"description":"If you are an org admin, you can pick a use to set as the owner of the event if you would like to override the default.
\n","key":"owner_email","type":"text","value":""},{"key":"attendance_type","value":"in-person","description":"Event Attendance Type. Allowed values: \"in-person\", \"virtual\", \"virtual,in-person\"
\n","type":"text","uuid":"4ee3bb9e-4e5e-4c2e-ba01-ad3ba784fcd9"},{"key":"multisession","value":"0","description":"Whether or not your event has mutliple Sessions. Allowed values: 1 or 0
\n","type":"text","uuid":"ab5714a6-d6ab-4c28-b878-d6097b6945be"},{"key":"survey_question[N]","value":"","description":"Custom Event Field. Reach out to your Customer Success Manager for more information about usage.
\n","type":"text","uuid":"5fcbc5d6-8fae-4604-b750-00ce21b7b6f1"}]},"url":"https://splashthat.com/api/v2/crm/events","description":"Creating an event with the Splash CRM API uses many of the same fields found on the event creation form on the web interface. These fields are sent as form data in the body of a POST request to the /crm/events endpoint. The event title and theme ID are required parameters, while the rest are optional. Empty parameters default to blank or TBD unless otherwise noted in the description for the particular parameter. Your CRM API key should be placed in the AUTHORIZATION header, prefixed by the static text SplashCRM. See Appendix A for a list of timezones.
\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"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.
\nThe CRM API can be used to create events in your outside of the Splash interface. Slight differences in accessing this API necessitate this separate documentation. Please contact your customer success manager to gain access to this API.
\n","event":[{"listen":"prerequest","script":{"id":"0bc4f93f-4f20-46cc-a873-da25c1288c49","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3ef52da4-2018-4b88-a763-a20772d53fcf","type":"text/javascript","exec":[""]}}],"_postman_id":"d89b6476-0ad3-4369-a4dd-a26c6101fe45","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"Use this endpoint to retrieve the list of groups of your organization.
\nRemember you need to obtain a token from the Authentication Endpoint to get access to the system.
\nEndpoint admits following get parameters, all of them being optional. When params are not specific their value will be a default one specificied in the following table.
\n","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":"Use this endpoint to retrieve the list of roles of your organization.
\nRemember you need to obtain a token from the Authentication Endpoint to get access to the system.
\nEndpoint admits following get parameters, all of them being optional. When params are not specific their value will be a default one specified in the following table.
\n","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":"Use this endpoint to obtain a paginated list of users belonging to your organization
\nThe user performing the request must have access to view the Team Users. If not, the endpoint will return a 403 response.
\nThe endpoint can receive following query parameters to restrict the results shown and to show in a given order.
\nthe filter params above can be used to search for specific users. The filters param allows the following keys and values
\nThe 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.
\nFor 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.
\nKnowing this, you can also specify a sort parameter that will make the pending users in one side and the active users
\n","urlObject":{"path":["v1","team-manager","users"],"host":["https://api.splashthat.com"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"2"},{"key":"filters[search]","value":""},{"key":"filters[roles][]","value":"15"},{"key":"filters[roles][]","value":"14"},{"key":"filters[addedDateStart]","value":"2023-08-01%2000%3A00%3A00"},{"key":"filters[addedDateEnd]","value":"2023-08-31%2023%3A59%3A59"},{"key":"filters[lastLoginStart]","value":"2023-08-01%2000%3A00%3A00"},{"key":"filters[lastLoginEnd]","value":"2023-08-31%2023%3A59%3A59"},{"key":"filters[groups][]","value":"1"},{"key":"sort","value":"created_asc"}],"variable":[]}},"response":[{"id":"30cc8eb4-996f-4ab8-a423-33da54dd957a","name":"Empty list ist of users","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.splashthat.com/v1/team-manager/users?page=1&limit=2&filters[search]=&filters[roles][]=15&filters[roles][]=14&filters[addedDateStart]=2023-08-01%2000%3A00%3A00&filters[addedDateEnd]=2023-08-31%2023%3A59%3A59&filters[lastLoginStart]=2023-08-01%2000%3A00%3A00&filters[lastLoginEnd]=2023-08-31%2023%3A59%3A59&filters[groups][]=1&sort=created_asc","host":["https://api.splashthat.com"],"path":["v1","team-manager","users"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"2"},{"key":"filters[search]","value":""},{"key":"filters[roles][]","value":"15"},{"key":"filters[roles][]","value":"14"},{"key":"filters[addedDateStart]","value":"2023-08-01%2000%3A00%3A00"},{"key":"filters[addedDateEnd]","value":"2023-08-31%2023%3A59%3A59"},{"key":"filters[lastLoginStart]","value":"2023-08-01%2000%3A00%3A00"},{"key":"filters[lastLoginEnd]","value":"2023-08-31%2023%3A59%3A59"},{"key":"filters[groups][]","value":"1"},{"key":"sort","value":"created_asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99997"},{"key":"RateLimit-Remaining","value":"99997"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 08:52:25 GMT"},{"key":"Allow","value":"GET, POST"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"64"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [],\n \"pagination\": {\n \"limit\": 2,\n \"count\": 0,\n \"page\": 1,\n \"pages\": 0,\n \"cursor\": null\n },\n \"limit\": 2,\n \"count\": 0,\n \"page\": 1,\n \"pages\": 0,\n \"cursor\": null\n}"},{"id":"7243498f-4c98-44cb-8ebb-ac5a12de6ddb","name":"Fetch Organization Users","originalRequest":{"method":"GET","header":[],"url":"https://api.splashthat.com/v1/team-manager/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99998"},{"key":"RateLimit-Remaining","value":"99998"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:35:07 GMT"},{"key":"Allow","value":"GET, POST"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"357"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": [\n {\n \"id\": 719881,\n \"email\": \"new-user@splashthat.com\",\n \"pending_group_invite\": true,\n \"groups\": [\n {\n \"id\": 20357,\n \"child_group_ids\": [],\n \"title\": \"Group 1.A\"\n }\n ],\n \"role\": {\n \"id\": 7866,\n \"name\": \"Creative Specialist\",\n \"description\": \"Designer Pro access, but no access to Team Management\"\n },\n \"first_name\": null,\n \"last_name\": null,\n \"created\": \"2023-09-19T05:15:14-04:00\",\n \"last_logged_in\": null,\n \"last_active\": null\n },\n {\n \"id\": 478067,\n \"email\": \"carlos.revillo@splashthat.com\",\n \"pending_group_invite\": false,\n \"groups\": [\n {\n \"id\": 19699,\n \"child_group_ids\": [\n 20357\n ],\n \"title\": \"group2\"\n }\n ],\n \"role\": {\n \"id\": 7865,\n \"name\": \"Admin\",\n \"description\": \"Admins have control over the entire program. They can access all parts of the platform, manage the team, and captain the ship.\"\n },\n \"first_name\": \"Carlos\",\n \"last_name\": \"Revillo\",\n \"created\": \"2020-02-05T06:41:36-05:00\",\n \"last_logged_in\": \"2023-09-19T04:24:52-04:00\",\n \"last_active\": \"2023-09-19T05:24:56-04:00\"\n }\n ],\n \"pagination\": {\n \"limit\": 20,\n \"count\": 2,\n \"page\": 1,\n \"pages\": 1,\n \"cursor\": null\n },\n \"limit\": 20,\n \"count\": 2,\n \"page\": 1,\n \"pages\": 1,\n \"cursor\": null\n}"}],"_postman_id":"793cffc0-e13b-4a98-80b8-749b0b593860"},{"name":"Invite user to organization","id":"15de84f8-6027-40c5-aa79-a9570cdbe3fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"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.
\nIf the email passed is already in our database, the endpoint will return a 409 response with some information about the cause of the error.
\nIf the request validates then a job will be created in our system. When this job gets processed, the invited user will receive an email with the link to accept the invitation. The user will need to click that link and will be redirected to splashthat.com to accept the invite.
\n","urlObject":{"path":["v1","team-manager","users"],"host":["https://api.splashthat.com"],"query":[],"variable":[]}},"response":[{"id":"dc1a8c1e-41bd-44f6-941b-76b7006b8d00","name":"Invite user response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n \"user\": {\n \"email\": \"new-user@splashthat.com\",\n \"group_ids\": [20357],\n \"role_id\": 7866\n }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.splashthat.com/v1/team-manager/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99998"},{"key":"RateLimit-Remaining","value":"99998"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:15:14 GMT"},{"key":"Allow","value":"GET, POST"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"468"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 719881,\n \"email\": \"new-user@splashthat.com\",\n \"pending_group_invite\": true,\n \"groups\": [\n {\n \"id\": 20357,\n \"child_group_ids\": [],\n \"title\": \"Group 1.A\"\n }\n ],\n \"role\": {\n \"id\": 7866,\n \"name\": \"Creative Specialist\",\n \"description\": \"\"\n },\n \"first_name\": null,\n \"last_name\": null,\n \"created\": \"2023-09-19T05:15:14-04:00\",\n \"last_logged_in\": null,\n \"last_active\": null\n },\n \"success\": true\n}"},{"id":"05db070a-650f-4498-866b-50962b9d41bf","name":"Invite an already existing user","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n \"user\": {\n \"email\": \"new-user@splashthat.com\",\n \"group_ids\": [20357],\n \"role_id\": 7866\n }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.splashthat.com/v1/team-manager/users"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99999"},{"key":"RateLimit-Remaining","value":"99999"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:20:23 GMT"},{"key":"Allow","value":"GET, POST"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"63"},{"key":"X-Kong-Proxy-Latency","value":"2"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 409,\n \"message\": \"[[Splash Exception]] User has already been invited to the team\",\n \"errors\": null,\n \"errorCode\": \"team__add_user__duplicate_user\"\n },\n \"data\": []\n}"}],"_postman_id":"15de84f8-6027-40c5-aa79-a9570cdbe3fa"},{"name":"Update role and groups for an user","id":"b3b5526d-78e1-4539-aa5f-a0d14a6dc25b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Use this endpoint when you need to update the role and|or the groups of given user id
\nTo 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.
\nyou MUST pass these parameters always in the request or the endpoint will fail. So, for example, if the user has the role “Viewer” with role_id “15”, you will need to pass \"role_id\":15 in the request so the use continue having this role.
If the role_id does not exist, or any of the group_ids do not exists, the endpoint will return a error response.
\nWhen changing the role, even you get the new role id assigned to the user in the response, the change of permissions for the user may take some time to be effective.
\n","urlObject":{"path":["v1","team-manager","users"],"host":["https://api.splashthat.com"],"query":[],"variable":[]}},"response":[{"id":"5342b80e-b61d-4c0d-ac8c-b0f490a44ba2","name":"Update user response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n \"user\": {\n \"group_ids\": [20357],\n \"role_id\": 7866\n }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.splashthat.com/v1/team-manager/users/:user_id","host":["https://api.splashthat.com"],"path":["v1","team-manager","users",":user_id"],"variable":[{"key":"user_id","value":"719881"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99998"},{"key":"RateLimit-Remaining","value":"99998"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:27:55 GMT"},{"key":"Allow","value":"DELETE, PATCH"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"297"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 200\n },\n \"data\": {\n \"id\": 719881,\n \"email\": \"new-user@splashthat.com\",\n \"pending_group_invite\": true,\n \"groups\": [\n {\n \"id\": 20357,\n \"child_group_ids\": [],\n \"title\": \"Group 1.A\"\n }\n ],\n \"role\": {\n \"id\": 7866,\n \"name\": \"Creative Specialist\",\n \"description\": \"Designer Pro access, but no access to Team Management\"\n },\n \"first_name\": null,\n \"last_name\": null,\n \"created\": \"2023-09-19T05:15:14-04:00\",\n \"last_logged_in\": null,\n \"last_active\": null\n },\n \"success\": true\n}"},{"id":"1df788b8-5555-47f4-9c21-5b50c70b3572","name":"Update role and groups for an user passing an invalid group","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n \"user\": {\n \"group_ids\": [20357],\n \"role_id\": 78660\n }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.splashthat.com/v1/team-manager/users/:user_id","protocol":"https","host":["api","splashthat","com"],"path":["v1","team-manager","users",":user_id"],"variable":[{"key":"user_id","value":"719881"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99998"},{"key":"RateLimit-Remaining","value":"99998"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:39:23 GMT"},{"key":"Allow","value":"DELETE, PATCH"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"252"},{"key":"X-Kong-Proxy-Latency","value":"2"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 400,\n \"message\": \"[[Splash Exception]] {\\\"user.roleId.user.roleId\\\":\\\"Invalid role provided\\\"}\",\n \"errors\": null\n },\n \"data\": []\n}"}],"_postman_id":"b3b5526d-78e1-4539-aa5f-a0d14a6dc25b"},{"name":"Delete user from the organization","id":"7375a5cb-3019-42ea-827b-76d07c6f0f6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"Use this endpoint to delete a user of your organization
\nWhen 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.
\nThe provided user id must be the id of a user belonging to the same organization as the user we are deleting.
\nFurthermore, all the logged-in sessions of the deleted user will be automatically closed.
\nWhen the deleted user tries to log in again into the system, the user will get an error message.
\n","urlObject":{"path":["v1","team-manager","users",":user_id"],"host":["https://api.splashthat.com"],"query":[],"variable":[{"type":"any","value":"719881","key":"user_id"}]}},"response":[{"id":"840211a8-51fd-4e7e-812d-e86d61f5c3df","name":"Delete user specifying user to transfer events to","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n \"user_to_transfer_events\": 478067\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.splashthat.com/v1/team-manager/users/:user_id","host":["https://api.splashthat.com"],"path":["v1","team-manager","users",":user_id"],"variable":[{"key":"user_id","value":"719881"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-RateLimit-Limit-Second","value":"100000"},{"key":"X-RateLimit-Remaining-Second","value":"99999"},{"key":"RateLimit-Remaining","value":"99999"},{"key":"RateLimit-Limit","value":"100000"},{"key":"RateLimit-Reset","value":"1"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 19 Sep 2023 09:52:20 GMT"},{"key":"Allow","value":"DELETE, PATCH"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Upstream-Latency","value":"80"},{"key":"X-Kong-Proxy-Latency","value":"1"},{"key":"Via","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"meta\": {\n \"code\": 400,\n \"message\": \"[[Splash Exception]] User does not belong to the team\",\n \"errors\": null\n },\n \"data\": []\n}"}],"_postman_id":"7375a5cb-3019-42ea-827b-76d07c6f0f6f"}],"id":"d6660998-873c-48d7-ae84-d7ffd800a0ee","description":"This section explains how to connect to our Team Manager API
and use the exposed endpoints to manage Team Manager using external tools.
SUBMIT
\",\n \"root\": {\n \"type\": \"root\",\n \"id\": 20013447,\n \"label_markup\": \"\",\n \"children\": [\n {\n \"type\": \"ticket_selection_node\",\n \"id\": 20013448,\n \"label_markup\": \"\",\n \"name\": \"\",\n \"label\": \"\",\n \"description\": \"\",\n \"logic\": [],\n \"lock\": 0\n }\n ],\n \"name\": \"event-ticket-selection-form\",\n \"label\": \"\",\n \"description\": \"The essential Splash Ticket Selection Form\",\n \"logic\": [],\n \"lock\": 0\n },\n \"name\": \"event-ticket-selection-form\",\n \"label\": \"Purchase Tickets\",\n \"description\": \"The essential Splash Ticket Selection Form\",\n \"type\": \"ticketSelection\",\n \"error_messages\": [],\n \"form_library_form\": null,\n \"cached\": true\n },\n \"form_owner_id\": 2064766,\n \"form_config\": {\n \"input_types\": {\n \"splash_social_rsvp\": {\n \"networks\": {\n \"linked_in\": {\n \"fields\": [\n \"linked_in_first_name\",\n \"linked_in_last_name\",\n \"linked_in_email\",\n \"linked_in_company\",\n \"linked_in_job_title\",\n \"linked_in_profile_url\",\n \"linked_in_profile_picture\",\n \"linked_in_location\"\n ]\n },\n \"facebook\": {\n \"fields\": [\n \"facebook_first_name\",\n \"facebook_last_name\",\n \"facebook_email\",\n \"facebook_facebook_id\",\n \"facebook_middle_name\",\n \"facebook_short_name\"\n ]\n }\n }\n }\n }\n }\n },\n \"success\": true\n}"},{"id":"34af4de3-b8d7-4bfc-8239-9729e7884e54","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{my_token}}","type":"text","disabled":true}],"url":{"raw":"https://api.splashthat.com/v1/events/:event_id/form","host":["https://api.splashthat.com"],"path":["v1","events",":event_id","form"],"query":[{"key":"access_token","value":"{{access_token}}","disabled":true}],"variable":[{"key":"event_id","value":"{{event_id}}"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Jan 2024 09:30:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"26"},{"key":"vary","value":"Origin"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Kong-Response-Latency","value":"1"},{"key":"Server","value":"kong/2.3.3"}],"cookie":[],"responseTime":null,"body":"{\n \"message\": \"Unauthorized\"\n}"}],"_postman_id":"3e53ffe4-f2b9-4d96-965d-df4bbcd69936"}],"id":"c577774c-1961-47c3-8120-f796e12ae08b","description":"It's possible to retrieve the form for a specific event using the following endpoint.
\nAuthorization to read the event is needed. You need to provide an access_token or if you prefer, send a Bearer header including the token.
\n","_postman_id":"c577774c-1961-47c3-8120-f796e12ae08b","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"