Every API here is available over the APIs.io API and to AI agents over MCP.
{"info":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","description":"<html><head></head><body><p>Welcome to the Splash API! This information has been assembled to make it easier to navigate our API and access your Splash data. This material covers the most commonly used endpoints. With the Splash API, users can retrieve data from Splash for use in other applications such as custom event hubs or data visualization tools.</p>\n<h1 id=\"api-access\">API Access</h1>\n<p>Use of the API requires a <em>Client ID</em> and a <em>Client Secret.</em> These are obtained by contacting your Customer Success Manager and discussing your API needs. Once the Client ID and Client Secret are generated, they can be delivered via a secure, cryptographic messaging app.</p>\n<p>When working with the Splash API, here are some best practices to keep in mind:</p>\n<ol>\n<li><p><strong>Rate Limiting</strong>: Ensure you pace your API calls appropriately to prevent overloading the system.</p>\n</li>\n<li><p><strong>Access Token Reuse</strong>: Reusing the same access token for multiple requests can help streamline authentication and reduce overhead.</p>\n</li>\n<li><p><strong>Token Refresh Flow</strong>: Implement the token refresh flow to maintain secure and continuous access, especially for long-running operations.</p>\n</li>\n<li><p><strong>Response Caching</strong>: Utilizing response caching can minimize redundant requests and improve response times for frequently accessed data.</p>\n</li>\n</ol>\n<p>Also, consider using the Simple Postback (outgoing webhook) integration, which offers real-time, UI-based configuration at the organization or event/theme level, and doesn't count against your API call limit. This integration can fulfill many use cases for retrieving Splash data effectively.</p>\n<h1 id=\"requests\">Requests</h1>\n<p>All valid Splash API requests begin with the domain: <a href=\"https://api.splashthat.com/\">https://api.splashthat.com/</a> From there, the remainder of a request is built on five separate elements.</p>\n<h2 id=\"endpoint\">Endpoint</h2>\n<p>The API is typically grouped into four top-level endpoints, each interacting with a Splash Object.</p>\n<ul>\n<li><p><strong>/oauth/v2/token</strong>: This authentication endpoint is where any API project begins. It handles the process of retrieving and refreshing access tokens to authorize all of your other calls.</p>\n</li>\n<li><p><strong>/events</strong>: This endpoint is used for handling events. While events may be retrieved, updated, and even deleted, it is very important to understand that event creation is handled via a separate API process.</p>\n</li>\n<li><p><strong>/groupcontacts (guests)</strong>: GroupContacts is an internal programmatic term for Splash event <em>guests</em>. This is your go-to endpoint for anything involving creating, retrieving, or updating them.</p>\n</li>\n<li><p><strong>/contacts</strong>: Splash separates its attendee data into two levels. GroupContacts (guests) are associated with individual events, whereas Contacts are records that exist at the organizational level and associate your GroupContacts (guests) across your different events. If you want to interact not just with a guest as they pertain to one event but as they pertain to all of your events, this is the endpoint to use.</p>\n</li>\n<li><p><strong>/crm/events</strong>: Creating events programmatically goes through a separate API. It requires a special API key, and we recommend consulting with our team before making use of the endpoint. It is a potent endpoint, and technical assistance in making use of it is crucial to success.</p>\n</li>\n</ul>\n<h2 id=\"verb\">Verb</h2>\n<p>Endpoints typically accept one or more of five methods/verbs:</p>\n<ul>\n<li><p><strong>GET</strong>: fetch an object's data</p>\n</li>\n<li><p><strong>POST</strong>: create an object</p>\n</li>\n<li><p><strong>PUT/PATCH</strong>: update an object</p>\n</li>\n<li><p><strong>DELETE</strong>: delete an object</p>\n</li>\n</ul>\n<h2 id=\"path-parameters\">Path Parameters</h2>\n<p>Path parameters come into play when interacting with individual Splash objects, such as a single event or a single contact. Each of these has a unique ID number, which is placed in the request path. Any remaining information is conveyed via query parameters.</p>\n<h2 id=\"query-parameters\">Query Parameters</h2>\n<p>Many API interactions include query parameters but they are especially important in GET requests. Chiefly, they are used to filter, search, sort, and paginate the results so that the size and content of responses can be controlled.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>Request bodies are not used in all calls, and with rare exceptions only come into play when creating or updating an object. When they are used, they are in JSON format. Beyond this, there are no wider considerations regarding fields or formatting, but each endpoint that accepts JSON bodies expects a different object. These are included in the call examples for each endpoint. Refer to those as you build your requests.</p>\n<h2 id=\"responses\">Responses</h2>\n<p>Splash API responses are JSON payloads, with an envelope containing the data of the response itself. Each envelope has up to three sections, allowing you to predict the keys you will be interacting with for each response.</p>\n<h2 id=\"meta\">Meta</h2>\n<p>If all is working well, the meta section displays a code 200. Should something go wrong, however, it will change to include an error type and an error message to aid in the process of debugging what exactly went wrong.</p>\n<h2 id=\"data\">Data</h2>\n<p>The data section forms the heart of any response from Splash and it is where information on successes, failures, and most importantly the data about your Splash objects is found. Each endpoint outlined here includes examples of responses from Splash containing the data you can expect to work with.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p>Splash endpoints all accept explicit-type pagination with limits, pages, and total counts included in the responses to allow for easier interactions with the data. Not all responses have pagination, for instance, a DELETE request does not return a set of data, just a success or failure, rendering pagination unnecessary.</p>\n<h2 id=\"api-rate-limiting\">API Rate Limiting</h2>\n<p>The Splash API uses rate limiting to ensure fair usage, prevent customers from overloading resources, and maximize performance.</p>\n<p>All requests made to the Splash API using a valid Client ID are subject to a default rate limit of <strong>2 requests per second</strong> (req/s). The rate limit is calculated based on the number of requests made within a rolling time window.</p>\n<p>If a client exceeds the rate limit, the API will respond with a <em>429 Too Many Requests</em> status code, indicating that the limit has been exceeded. This response includes a <code>RateLimit-Reset</code> header that specifies the duration in seconds, after which the client can retry the request.</p>\n<p><code>{ \"message\": \"API rate limit exceeded\" }</code></p>\n<p>To comply with the rate limit, monitoring the rate of your API requests is important. You can determine the remaining limit by inspecting the headers of the API response. For example, the <code>X-RateLimit-Limit-Second</code> header indicates the total number of requests allowed within the rate limit window, and the <code>X-RateLimit-Remaining-Second</code> header shows the number of requests remaining before reaching the limit.</p>\n<p>For more details on how to adhere to the rate limit, the benefits and impacts of rate limiting, and examples of the 429 response, refer to our Help Center article <a href=\"https://support.splashthat.com/hc/en-us/articles/13759878758541\">What is API rate limiting and what are the benefits and impacts?</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"API Access","slug":"api-access"},{"content":"Requests","slug":"requests"}],"owner":"6088160","collectionId":"1ea4e17d-5541-4b22-bffb-95199f944712","publishedId":"SVmvTe3o","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"5230EE"},"publishDate":"2019-10-22T19:40:51.000Z"},"item":[{"name":"Authentication","item":[{"name":"Access Token","id":"82e509c9-b52e-4c0f-81a2-2f2b398bff21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"grant_type","value":"password","type":"text"},{"key":"scope","value":"user","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"https://api.splashthat.com/oauth/v2/token","description":"<p>Use this endpoint and its parameters to acquire an <em>Access Token</em>.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["oauth","v2","token"],"host":["https://api.splashthat.com"],"query":[],"variable":[]}},"response":[{"id":"01486188-a442-47b1-9467-f7be59677651","name":"Successful Authorization","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"grant_type","value":"password","type":"text"},{"key":"scope","value":"user","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"https://api.splashthat.com/oauth/v2/token"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"access_token\": \"OTQyNWVkZDEzOGFjZjZkNzljMGFkZTI2OWZlNWNmMDIyNzA3OTFkNjJkZGVhZTk1OWZhZTAwMGU4YTIzMzIwMA\",\n \"expires_in\": 604800,\n \"token_type\": \"bearer\",\n \"scope\": \"user\",\n \"refresh_token\": \"ZDEyZTgwOTVjNzFjYTE2NGZmNjRmOTAyOWRlNDk3OTA3MTc3ZGM1MDAzNGQzYjlkMDU1YTdlMDViYWQyOWFkZQ\"\n}"},{"id":"ffb835a9-3483-4f00-8657-8a5b084069a3","name":"Rejected Credentials","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"grant_type","value":"password","type":"text"},{"key":"scope","value":"user","type":"text"},{"key":"username","value":"{{username}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"https://api.splashthat.com/oauth/v2/token"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n \"error\": \"invalid_grant\",\n \"error_description\": \"Invalid username and password combination\"\n}"}],"_postman_id":"82e509c9-b52e-4c0f-81a2-2f2b398bff21"},{"name":"Refresh Token","id":"363a070f-d478-4ffc-85f6-2b6280e9b38f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.splashthat.com/oauth/v2/token?client_id={{client_id}}&client_secret={{client_secret}}&grant_type=refresh_token&scope=user&refresh_token={{refresh_token}}","description":"<p>When your <em>Access Token</em> has expired, use this endpoint along with your <em>Refresh Token</em> to acquire a new one. </p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["oauth","v2","token"],"host":["https://api.splashthat.com"],"query":[{"description":{"content":"<p>Your Splash API client ID</p>\n","type":"text/plain"},"key":"client_id","value":"{{client_id}}"},{"description":{"content":"<p>Your Splash API client secret</p>\n","type":"text/plain"},"key":"client_secret","value":"{{client_secret}}"},{"description":{"content":"<p>This OAuth grant type indicates that you are refreshing your authentication, abridging the need for a username and password. </p>\n","type":"text/plain"},"key":"grant_type","value":"refresh_token"},{"description":{"content":"<p>As with the Access Token, the scope for the Refresh Token will be \"user.\"</p>\n","type":"text/plain"},"key":"scope","value":"user"},{"description":{"content":"<p>The refresh token you received when you originally authorized.</p>\n","type":"text/plain"},"key":"refresh_token","value":"{{refresh_token}}"}],"variable":[]}},"response":[{"id":"495b5bbc-7e22-401b-bcdf-6afcf79313c8","name":"Successful Refresh","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.splashthat.com/oauth/v2/token?client_id={{client_id}}&client_secret={{client_secret}}&grant_type=refresh_token&scope=user&refresh_token={{refresh_token}}","host":["https://api.splashthat.com"],"path":["oauth","v2","token"],"query":[{"key":"client_id","value":"{{client_id}}"},{"key":"client_secret","value":"{{client_secret}}"},{"key":"grant_type","value":"refresh_token"},{"key":"scope","value":"user"},{"key":"refresh_token","value":"{{refresh_token}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Sep 2019 17:23:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"no-store, private"},{"key":"Pragma","value":"no-cache"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"access_token\": \"OTQyNWVkZDEzOGFjZjZkNzljMGFkZTI2OWZlNWNmMDIyNzA3OTFkNjJkZGVhZTk1OWZhZTAwMGU4YTIzMzIwMA\",\n \"expires_in\": 604800,\n \"token_type\": \"bearer\",\n \"scope\": \"user\",\n \"refresh_token\": \"ZDEyZTgwOTVjNzFjYTE2NGZmNjRmOTAyOWRlNDk3OTA3MTc3ZGM1MDAzNGQzYjlkMDU1YTdlMDViYWQyOWFkZQ\"\n}"},{"id":"6b7d0f23-aa6a-4a46-8f5c-a15753ea045a","name":"Invalid Refresh Token","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.splashthat.com/oauth/v2/token?client_id={{client_id}}&client_secret={{client_secret}}&grant_type=refresh_token&scope=user&refresh_token={{refresh_token}}","host":["https://api.splashthat.com"],"path":["oauth","v2","token"],"query":[{"key":"client_id","value":"{{client_id}}"},{"key":"client_secret","value":"{{client_secret}}"},{"key":"grant_type","value":"refresh_token"},{"key":"scope","value":"user"},{"key":"refresh_token","value":"{{refresh_token}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Sep 2019 17:23:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-store, private"},{"key":"Pragma","value":"no-cache"}],"cookie":[],"responseTime":null,"body":"{\n \"error\": \"invalid_grant\",\n \"error_description\": \"Invalid refresh token\"\n}"}],"_postman_id":"363a070f-d478-4ffc-85f6-2b6280e9b38f"}],"id":"477ca8a0-07bb-43a0-a9ce-7d6db618cf7d","description":"<p>The authentication process for the Splash API follows the OAuth 2.0 standard. A <em>Client ID</em>, a <em>Client Secret</em>, a <em>Username</em>, and a <em>Password</em> are needed to acquire an access token. These parameters must be included in a request made to the <strong>Access Token</strong> endpoint, as explained below.</p>\n<p>Upon successful validation of these credentials, you will be issued both an <em>Access Token</em> and a <em>Refresh Token</em>. The <em>Access Token</em> remains valid for the next 8 hours. After this period, you must redeem the <em>Refresh Token</em> to acquire a new one. For all subsequent API requests, your <em>Access Token</em> should be included in the Authorization header for proper authentication.</p>\n","event":[{"listen":"prerequest","script":{"id":"04a2d88d-5ac2-4760-b2c6-bb2c87f8b62a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"817fb7cf-9c11-4923-8f38-343ce40a6002","type":"text/javascript","exec":[""]}}],"_postman_id":"477ca8a0-07bb-43a0-a9ce-7d6db618cf7d","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}}},{"name":"Events","item":[{"name":"All Events","id":"a761b9f1-dfa4-41fc-8ec5-22125597760c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"Authorization","value":"Bearer {{my_token}}","description":"<p>Use this header to send your access token.</p>\n","type":"text"}],"url":"https://api.splashthat.com/events?limit=5&page=1&search={{event_search_string}}&sort={{sort_type}}&upcoming={{upcoming_bool}}&past={{past_bool}}&tbd={{tbd_bool}}&event_start_after={{my_timestamp_a}}&event_start_before={{my_timestamp_b}}&tag_names[0]={{event_tag}}&venues[0]={{my_venue}}&event_type_ids[0]={{my_event_type}}&include_themes={{themes_bool}}&theme_ids[0]={{my_theme_id}}&exclude_ids[0]={{excluded_event}}&rsvp_events={{rsvp_bool}}&ticketed_events={{ticketed_bool}}&viewGroups[]=eventWorkflow","description":"<p>This endpoint is used for retrieving lists of Events from your Splash organization. It has a lot of flexibility to allow you to specify different search parameters and filters. Use these parameters to ensure workable payload sizes and relevant results.</p>\n<p>You can also include workflow information in the response payload by including the <em>viewsGroups[]=eventWorkflow</em> query parameter.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":true,"source":{"_postman_id":"1ea4e17d-5541-4b22-bffb-95199f944712","id":"1ea4e17d-5541-4b22-bffb-95199f944712","name":"Splash API v2.2","type":"collection"}},"urlObject":{"path":["events"],"host":["https://api.splashthat.com"],"query":[{"description":{"content":"<p>Limits how many events are returned. If no limit is specified, the default is set to 5. </p>\n","type":"text/plain"},"key":"limit","value":"5"},{"description":{"content":"<p>When using a limit, this will allow you to specify which page of results to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Use a search string to refine your results. Filters results by Event title, domain, and venue fields.</p>\n","type":"text/plain"},"key":"search","value":"{{event_search_string}}"},{"description":{"content":"<p>Sort the results by a requested field. Supported options are: </p>\n<ul>\n<li>created_desc </li>\n<li>created_asc</li>\n<li>event_start_desc</li>\n<li>event_start_asc</li>\n<li>title_asc</li>\n<li>title_desc</li>\n<li>modified_asc</li>\n<li>modified_desc</li>\n</ul>\n","type":"text/plain"},"key":"sort","value":"{{sort_type}}"},{"description":{"content":"<p>Constrains your results to events with a start date later than 2 days ago.</p>\n","type":"text/plain"},"key":"upcoming","value":"{{upcoming_bool}}"},{"description":{"content":"<p>Include or exclude past events.</p>\n","type":"text/plain"},"key":"past","value":"{{past_bool}}"},{"description":{"content":"<p>Include or exclude events with TBD dates. </p>\n","type":"text/plain"},"key":"tbd","value":"{{tbd_bool}}"},{"description":{"content":"<p>Only return events that start after a certain date (format: yyyy-mm-dd hh:mm:ss).</p>\n","type":"text/plain"},"key":"event_start_after","value":"{{my_timestamp_a}}"},{"description":{"content":"<p>Only return events that start before a certain date (format: yyyy-mm-dd hh:mm:ss).</p>\n","type":"text/plain"},"key":"event_start_before","value":"{{my_timestamp_b}}"},{"description":{"content":"<p>Search your Splash events by their tags. </p>\n","type":"text/plain"},"key":"tag_names[0]","value":"{{event_tag}}"},{"description":{"content":"<p>Specify the venues by which you would like to constrain your results. </p>\n","type":"text/plain"},"key":"venues[0]","value":"{{my_venue}}"},{"description":{"content":"<p>Enter the event types by which you would like to filter.</p>\n","type":"text/plain"},"key":"event_type_ids[0]","value":"{{my_event_type}}"},{"description":{"content":"<p>Include themes in the event list.</p>\n","type":"text/plain"},"key":"include_themes","value":"{{themes_bool}}"},{"description":{"content":"<p>Enter theme IDs to only retrieve events that use that specified theme.</p>\n","type":"text/plain"},"key":"theme_ids[0]","value":"{{my_theme_id}}"},{"description":{"content":"<p>Exclude specific event IDs from your request.</p>\n","type":"text/plain"},"key":"exclude_ids[0]","value":"{{excluded_event}}"},{"description":{"content":"<p>Limit your request to only RSVP events.</p>\n","type":"text/plain"},"key":"rsvp_events","value":"{{rsvp_bool}}"},{"description":{"content":"<p>Limit your request to only return ticketed events.</p>\n","type":"text/plain"},"key":"ticketed_events","value":"{{ticketed_bool}}"},{"description":{"content":"<p>Including this query parameter and value will return the workflow information in the response payloads. </p>\n","type":"text/plain"},"key":"viewGroups[]","value":"eventWorkflow"}],"variable":[]}},"response":[{"id":"0cb8af96-f23e-4cba-b417-79616715beb8","name":"Retrieve events with workflow information","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"description":"Use this header to send your access token.","key":"Authorization","type":"text","value":"{{my_token}}"}],"url":{"raw":"https://api.splashthat.com/events?limit=5&page=1&access_token=NjNiMDgyODljNzgwZjgxZGM0NzUzOThjOTNkNDI2NjY3NWM2YmVjMTViYjkxODgyN2Y1ODI2NTQwN2E5NWUxNQ&viewGroups[]=eventWorkflow","host":["https://api.splashthat.com"],"path":["events"],"query":[{"key":"limit","value":"5","description":"Limits how many events are returned. If no limit is specified, the default is set to 5. "},{"key":"page","value":"1","description":"When using a limit, this will allow you to specify which page of results to retrieve."},{"key":"search","value":"{{event_search_string}}","description":"Use a search string to refine your results. ","disabled":true},{"key":"sort","value":"{{sort_type}}","description":"Sort the results by a requested field. Supported options are: \n* created_desc \n* created_asc\n* event_start_desc\n* event_start_asc\n* title_asc\n* title_desc\n* modified_asc\n* modified_desc","disabled":true},{"key":"upcoming","value":"{{upcoming_bool}}","description":"Constrains your results to events with a start date later than 2 days ago.","disabled":true},{"key":"past","value":"{{past_bool}}","description":"Include or exclude past events.","disabled":true},{"key":"tbd","value":"{{tbd_bool}}","description":"Include or exclude events with TBD dates. ","disabled":true},{"key":"event_start_after","value":"{{my_timestamp_a}}","description":"Only return events that start after a certain date (format: yyyy-mm-dd hh:mm:ss).","disabled":true},{"key":"event_start_before","value":"{{my_timestamp_b}}","description":"Only return events that start before a certain date (format: yyyy-mm-dd hh:mm:ss).","disabled":true},{"key":"tag_names[0]","value":"{{event_tag}}","description":"Search your Splash events by their tags. ","disabled":true},{"key":"venues[0]","value":"{{my_venue}}","description":"Specify the venues by which you would like to constrain your results. ","disabled":true},{"key":"event_type_ids[0]","value":"{{my_event_type}}","description":"Enter the event types by which you would like to filter.","disabled":true},{"key":"include_themes","value":"{{themes_bool}}","description":"Include themes in the event list.","disabled":true},{"key":"theme_ids[0]","value":"{{my_theme_id}}","description":"Enter theme IDs to only retrieve events that use that specified theme.","disabled":true},{"key":"exclude_ids[0]","value":"{{excluded_event}}","description":"Exclude specific event IDs from your request.","disabled":true},{"key":"rsvp_events","value":"{{rsvp_bool}}","description":"Limit your request to only RSVP events.","disabled":true},{"key":"ticketed_events","value":"{{ticketed_bool}}","description":"Limit your request to only return ticketed events.","disabled":true},{"key":"access_token","value":"NjNiMDgyODljNzgwZjgxZGM0NzUzOThjOTNkNDI2NjY3NWM2YmVjMTViYjkxODgyN2Y1ODI2NTQwN2E5NWUxNQ"},{"key":"viewGroups[]","value":"eventWorkflow","description":"Including this query parameter and value will return the workflow information in the response payloads. "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 23 Sep 2020 16:39:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n \"page\": 1,\n \"limit\": 5,\n \"count\": 41,\n \"data\": [\n {\n \"id\": 457932652,\n \"stats\": [\n {\n \"name\": \"unique_visitors\",\n \"count\": 0\n },\n {\n \"name\": \"invited\",\n \"count\": 0\n },\n {\n \"name\": \"rsvp_yes\",\n \"count\": 0\n },\n {\n \"name\": \"checkin_yes\",\n \"count\": 0\n }\n ],\n \"event_owner_first_name\": \"Perry\",\n \"event_owner_last_name\": \"Hubs\",\n \"event_owner_email\": \"perry+hubs@splashthat.com\",\n \"registration_updating_enabled\": \"\",\n \"registration_updating_deadline\": 0,\n \"user\": [],\n \"organization\": [],\n \"event_type\": {\n \"id\": 24548,\n \"name\": \"Happy Hours\"\n },\n \"time_zone\": [],\n \"event_stages\": [\n []\n ],\n \"event_workflow\": {\n \"workflow_id\": \"0212d6a0-fdad-11ea-be23-d7767e14ad3b\",\n \"status\": \"approved\"\n },\n \"splash_theme\": {\n \"id\": 1212608,\n \"name\": \"Promote\",\n \"abbr\": \"Promote\",\n \"image_url\": \"//d24wuq6o951i2g.cloudfront.net/img/events/id/457/457399824/assets/1f8.sm-2-full.png\",\n \"thumbnail_url\": null,\n \"sort\": 0,\n \"active\": true,\n \"created\": \"2019-09-16T17:13:30-0400\"\n },\n \"event_setting\": {\n \"id\": 1833616,\n \"header_image\": \"http://d24wuq6o951i2g.cloudfront.net/img/events/id/457/457451161/assets/5e719763a740b026dec60a467d2b5a5a.cf6.ben-blennerhassett-ZXfUUM_LR0k-unsplash.jpg\",\n \"rsvp_open\": true,\n \"wait_list\": false,\n \"rsvp_method\": \"collect\",\n \"lat\": \"NaN\",\n \"lng\": \"NaN\",\n \"currency\": [],\n \"event_hashtag\": \"#CorialentNow\",\n \"rsvp_max\": 1,\n \"custom_questions\": [\n {\n \"type\": \"text\",\n \"name\": \"FIRST NAME\",\n \"required\": true,\n \"column_name\": \"first_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"text\",\n \"name\": \"LAST NAME\",\n \"required\": true,\n \"column_name\": \"last_name\",\n \"values\": [],\n \"selected_values\": []\n },\n {\n \"type\": \"email\",\n \"name\": \"EMAIL\",\n \"required\": true,\n \"column_name\": \"email\",\n \"values\": [],\n \"selected_values\": []\n }\n ],\n \"event_cards\": {\n \"x1\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x1.deb10686.png\",\n \"x2\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x2.6ee6d63d.png\",\n \"x3\": \"https://s3.amazonaws.com/s3.clients.splashthat.com/img/events/splash/cards/457932652.x3.3733ff1e.png\"\n },\n \"venue_tbd\": 1,\n \"rsvp_guest_display\": false,\n \"rsvp_closed_state\": \"open\",\n \"rsvp_closed_at\": null,\n \"rsvp_closed_team_notified\": false,\n \"waitlist_settings\": [],\n \"page_privacy_type\": \"none\",\n \"email_settings\": {\n \"triggered_emails\": [\n {\n \"trigger\": \"rsvp-yes\",\n \"active\": 1,\n \"include_pdf_attachment\": 0,\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n },\n {\n \"trigger\": \"ticket-default\",\n \"subject\": \"[first_name], thanks for purchasing tickets for [title].\",\n \"content\": \"Thank you for your purchase. \",\n \"include_calendar_attachment\": 1,\n \"include_pdf_attachment\": 1,\n \"pdf_content\": null,\n \"use_default_confirmation\": 0,\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n },\n {\n \"trigger\": \"ticket-multi\",\n \"event_message_id\": null,\n \"event_message_linked_to_theme\": 1\n }\n ]\n },\n \"event_host\": \"Perry Hubs\",\n \"button_closed_message\": \"\",\n \"autosave\": false\n },\n \"ticket_types\": [],\n \"statistics\": null,\n \"group_ids\": [\n \"12701\"\n ],\n \"title\": \"Hello Test Event\",\n \"description\": \"\",\n \"description_text\": \"<p>It’s not just another fashion event, it is however – all about the benjamins, his glasses that is. Get access to the finest in designer eyewear from Scandinavian boutique brands and couture eyewear fanatics. Space is limited.</p>\",\n \"
# --- truncated at 32 KB (451 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/splashthat/refs/heads/main/postman/splashthat-api.postman_collection.json