{"info":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","description":"<html><head></head><body><h2 id=\"endpoints\">Endpoints</h2>\n<p>API Base URL: <a href=\"https://api.sweap.io/core/v1\">https://api.sweap.io/core/v1</a></p>\n<p>API Version: 1.5.4</p>\n<p>Available endpoints are:</p>\n<ul>\n<li><p><code>/events</code></p>\n</li>\n<li><p><code>/event-statistics</code></p>\n</li>\n<li><p><code>/guests</code></p>\n</li>\n<li><p><code>/categories</code></p>\n</li>\n<li><p><code>/guest-bulk-imports</code></p>\n</li>\n<li><p><code>/checkins</code></p>\n</li>\n<li><p><code>/visibility-groups</code></p>\n</li>\n<li><p><code>/event-tags</code></p>\n</li>\n<li><p><code>/recipients</code></p>\n</li>\n<li><p><code>/contacts</code> (BETA)</p>\n</li>\n<li><p><code>/registration-pages</code> (restricted)</p>\n</li>\n<li><p><code>/management</code></p>\n</li>\n</ul>\n<h2 id=\"openapi-specification\">OpenAPI Specification</h2>\n<p>An <a href=\"https://www.openapis.org/\">OpenAPI specification (OAS)</a> is available at this URL: <a href=\"https://api.sweap.io/openapi/api-docs/core\">https://api.sweap.io/openapi/api-docs/core</a><br>It can be used to generate an API client as described <a href=\"https://openapi-generator.tech/\">here</a>.</p>\n<h2 id=\"api-updates\">API Updates</h2>\n<p>News and updates about API changes are published on our Postman page:</p>\n<ul>\n<li><a href=\"https://www.postman.com/sweapio\">Sweap Postman Workspace</a></li>\n<li><a href=\"https://www.postman.com/sweapio/sweap-public-apis/overview?tab=updates\">API Updates Feed</a></li>\n</ul>\n<h2 id=\"versioning\">Versioning</h2>\n<p>All API requests should include the <code>X-API-Version</code> HTTP header with the current version that the client is using to make the request. The server will also return the version that it is using as the <code>X-API-Version</code> header.</p>\n<p><strong>The current API version is 1.5.4</strong></p>\n<p>If the client does not send an <code>X-API-Version</code> header, it is assumed that the latest version is being used.<br>For future releases, this header will provide backward compatibility for a period of time in case of breaking changes.</p>\n<h2 id=\"date-format\">Date Format</h2>\n<p>All timestamps are in ISO 8601 format with UTC / Zulu Time Zone (Z): <code>yyyy-MM-dd'T'HH:mm:ss.SSSZ</code>, for example <code>2021-09-27T09:52:02.752Z</code>.</p>\n<h2 id=\"error-handling\">Error Handling</h2>\n<p>In case of an error, instead of returning the resource, the API will return an error resource instead. Every error response also includes a <code>requestId</code> (and the <code>X-Request-Id</code> header) so you can share it with Sweap Support while the human-readable message stays generic.</p>\n<p><strong>Example</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 4090,\n  \"error\": \"Stale Resource\",\n  \"message\": \"submitted version 8, but latest version is 9\",\n  \"requestId\": \"c93b0a74-6c5c-4e2e-b3d1-7d8e3d7b01d4\"\n}\n</code></pre>\n<p>In this case 4090 doesn't encode more information than plain 409, but in the future there might be a 4091, so this lays the groundwork for it. Please read the next chapter for clarification.</p>\n<h3 id=\"extended-error-codes\">Extended Error Codes</h3>\n<p>In addition to the default HTTP status codes in certain scenarios, the API will return additional error codes that extend the 3 digit HTTP status code with an additional digit to offer more specific details.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Error</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>4000</code></td>\n<td>Missing Property</td>\n<td>Like HTTP 400, specifically when required property is not set (currently only when <code>version</code> not set on a PUT, see section Updating Resources)</td>\n</tr>\n<tr>\n<td><code>4001</code></td>\n<td>Invalid Property</td>\n<td>A key in the request JSON is invalid. E.g. reference to a non existing id.</td>\n</tr>\n<tr>\n<td><code>4002</code></td>\n<td>Parent Resource Not Existing</td>\n<td>The parent resource doesn't exist. E.g. when a guest's parent event was deleted and <code>eventId</code> doesn't exist any longer.</td>\n</tr>\n<tr>\n<td><code>4003</code></td>\n<td>Referential Integrity Violation</td>\n<td>The resource cannot be deleted as it is still being required by another resource.</td>\n</tr>\n<tr>\n<td><code>4020</code></td>\n<td>Insufficient Registration Quota</td>\n<td>You have exceeded your registration quota for your Sweap subscription. You must increase your quota before setting an event to ACTIVE. See here for more information: <a href=\"https://www.sweap.io/en/registration-quota\">https://www.sweap.io/en/registration-quota</a></td>\n</tr>\n<tr>\n<td><code>4031</code></td>\n<td>Access Denied Missing Permission</td>\n<td>The JWT is missing the required role to access this resource, e.g. events_read.</td>\n</tr>\n<tr>\n<td><code>4040</code></td>\n<td>Resource Not Found</td>\n<td>The resource was not found, e.g. a GET with a wrong id or resource has been deleted.</td>\n</tr>\n<tr>\n<td><code>4090</code></td>\n<td>Stale Resource</td>\n<td>The server resource already has a higher <code>version</code> when trying to update a resource via PUT. This prevents version conflicts, see section Updating Resources.</td>\n</tr>\n<tr>\n<td><code>5000</code></td>\n<td>Unknown</td>\n<td>Unknown server error which usually should not happen and hints, that something might be broken for the API.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"crud-requests-overview\">CRUD Requests Overview</h2>\n<h3 id=\"retrieving-resources\">Retrieving Resources</h3>\n<p>A <code>GET</code> request to a resource without an id will return an array of objects.\nThe following example returns all event objects that are assigned to the client making the request. All lists are paginated and return as maximum 1.000 elements:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-shell\">curl --include --request GET \\\n--url \"https://api.sweap.io/core/v1/events\" \\\n--header \"X-API-Version: 1.5.4\"\n</code></pre>\n<p>A specific resource is requested by appending an index to the path, as shown by this example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-shell\">curl --include --request GET \\\n--url \"https://api.sweap.io/core/v1/events/a7feb533-b859-43d9-acfc-49b68de5f896\" \\\n--header \"X-API-Version: 1.5.4\"\n</code></pre>\n<p>Additionally, by passing the query parameter <code>updatedAfter=</code>, only the resources that were changed after that timestamp will be returned. This allows for incremental updates.</p>\n<h4 id=\"pagination\">Pagination</h4>\n<p>All list and paginated endpoints offer and require pagination via <code>page</code>, <code>size</code>, <code>sortBy</code> and <code>sortOrder</code> parameters.</p>\n<ul>\n<li><p><strong>page</strong> = page number (default value = 0)</p>\n</li>\n<li><p><strong>size</strong> = number of results on a page (default value = 100, min = 1, max = 1000)</p>\n</li>\n<li><p><strong>sortBy</strong> = sorting the list by a resource variable (default value = createdAt)</p>\n</li>\n<li><p><strong>sortOrder</strong> = sorting order either DESC (descending) or ASC (ascending) (default value = DESC)</p>\n</li>\n</ul>\n<p>When a response is paginated, the response headers will include a <code>link</code> header. If all results fit on a single page, the <code>link</code> header will be omitted.</p>\n<p>The <code>link</code> header contains URLs that you can use to fetch additional pages of results. For example, the previous, next, first, and last page of results.</p>\n<p>If the response is paginated, the <code>link</code> header will look something like this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>link: &lt;https://api.sweap.io/core/v1/events?page=4&amp;size=10&gt;; rel=\"next\", \n      &lt;https://api.sweap.io/core/v1/events?page=2&amp;size=10&gt;; rel=\"prev\", \n      &lt;https://api.sweap.io/core/v1/events?page=0&amp;size=10&gt;; rel=\"first\",\n      &lt;https://api.sweap.io/core/v1/events?page=50&amp;size=10&gt;; rel=\"last\"\n</code></pre><p>The <code>link</code> header provides the URL for the previous, next, first, and last page of results:</p>\n<ul>\n<li><p>The URL for the previous page is followed by <code>rel=\"prev\"</code>.</p>\n</li>\n<li><p>The URL for the next page is followed by <code>rel=\"next\"</code>.</p>\n</li>\n<li><p>The URL for the last page is followed by <code>rel=\"last\"</code>.</p>\n</li>\n<li><p>The URL for the first page is followed by <code>rel=\"first\"</code>.</p>\n</li>\n</ul>\n<p>In some cases, only a subset of these links are available. For example, the link to the previous page won't be included if you are on the first page of results, and the link to the last page won't be included if it can't be calculated.</p>\n<p>You can use the URLs from the <code>link</code> header to request another page of results. For example, to request the last page of results based on the previous example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-shell\">curl --include --request GET \\\n--url \"https://api.sweap.io/core/v1/events?page=50&amp;size=10\" \\\n--header \"X-API-Version: 1.5.4\"\n</code></pre>\n<p>The URLs in the <code>link</code> header use query parameters to indicate which page of results to return and include the <code>page</code> and <code>size</code> query parameters.</p>\n<h3 id=\"creating-resources\">Creating Resources</h3>\n<p>A <code>POST</code> request to a resource with an accompanying JSON body will create a new object. The API will return the newly created object with its unique ID.</p>\n<p>Additionally, timestamps like <code>createdAt</code> and <code>updatedAt</code> timestamps will be managed by the API. All timestamps are in ISO 8601 format: <code>yyyy-MM-dd'T'HH:mm:ss.SSSZ</code>.</p>\n<h3 id=\"updating-resources\">Updating Resources</h3>\n<p>A <code>PUT</code> request to a specific resource with an accompanying JSON body will update the object and automatically increment the <code>version</code> field, as well as refresh <code>updatedAt</code>.</p>\n<p><em>IMPORTANT</em>: the JSON body of the object must contain the <strong>current</strong> <code>version</code> tag for the purpose of <a href=\"https://de.wikipedia.org/wiki/Optimistic_Concurrency\">Optimistic Locking</a>. If you pass an outdated <code>version</code> tag the API will return a <code>409</code> error.</p>\n<h3 id=\"deleting-resources\">Deleting Resources</h3>\n<p>A <code>DELETE</code> request to a specific resource will delete an object. If the delete request was successful the API will return with a status code of <code>200</code>.</p>\n<h2 id=\"common-fields-on-all-resources\">Common Fields On All Resources</h2>\n<p>All resources are transmitted in JSON format. Every resource comes with a set of common fields and resource specific fields.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td><code>String</code> (UUID)</td>\n<td>read-only</td>\n<td>unique identifier assigned by the API</td>\n</tr>\n<tr>\n<td><code>version</code></td>\n<td><code>Number</code> (Integer)</td>\n<td>read-only</td>\n<td>current version number for <em>Optimistic Locking</em></td>\n</tr>\n<tr>\n<td><code>updatedAt</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>ISO 8601 timestamp of last change</td>\n</tr>\n<tr>\n<td><code>createdAt</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>ISO 8601 timestamp of creation</td>\n</tr>\n<tr>\n<td><code>externalId</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-write</td>\n<td>used to reference IDs in externally systems. Free to choose and not unique in the system.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"authentication\">Authentication</h2>\n<p>The API uses OAuth 2.0 with a client credentials flow (as described by <a href=\"https://auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow\">auth0</a>).</p>\n<p>You don't need to request scopes. This flow is best suited for machine-to-machine (M2M) applications, \nsuch as CLIs, daemons, or backend services, because the system needs to authenticate \nand authorize the application instead of a user.</p>\n<p>The lifetime of the JWT access token is 60 minutes. After that, \nyou must re-request a new token using the client credentials flow \nwith <code>client_id</code> and <code>client_secret</code> and <code>grant_type=client_credentials</code>. \nThe client credentials flow does not include a refresh token (as required \nby the <a href=\"https://datatracker.ietf.org/doc/html/rfc6749#section-4.4.3\">specification</a>).</p>\n<p>The JWT defines which resources the application can access. \nYou can find the resource access in the JWT claim <code>resource_access</code> in the <code>core-api</code> <code>roles</code> array. \nEach endpoint usually has an <code>read</code>and a <code>write</code> role. The <code>admin</code> role contains all other roles.\nThese roles are defined in the Sweap application for each API client.\nCurrently, these roles are supported:</p>\n<ul>\n<li><p><code>events_read</code></p>\n</li>\n<li><p><code>events_write</code></p>\n</li>\n<li><p><code>categories_read</code></p>\n</li>\n<li><p><code>guests_read</code></p>\n</li>\n<li><p><code>guests_write</code></p>\n</li>\n<li><p><code>guest_bulk_imports_read</code></p>\n</li>\n<li><p><code>guest_bulk_imports_write</code></p>\n</li>\n<li><p><code>contacts_read</code></p>\n</li>\n<li><p><code>contacts_write</code></p>\n</li>\n<li><p><code>event_statistics_read</code></p>\n</li>\n<li><p><code>checkins_read</code></p>\n</li>\n<li><p><code>checkins_write</code></p>\n</li>\n<li><p><code>visibility_groups_read</code></p>\n</li>\n<li><p><code>event_tags_read</code></p>\n</li>\n<li><p><code>recipients_read</code></p>\n</li>\n<li><p><code>registration_pages_read</code></p>\n</li>\n<li><p><code>deleted_resources_read</code></p>\n</li>\n</ul>\n<h3 id=\"restricted-access-by-license\">Restricted Access by License</h3>\n<p>The following roles are restricted and are not included in the default API licenses:</p>\n<ul>\n<li><code>deleted_resources_read</code></li>\n<li><code>registration_pages_read</code></li>\n<li><code>checkins_write</code></li>\n</ul>\n<p>⚠️ Please contact the Sweap Support team at <a href=\"mailto:support@sweap.io\">support@sweap.io</a> to request access.</p>\n<h3 id=\"example\">Example</h3>\n<p>Here is an example of how to request an access token:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-shell\">curl --location 'https://auth.sweap.io/realms/users/protocol/openid-connect/token' \\\n--header 'Content-Type: application/x-www-form-urlencoded' \\\n--data-urlencode 'client_id=&lt;Ask Sweap to get a value&gt;' \\\n--data-urlencode 'client_secret=&lt;Ask Sweap to get a value&gt;' \\\n--data-urlencode 'grant_type=client_credentials'\n</code></pre>\n<h2 id=\"additional-resources\">Additional Resources</h2>\n<p>Contact Support:\n Name: <a href=\"mailto:support@sweap.io\">support@sweap.io</a>\n Email: <a href=\"mailto:support@sweap.io\">support@sweap.io</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"2047","collectionId":"53646fe7-333c-4bb2-a8c9-dc37939f3949","publishedId":"2sB34imLSH","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"339cc2"},"publishDate":"2025-07-17T20:47:31.000Z"},"item":[{"name":"Events","item":[{"name":"Get an event by ID","id":"b65d8638-fb4e-4d77-8059-080bddbb09d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/events/:id","description":"<p>Get the event with the specified ID</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","events",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"5816d204-f06b-4130-89ba-26f2915d148e","description":{"content":"<p>(Required) ID (UUID) of the event</p>\n","type":"text/plain"},"type":"any","value":"123e4567-e89b-12d3-a456-426655440000","key":"id"}]}},"response":[{"id":"bd704ac9-cc0e-4e51-9653-adbc88e94106","name":"Events information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/:id","host":["https://api.sweap.io"],"path":["core","v1","events",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"name\": \"My Event\",\n  \"startDate\": \"2025-01-27T09:30:00.000Z\",\n  \"endDate\": \"2025-01-27T17:00:00.000Z\",\n  \"zoneId\": \"Europe/Berlin\",\n  \"state\": \"ACTIVE\",\n  \"attendanceMode\": \"OFFLINE\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"location\": {\n    \"latitude\": 4113.309055519168,\n    \"longitude\": 4955.809885483369,\n    \"textRepresentation\": \"Sweap Office\",\n    \"formattedAddress\": \"Rankestraße 9, 10789 Berlin, Germany\"\n  },\n  \"visibilityGroupIds\": [\n    \"string\"\n  ],\n  \"eventTagIds\": [\n    \"string\"\n  ]\n}"},{"id":"fbae33a2-db9a-4ced-afb0-9ffe89ee777b","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/:id","host":["https://api.sweap.io"],"path":["core","v1","events",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"108ea76a-6cde-4ef9-872e-fa0b0b82dfda","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/:id","host":["https://api.sweap.io"],"path":["core","v1","events",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"2ccbe374-65cd-4efe-a33f-123d2fab69aa","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/:id","host":["https://api.sweap.io"],"path":["core","v1","events",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4040,\n  \"message\": \"No [resource name] resource with id 123e4567-e89b-12d3-a456-426655440000 found.\",\n  \"requestId\": \"08ed380a-2c42-447a-abcb-22cb872da017\"\n}\n"},{"id":"7b96cb41-d43d-4581-91fe-3500eb4744ea","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/:id","host":["https://api.sweap.io"],"path":["core","v1","events",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"b65d8638-fb4e-4d77-8059-080bddbb09d2"},{"name":"Update the external ID of an event by ID","id":"04c4b1a0-4f3b-4d2f-9f3f-8bf4b1dc5b70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/events/:id","description":"<p>Update the external ID of the event with the specified ID using the provided JSON merge patch event object containing the new external ID.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","events",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"9ea3fe1e-c971-4f21-bab8-318d1c22ef05","description":{"content":"<p>(Required) ID (UUID) of the event</p>\n","type":"text/plain"},"type":"any","value":"123e4567-e89b-12d3-a456-426655440000","key":"id"}]}},"response":[{"id":"f2308885-b897-4f77-8f3b-5f2fba41a6d5","name":"Event information updated successfully","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/events/:id","host":["https://api.sweap.io"],"path":["core","v1","events",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"externalId\": \"abc-1234\"\n}"},{"id":"bb764180-dc7c-4f4f-97e7-0b78a57a9385","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/events/:id","host":["https://api.sweap.io"],"path":["core","v1","events",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"0dce6840-3b58-407d-ad11-a1d11e0c194f","name":"Forbidden","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/events/:id","host":["https://api.sweap.io"],"path":["core","v1","events",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"2ee382d9-e494-4746-955f-19034d323afe","name":"Internal Server Error","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/events/:id","host":["https://api.sweap.io"],"path":["core","v1","events",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"04c4b1a0-4f3b-4d2f-9f3f-8bf4b1dc5b70"},{"name":"Update the state of an event by ID","id":"b892b86e-746d-41ba-801c-c363a7fbe966","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"state\": \"ACTIVE\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/events/:id/state","description":"<p>Update the state of the event with the specified ID using the provided JSON merge patch event object containing the new state.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","events",":id","state"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"a40978dd-9fce-4a2e-90a1-12560ec138fe","description":{"content":"<p>(Required) ID (UUID) of the event</p>\n","type":"text/plain"},"type":"any","value":"123e4567-e89b-12d3-a456-426655440000","key":"id"}]}},"response":[{"id":"1c2c040c-493a-4c90-b111-d4d0f68e2201","name":"Event information updated successfully","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"state\": \"ACTIVE\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/events/:id/state","host":["https://api.sweap.io"],"path":["core","v1","events",":id","state"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"state\": \"ACTIVE\"\n}"},{"id":"fa82f031-6153-4d81-9ffe-a1a30edbadb7","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"state\": \"ACTIVE\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/events/:id/state","host":["https://api.sweap.io"],"path":["core","v1","events",":id","state"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"c2bd5735-e975-4654-b2c7-de9861cb1a67","name":"Payment Required","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"state\": \"ACTIVE\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/events/:id/state","host":["https://api.sweap.io"],"path":["core","v1","events",":id","state"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient Registration Quota\",\n  \"code\": 4020,\n  \"message\": \"You have exceeded your registration quota for your Sweap subscription. You must increase your quota before setting an event to ACTIVE. See here for more information: https://www.sweap.io/en/registration-quota.\",\n  \"requestId\": \"17ab8fb3-52ad-42d4-a08e-f5623f215da6\"\n}\n"},{"id":"8287dcea-c884-4677-a3eb-1723a32ed719","name":"Forbidden","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"state\": \"ACTIVE\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/events/:id/state","host":["https://api.sweap.io"],"path":["core","v1","events",":id","state"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"75e9e9da-b23e-4413-8457-f6bce4245d11","name":"Internal Server Error","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"state\": \"ACTIVE\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/events/:id/state","host":["https://api.sweap.io"],"path":["core","v1","events",":id","state"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"b892b86e-746d-41ba-801c-c363a7fbe966"},{"name":"Get events as list","id":"336d11ea-fc7e-44ac-aa01-53aa2f3e48ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/events","description":"<p>Get a paginated list of events based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","events"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact event name</p>\n","type":"text/plain"},"key":"name","value":"My Event"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for event name containing the value</p>\n","type":"text/plain"},"key":"nameContains","value":"event"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of one event state (This can only be one of DRAFT,ACTIVE,ARCHIVED)</p>\n","type":"text/plain"},"key":"state","value":"ACTIVE"},{"disabled":true,"description":{"content":"<p>optional, filters for startDateBefore equal or less than event startDate</p>\n","type":"text/plain"},"key":"startDateBefore","value":"2025-01-27T12:15:00.000Z"},{"disabled":true,"description":{"content":"<p>optional, filters for startDateAfter equal or greater than event startDate</p>\n","type":"text/plain"},"key":"startDateAfter","value":"2025-01-27T08:00:00.000Z"},{"disabled":true,"description":{"content":"<p>optional, filters for endDateBefore equal or less than event endDate</p>\n","type":"text/plain"},"key":"endDateBefore","value":"2025-01-27T20:00:00.000Z"},{"disabled":true,"description":{"content":"<p>optional, filters for endDateAfter equal or greater than event endDate</p>\n","type":"text/plain"},"key":"endDateAfter","value":"2025-01-27T16:35:00.000Z"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of one visibilityGroupId</p>\n","type":"text/plain"},"key":"visibilityGroupId","value":"5b05d452-9429-4ba1-a8ce-47dce840982"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of one eventTagId</p>\n","type":"text/plain"},"key":"eventTagId","value":"f4875291-eb66-4b20-9182-8378e5254c20"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,startDate,endDate,name)</p>\n","type":"text/plain"},"key":"sortBy","value":"startDate"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (no default value, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"1000"}],"variable":[]}},"response":[{"id":"71611903-aafc-4732-97e6-f952e81730fc","name":"Events information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events","host":["https://api.sweap.io"],"path":["core","v1","events"],"query":[{"description":"optional, filters case insensitive for exact event name","key":"name","value":"My Event","disabled":true},{"description":"optional, filters case insensitive for event name containing the value","key":"nameContains","value":"event","disabled":true},{"description":"optional, filters for exact match of one event state (This can only be one of DRAFT,ACTIVE,ARCHIVED)","key":"state","value":"ACTIVE","disabled":true},{"description":"optional, filters for startDateBefore equal or less than event startDate","key":"startDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for startDateAfter equal or greater than event startDate","key":"startDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, filters for endDateBefore equal or less than event endDate","key":"endDateBefore","value":"2025-01-27T20:00:00.000Z","disabled":true},{"description":"optional, filters for endDateAfter equal or greater than event endDate","key":"endDateAfter","value":"2025-01-27T16:35:00.000Z","disabled":true},{"description":"optional, filters for exact match of one visibilityGroupId","key":"visibilityGroupId","value":"5b05d452-9429-4ba1-a8ce-47dce840982","disabled":true},{"description":"optional, filters for exact match of one eventTagId","key":"eventTagId","value":"f4875291-eb66-4b20-9182-8378e5254c20","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,startDate,endDate,name)","key":"sortBy","value":"startDate","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"name\": \"My Event\",\n    \"startDate\": \"2025-01-27T09:30:00.000Z\",\n    \"endDate\": \"2025-01-27T17:00:00.000Z\",\n    \"zoneId\": \"Europe/Berlin\",\n    \"state\": \"ACTIVE\",\n    \"attendanceMode\": \"OFFLINE\",\n    \"customFieldDefinitions\": [\n      {\n        \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n        \"name\": \"Text value\",\n        \"sortIndex\": 0,\n        \"type\": \"TEXT\",\n        \"groupName\": \"Personal information\",\n        \"options\": {\n          \"values\": [\n            {\n              \"value\": \"S\",\n              \"limit\": 25\n            },\n            {\n              \"value\": \"M\",\n              \"limit\": 100\n            }\n          ],\n          \"globalLimit\": 50\n        }\n      },\n      {\n        \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n        \"name\": \"Text value\",\n        \"sortIndex\": 0,\n        \"type\": \"TEXT\",\n        \"groupName\": \"Personal information\",\n        \"options\": {\n          \"values\": [\n            {\n              \"value\": \"S\",\n              \"limit\": 25\n            },\n            {\n              \"value\": \"M\",\n              \"limit\": 100\n            }\n          ],\n          \"globalLimit\": 50\n        }\n      }\n    ],\n    \"location\": {\n      \"latitude\": 8451.032644154766,\n      \"longitude\": 137.52806874033686,\n      \"textRepresentation\": \"Sweap Office\",\n      \"formattedAddress\": \"Rankestraße 9, 10789 Berlin, Germany\"\n    },\n    \"visibilityGroupIds\": [\n      \"string\"\n    ],\n    \"eventTagIds\": [\n      \"string\"\n    ]\n  },\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"name\": \"My Event\",\n    \"startDate\": \"2025-01-27T09:30:00.000Z\",\n    \"endDate\": \"2025-01-27T17:00:00.000Z\",\n    \"zoneId\": \"Europe/Berlin\",\n    \"state\": \"ACTIVE\",\n    \"attendanceMode\": \"OFFLINE\",\n    \"customFieldDefinitions\": [\n      {\n        \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n        \"name\": \"Text value\",\n        \"sortIndex\": 0,\n        \"type\": \"TEXT\",\n        \"groupName\": \"Personal information\",\n        \"options\": {\n          \"values\": [\n            {\n              \"value\": \"S\",\n              \"limit\": 25\n            },\n            {\n              \"value\": \"M\",\n              \"limit\": 100\n            }\n          ],\n          \"globalLimit\": 50\n        }\n      },\n      {\n        \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n        \"name\": \"Text value\",\n        \"sortIndex\": 0,\n        \"type\": \"TEXT\",\n        \"groupName\": \"Personal information\",\n        \"options\": {\n          \"values\": [\n            {\n              \"value\": \"S\",\n              \"limit\": 25\n            },\n            {\n              \"value\": \"M\",\n              \"limit\": 100\n            }\n          ],\n          \"globalLimit\": 50\n        }\n      }\n    ],\n    \"location\": {\n      \"latitude\": 5307.318317279805,\n      \"longitude\": 2789.7313653099077,\n      \"textRepresentation\": \"Sweap Office\",\n      \"formattedAddress\": \"Rankestraße 9, 10789 Berlin, Germany\"\n    },\n    \"visibilityGroupIds\": [\n      \"string\"\n    ],\n    \"eventTagIds\": [\n      \"string\"\n    ]\n  }\n]"},{"id":"cbb20716-c5eb-4359-9ceb-5599c00b984a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events","host":["https://api.sweap.io"],"path":["core","v1","events"],"query":[{"description":"optional, filters case insensitive for exact event name","key":"name","value":"My Event","disabled":true},{"description":"optional, filters case insensitive for event name containing the value","key":"nameContains","value":"event","disabled":true},{"description":"optional, filters for exact match of one event state (This can only be one of DRAFT,ACTIVE,ARCHIVED)","key":"state","value":"ACTIVE","disabled":true},{"description":"optional, filters for startDateBefore equal or less than event startDate","key":"startDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for startDateAfter equal or greater than event startDate","key":"startDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, filters for endDateBefore equal or less than event endDate","key":"endDateBefore","value":"2025-01-27T20:00:00.000Z","disabled":true},{"description":"optional, filters for endDateAfter equal or greater than event endDate","key":"endDateAfter","value":"2025-01-27T16:35:00.000Z","disabled":true},{"description":"optional, filters for exact match of one visibilityGroupId","key":"visibilityGroupId","value":"5b05d452-9429-4ba1-a8ce-47dce840982","disabled":true},{"description":"optional, filters for exact match of one eventTagId","key":"eventTagId","value":"f4875291-eb66-4b20-9182-8378e5254c20","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,startDate,endDate,name)","key":"sortBy","value":"startDate","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"acbb5817-de3b-440e-886b-d671b27e4d63","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events","host":["https://api.sweap.io"],"path":["core","v1","events"],"query":[{"description":"optional, filters case insensitive for exact event name","key":"name","value":"My Event","disabled":true},{"description":"optional, filters case insensitive for event name containing the value","key":"nameContains","value":"event","disabled":true},{"description":"optional, filters for exact match of one event state (This can only be one of DRAFT,ACTIVE,ARCHIVED)","key":"state","value":"ACTIVE","disabled":true},{"description":"optional, filters for startDateBefore equal or less than event startDate","key":"startDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for startDateAfter equal or greater than event startDate","key":"startDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, filters for endDateBefore equal or less than event endDate","key":"endDateBefore","value":"2025-01-27T20:00:00.000Z","disabled":true},{"description":"optional, filters for endDateAfter equal or greater than event endDate","key":"endDateAfter","value":"2025-01-27T16:35:00.000Z","disabled":true},{"description":"optional, filters for exact match of one visibilityGroupId","key":"visibilityGroupId","value":"5b05d452-9429-4ba1-a8ce-47dce840982","disabled":true},{"description":"optional, filters for exact match of one eventTagId","key":"eventTagId","value":"f4875291-eb66-4b20-9182-8378e5254c20","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,startDate,endDate,name)","key":"sortBy","value":"startDate","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"af72d0be-fd5f-4374-922f-7a30f5fb9560","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events","host":["https://api.sweap.io"],"path":["core","v1","events"],"query":[{"description":"optional, filters case insensitive for exact event name","key":"name","value":"My Event","disabled":true},{"description":"optional, filters case insensitive for event name containing the value","key":"nameContains","value":"event","disabled":true},{"description":"optional, filters for exact match of one event state (This can only be one of DRAFT,ACTIVE,ARCHIVED)","key":"state","value":"ACTIVE","disabled":true},{"description":"optional, filters for startDateBefore equal or less than event startDate","key":"startDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for startDateAfter equal or greater than event startDate","key":"startDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, filters for endDateBefore equal or less than event endDate","key":"endDateBefore","value":"2025-01-27T20:00:00.000Z","disabled":true},{"description":"optional, filters for endDateAfter equal or greater than event endDate","key":"endDateAfter","value":"2025-01-27T16:35:00.000Z","disabled":true},{"description":"optional, filters for exact match of one visibilityGroupId","key":"visibilityGroupId","value":"5b05d452-9429-4ba1-a8ce-47dce840982","disabled":true},{"description":"optional, filters for exact match of one eventTagId","key":"eventTagId","value":"f4875291-eb66-4b20-9182-8378e5254c20","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,startDate,endDate,name)","key":"sortBy","value":"startDate","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"336d11ea-fc7e-44ac-aa01-53aa2f3e48ff"},{"name":"Get events as RestResponse","id":"d86f36ab-3c3a-46f1-b406-2fefb48da1a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/events/paginated","description":"<p>Get a RestResponse with a paginated list of events based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","events","paginated"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact event name</p>\n","type":"text/plain"},"key":"name","value":"My Event"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for event name containing the value</p>\n","type":"text/plain"},"key":"nameContains","value":"event"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of one event state (This can only be one of DRAFT,ACTIVE,ARCHIVED)</p>\n","type":"text/plain"},"key":"state","value":"ACTIVE"},{"disabled":true,"description":{"content":"<p>optional, filters for startDateBefore equal or less than event startDate</p>\n","type":"text/plain"},"key":"startDateBefore","value":"2025-01-27T12:15:00.000Z"},{"disabled":true,"description":{"content":"<p>optional, filters for startDateAfter equal or greater than event startDate</p>\n","type":"text/plain"},"key":"startDateAfter","value":"2025-01-27T08:00:00.000Z"},{"disabled":true,"description":{"content":"<p>optional, filters for endDateBefore equal or less than event endDate</p>\n","type":"text/plain"},"key":"endDateBefore","value":"2025-01-27T20:00:00.000Z"},{"disabled":true,"description":{"content":"<p>optional, filters for endDateAfter equal or greater than event endDate</p>\n","type":"text/plain"},"key":"endDateAfter","value":"2025-01-27T16:35:00.000Z"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of one visibilityGroupId</p>\n","type":"text/plain"},"key":"visibilityGroupId","value":"5b05d452-9429-4ba1-a8ce-47dce840982"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of one eventTagId</p>\n","type":"text/plain"},"key":"eventTagId","value":"f4875291-eb66-4b20-9182-8378e5254c20"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,startDate,endDate,name)</p>\n","type":"text/plain"},"key":"sortBy","value":"startDate"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"85ae791e-4598-4157-bc28-bbb01553cb48","name":"Events information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/paginated","host":["https://api.sweap.io"],"path":["core","v1","events","paginated"],"query":[{"description":"optional, filters case insensitive for exact event name","key":"name","value":"My Event","disabled":true},{"description":"optional, filters case insensitive for event name containing the value","key":"nameContains","value":"event","disabled":true},{"description":"optional, filters for exact match of one event state (This can only be one of DRAFT,ACTIVE,ARCHIVED)","key":"state","value":"ACTIVE","disabled":true},{"description":"optional, filters for startDateBefore equal or less than event startDate","key":"startDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for startDateAfter equal or greater than event startDate","key":"startDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, filters for endDateBefore equal or less than event endDate","key":"endDateBefore","value":"2025-01-27T20:00:00.000Z","disabled":true},{"description":"optional, filters for endDateAfter equal or greater than event endDate","key":"endDateAfter","value":"2025-01-27T16:35:00.000Z","disabled":true},{"description":"optional, filters for exact match of one visibilityGroupId","key":"visibilityGroupId","value":"5b05d452-9429-4ba1-a8ce-47dce840982","disabled":true},{"description":"optional, filters for exact match of one eventTagId","key":"eventTagId","value":"f4875291-eb66-4b20-9182-8378e5254c20","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,startDate,endDate,name)","key":"sortBy","value":"startDate","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"OK\",\n  \"content\": [\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"name\": \"My Event\",\n      \"startDate\": \"2025-01-27T09:30:00.000Z\",\n      \"endDate\": \"2025-01-27T17:00:00.000Z\",\n      \"zoneId\": \"Europe/Berlin\",\n      \"state\": \"ACTIVE\",\n      \"attendanceMode\": \"OFFLINE\",\n      \"customFieldDefinitions\": [\n        {\n          \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n          \"name\": \"Text value\",\n          \"sortIndex\": 0,\n          \"type\": \"TEXT\",\n          \"groupName\": \"Personal information\",\n          \"options\": {\n            \"values\": [\n              {\n                \"value\": \"S\",\n                \"limit\": 25\n              },\n              {\n                \"value\": \"M\",\n                \"limit\": 100\n              }\n            ],\n            \"globalLimit\": 50\n          }\n        },\n        {\n          \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n          \"name\": \"Text value\",\n          \"sortIndex\": 0,\n          \"type\": \"TEXT\",\n          \"groupName\": \"Personal information\",\n          \"options\": {\n            \"values\": [\n              {\n                \"value\": \"S\",\n                \"limit\": 25\n              },\n              {\n                \"value\": \"M\",\n                \"limit\": 100\n              }\n            ],\n            \"globalLimit\": 50\n          }\n        }\n      ],\n      \"location\": {\n        \"latitude\": 2474.5879225964486,\n        \"longitude\": 5543.93091914834,\n        \"textRepresentation\": \"Sweap Office\",\n        \"formattedAddress\": \"Rankestraße 9, 10789 Berlin, Germany\"\n      },\n      \"visibilityGroupIds\": [\n        \"string\"\n      ],\n      \"eventTagIds\": [\n        \"string\"\n      ]\n    },\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"name\": \"My Event\",\n      \"startDate\": \"2025-01-27T09:30:00.000Z\",\n      \"endDate\": \"2025-01-27T17:00:00.000Z\",\n      \"zoneId\": \"Europe/Berlin\",\n      \"state\": \"ACTIVE\",\n      \"attendanceMode\": \"OFFLINE\",\n      \"customFieldDefinitions\": [\n        {\n          \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n          \"name\": \"Text value\",\n          \"sortIndex\": 0,\n          \"type\": \"TEXT\",\n          \"groupName\": \"Personal information\",\n          \"options\": {\n            \"values\": [\n              {\n                \"value\": \"S\",\n                \"limit\": 25\n              },\n              {\n                \"value\": \"M\",\n                \"limit\": 100\n              }\n            ],\n            \"globalLimit\": 50\n          }\n        },\n        {\n          \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n          \"name\": \"Text value\",\n          \"sortIndex\": 0,\n          \"type\": \"TEXT\",\n          \"groupName\": \"Personal information\",\n          \"options\": {\n            \"values\": [\n              {\n                \"value\": \"S\",\n                \"limit\": 25\n              },\n              {\n                \"value\": \"M\",\n                \"limit\": 100\n              }\n            ],\n            \"globalLimit\": 50\n          }\n        }\n      ],\n      \"location\": {\n        \"latitude\": 2416.9530521171055,\n        \"longitude\": 2208.934119693831,\n        \"textRepresentation\": \"Sweap Office\",\n        \"formattedAddress\": \"Rankestraße 9, 10789 Berlin, Germany\"\n      },\n      \"visibilityGroupIds\": [\n        \"string\"\n      ],\n      \"eventTagIds\": [\n        \"string\"\n      ]\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 9403,\n    \"totalElements\": 436,\n    \"totalPages\": 2250,\n    \"page\": 2668\n  }\n}"},{"id":"99056c19-ea65-49f2-be34-627faeb0d290","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/paginated","host":["https://api.sweap.io"],"path":["core","v1","events","paginated"],"query":[{"description":"optional, filters case insensitive for exact event name","key":"name","value":"My Event","disabled":true},{"description":"optional, filters case insensitive for event name containing the value","key":"nameContains","value":"event","disabled":true},{"description":"optional, filters for exact match of one event state (This can only be one of DRAFT,ACTIVE,ARCHIVED)","key":"state","value":"ACTIVE","disabled":true},{"description":"optional, filters for startDateBefore equal or less than event startDate","key":"startDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for startDateAfter equal or greater than event startDate","key":"startDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, filters for endDateBefore equal or less than event endDate","key":"endDateBefore","value":"2025-01-27T20:00:00.000Z","disabled":true},{"description":"optional, filters for endDateAfter equal or greater than event endDate","key":"endDateAfter","value":"2025-01-27T16:35:00.000Z","disabled":true},{"description":"optional, filters for exact match of one visibilityGroupId","key":"visibilityGroupId","value":"5b05d452-9429-4ba1-a8ce-47dce840982","disabled":true},{"description":"optional, filters for exact match of one eventTagId","key":"eventTagId","value":"f4875291-eb66-4b20-9182-8378e5254c20","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,startDate,endDate,name)","key":"sortBy","value":"startDate","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"683a89bc-c5bf-48c8-bbdd-a6fd9810a48d","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/paginated","host":["https://api.sweap.io"],"path":["core","v1","events","paginated"],"query":[{"description":"optional, filters case insensitive for exact event name","key":"name","value":"My Event","disabled":true},{"description":"optional, filters case insensitive for event name containing the value","key":"nameContains","value":"event","disabled":true},{"description":"optional, filters for exact match of one event state (This can only be one of DRAFT,ACTIVE,ARCHIVED)","key":"state","value":"ACTIVE","disabled":true},{"description":"optional, filters for startDateBefore equal or less than event startDate","key":"startDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for startDateAfter equal or greater than event startDate","key":"startDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, filters for endDateBefore equal or less than event endDate","key":"endDateBefore","value":"2025-01-27T20:00:00.000Z","disabled":true},{"description":"optional, filters for endDateAfter equal or greater than event endDate","key":"endDateAfter","value":"2025-01-27T16:35:00.000Z","disabled":true},{"description":"optional, filters for exact match of one visibilityGroupId","key":"visibilityGroupId","value":"5b05d452-9429-4ba1-a8ce-47dce840982","disabled":true},{"description":"optional, filters for exact match of one eventTagId","key":"eventTagId","value":"f4875291-eb66-4b20-9182-8378e5254c20","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,startDate,endDate,name)","key":"sortBy","value":"startDate","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"a561c090-377e-4a27-984b-e9d7beb12394","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/paginated","host":["https://api.sweap.io"],"path":["core","v1","events","paginated"],"query":[{"description":"optional, filters case insensitive for exact event name","key":"name","value":"My Event","disabled":true},{"description":"optional, filters case insensitive for event name containing the value","key":"nameContains","value":"event","disabled":true},{"description":"optional, filters for exact match of one event state (This can only be one of DRAFT,ACTIVE,ARCHIVED)","key":"state","value":"ACTIVE","disabled":true},{"description":"optional, filters for startDateBefore equal or less than event startDate","key":"startDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for startDateAfter equal or greater than event startDate","key":"startDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, filters for endDateBefore equal or less than event endDate","key":"endDateBefore","value":"2025-01-27T20:00:00.000Z","disabled":true},{"description":"optional, filters for endDateAfter equal or greater than event endDate","key":"endDateAfter","value":"2025-01-27T16:35:00.000Z","disabled":true},{"description":"optional, filters for exact match of one visibilityGroupId","key":"visibilityGroupId","value":"5b05d452-9429-4ba1-a8ce-47dce840982","disabled":true},{"description":"optional, filters for exact match of one eventTagId","key":"eventTagId","value":"f4875291-eb66-4b20-9182-8378e5254c20","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,startDate,endDate,name)","key":"sortBy","value":"startDate","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"d86f36ab-3c3a-46f1-b406-2fefb48da1a5"},{"name":"Get deleted events as RestResponse (restricted)","id":"abebbb01-d2a5-4fb7-b0b0-711994137ebc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/events/deleted","description":"<p>Get a RestResponse with a paginated list of deleted events based on the specified filters and sorting parameters.<br />\n⚠️ Access to this endpoint is restricted and is not included in the default API licenses. Please contact the Sweap Support team at <a href=\"mailto:support@sweap.io\">support@sweap.io</a> to request access.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","events","deleted"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters with deletedAfter greater than event deletedAt</p>\n","type":"text/plain"},"key":"deletedAfter","value":"2025-01-28T17:34:05.713Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = deletedAt) (This can only be one of deletedAt)</p>\n","type":"text/plain"},"key":"sortBy","value":"deletedAt"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"8188110e-02f0-4971-9af0-cb1fd956c04e","name":"Deleted events information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/deleted","host":["https://api.sweap.io"],"path":["core","v1","events","deleted"],"query":[{"description":"optional, filters with deletedAfter greater than event deletedAt","key":"deletedAfter","value":"2025-01-28T17:34:05.713Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, sorting variable value for pagination (default value = deletedAt) (This can only be one of deletedAt)","key":"sortBy","value":"deletedAt","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"NOT_FOUND\",\n  \"content\": [\n    {\n      \"externalId\": \"abc-1234\",\n      \"deletedAt\": \"2025-01-28T17:34:05.714Z\",\n      \"id\": \"123e4567-e89b-12d3-a456-426655440000\"\n    },\n    {\n      \"externalId\": \"abc-1234\",\n      \"deletedAt\": \"2025-01-28T17:34:05.714Z\",\n      \"id\": \"123e4567-e89b-12d3-a456-426655440000\"\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 2150,\n    \"totalElements\": 8880,\n    \"totalPages\": 2967,\n    \"page\": 9610\n  }\n}"},{"id":"9a75f263-ed22-4509-8f39-7003112c79e8","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/deleted","host":["https://api.sweap.io"],"path":["core","v1","events","deleted"],"query":[{"description":"optional, filters with deletedAfter greater than event deletedAt","key":"deletedAfter","value":"2025-01-28T17:34:05.713Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, sorting variable value for pagination (default value = deletedAt) (This can only be one of deletedAt)","key":"sortBy","value":"deletedAt","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"440baf60-0e9b-4e46-a3eb-f74aefc21653","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/deleted","host":["https://api.sweap.io"],"path":["core","v1","events","deleted"],"query":[{"description":"optional, filters with deletedAfter greater than event deletedAt","key":"deletedAfter","value":"2025-01-28T17:34:05.713Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, sorting variable value for pagination (default value = deletedAt) (This can only be one of deletedAt)","key":"sortBy","value":"deletedAt","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"3d95d7d7-7ad8-4165-8292-f0daa29fcea1","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/events/deleted","host":["https://api.sweap.io"],"path":["core","v1","events","deleted"],"query":[{"description":"optional, filters with deletedAfter greater than event deletedAt","key":"deletedAfter","value":"2025-01-28T17:34:05.713Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, sorting variable value for pagination (default value = deletedAt) (This can only be one of deletedAt)","key":"sortBy","value":"deletedAt","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"abebbb01-d2a5-4fb7-b0b0-711994137ebc"}],"id":"ad7d06ca-464d-4e0c-85e5-fc97b420fafa","description":"<p>Represents events to which guests can be invited.</p>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires <code>events_read</code> for GET endpoints.</li>\n<li>Requires <code>events_write</code> for PATCH endpoints.</li>\n<li>Requires <code>deleted_resources_read</code> to GET deleted resources.</li>\n</ul>\n<p><strong>JSON Structure:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-only</td>\n<td>name of the event</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>must not be <code>null</code>  <br />ISO 8601 timestamp of event start</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>must not be <code>null</code>  <br />ISO 8601 timestamp of event end</td>\n</tr>\n<tr>\n<td><code>zoneId</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>must not be <code>null</code>  <br />Time Zone of <code>startDate</code> and <code>endDate</code> (<a href=\"https://en.wikipedia.org/wiki/List_of_tz_database_time_zones\">see tz identifier list</a>) e.g. Europe/Berlin</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td><code>String</code> (Enum)</td>\n<td>read-write (only with PATCH method)</td>\n<td>must not be <code>null</code>  <br />status of the event as string enum:  <br />- <code>DRAFT</code>: event still in edit mode  <br />- <code>ACTIVE</code>: event not in edit mode any more  <br />- <code>CLOSED</code>: event ended</td>\n</tr>\n<tr>\n<td><code>attendanceMode</code></td>\n<td><code>String</code> (Enum)</td>\n<td>read-only</td>\n<td>must not be <code>null</code>  <br />describes event attendance for guests:  <br />- <code>OFFLINE</code>: on-site event  <br />- <code>ONLINE</code>: virtual event  <br />- <code>MIXED</code>: hybrid event (on-site and virtual)</td>\n</tr>\n<tr>\n<td><code>customFieldDefinitions</code></td>\n<td><code>Array</code> (Objects)</td>\n<td>read-only</td>\n<td>Custom field definitions describe variable custom fields on every guest of an event. This is so guests can have additional fields that are managed on an event centrally. See CustomFieldDefinition for JSON object structure.</td>\n</tr>\n<tr>\n<td><code>location</code></td>\n<td><code>Object</code></td>\n<td>read-only</td>\n<td>Event venue details including latitude, longitude, textRepresentation, and formattedAddress. Returns null if there is no location, for example for online events.</td>\n</tr>\n<tr>\n<td><code>visibilityGroupIds</code></td>\n<td><code>Array</code> (Strings)</td>\n<td>read-only</td>\n<td>The connected visibility group IDs if the feature is used, otherwise empty.</td>\n</tr>\n<tr>\n<td><code>eventTagIds</code></td>\n<td><code>Array</code> (Strings)</td>\n<td>read-only</td>\n<td>The connected event tag IDs if the feature is used, otherwise empty.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>CustomFieldDefinition JSON Structure:</strong></p>\n<p>A central description of additional guest custom fields at event level.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-only</td>\n<td>unique identifier (unique for an event but no guarantee that it's globally unique)</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-only</td>\n<td>a descriptive name</td>\n</tr>\n<tr>\n<td><code>sortIndex</code></td>\n<td><code>Number</code> (Integer)</td>\n<td>read-only</td>\n<td>enumeration to sort guest attributes in different views</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>String</code> (Enum)</td>\n<td>read-only</td>\n<td>a string enum that specifies of which type the guest field is:  <br />- TEXT: an arbitrary text value  <br />- NUMBER: a long value  <br />- BOOL: true/false  <br />- DATE: format is YYYY-MM-DD  <br />- TIME: format isHH:mm  <br />- MULTILINE: an arbitrary multiple lines of text values</td>\n</tr>\n<tr>\n<td><code>options</code></td>\n<td><code>JSON Object</code></td>\n<td>read-only</td>\n<td>a list of eligible options. See next section (Options JSON Structure.)</td>\n</tr>\n<tr>\n<td><code>groupName</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>a name to group custom fields under (custom fields with the same <code>groupName</code> will be grouped)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Options JSON Structure:</strong></p>\n<p>Custom field definitions may contain pre-determined options. In the example of T-Shirt stock the available sizes: S, M, L, for example.</p>\n<p><code>options</code> from the custom field definition object above has two keys: <code>values</code> and <code>globalLimit</code>. <code>values</code> is what the name suggests – a list of option values. We'll talk about it in a minute. <code>globalLimit</code> is a shorthand way of setting the same limit for all specified option values. Individual limits at the option level will take precedence over the global limit.</p>\n<p><code>values</code> expects an JSON object array of the following shape:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"value\": \"S\",\n    \"limit\": 25\n  },\n  {\n    \"value\": \"M\",\n    \"limit\": 100\n  },\n  {\n    \"value\": \"L\",\n    \"limit\": 50\n  }\n]\n</code></pre>\n","_postman_id":"ad7d06ca-464d-4e0c-85e5-fc97b420fafa","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}}},{"name":"Event Statistics","item":[{"name":"Get event statistics as list","id":"a768ecce-b1ec-4472-8d63-251ae07886b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/event-statistics","description":"<p>Get a paginated list of event statistics based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","event-statistics"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters guestCount equal or greater than minGuestCount value</p>\n","type":"text/plain"},"key":"minGuestCount","value":"0"},{"disabled":true,"description":{"content":"<p>optional, filters guestCount equal or lesser than maxGuestCount value</p>\n","type":"text/plain"},"key":"maxGuestCount","value":"250"},{"disabled":true,"description":{"content":"<p>optional, filters acceptedCount equal or greater than minAcceptedCount value</p>\n","type":"text/plain"},"key":"minAcceptedCount","value":"0"},{"disabled":true,"description":{"content":"<p>optional, filters acceptedCount equal or lesser than maxAcceptedCount value</p>\n","type":"text/plain"},"key":"maxAcceptedCount","value":"250"},{"disabled":true,"description":{"content":"<p>optional, filters declinedCount equal or greater than minDeclinedCount value</p>\n","type":"text/plain"},"key":"minDeclinedCount","value":"0"},{"disabled":true,"description":{"content":"<p>optional, filters declinedCount equal or lesser than maxDeclinedCount value</p>\n","type":"text/plain"},"key":"maxDeclinedCount","value":"250"},{"disabled":true,"description":{"content":"<p>optional, filters noReplyCount equal or greater than minNoReplyCount value</p>\n","type":"text/plain"},"key":"minNoReplyCount","value":"0"},{"disabled":true,"description":{"content":"<p>optional, filters noReplyCount equal or lesser than maxNoReplyCount value</p>\n","type":"text/plain"},"key":"maxNoReplyCount","value":"250"},{"disabled":true,"description":{"content":"<p>optional, filters checkinCount equal or greater than minCheckinCount value</p>\n","type":"text/plain"},"key":"minCheckinCount","value":"0"},{"disabled":true,"description":{"content":"<p>optional, filters checkinCount equal or lesser than maxCheckinCount value</p>\n","type":"text/plain"},"key":"maxCheckinCount","value":"250"},{"disabled":true,"description":{"content":"<p>optional, filters attendeeCount equal or greater than minAttendeeCount value</p>\n","type":"text/plain"},"key":"minAttendeeCount","value":"0"},{"disabled":true,"description":{"content":"<p>optional, filters attendeeCount equal or lesser than maxAttendeeCount value</p>\n","type":"text/plain"},"key":"maxAttendeeCount","value":"250"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,guestCount,acceptedCount,declinedCount,noReplyCount,checkinCount,attendeeCount)</p>\n","type":"text/plain"},"key":"sortBy","value":"guestCount"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (no default value, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"1000"}],"variable":[]}},"response":[{"id":"4f65029f-9e8d-4d1a-b5be-b318c17eaeb2","name":"Events statistics information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics","host":["https://api.sweap.io"],"path":["core","v1","event-statistics"],"query":[{"description":"optional, filters guestCount equal or greater than minGuestCount value","key":"minGuestCount","value":"0","disabled":true},{"description":"optional, filters guestCount equal or lesser than maxGuestCount value","key":"maxGuestCount","value":"250","disabled":true},{"description":"optional, filters acceptedCount equal or greater than minAcceptedCount value","key":"minAcceptedCount","value":"0","disabled":true},{"description":"optional, filters acceptedCount equal or lesser than maxAcceptedCount value","key":"maxAcceptedCount","value":"250","disabled":true},{"description":"optional, filters declinedCount equal or greater than minDeclinedCount value","key":"minDeclinedCount","value":"0","disabled":true},{"description":"optional, filters declinedCount equal or lesser than maxDeclinedCount value","key":"maxDeclinedCount","value":"250","disabled":true},{"description":"optional, filters noReplyCount equal or greater than minNoReplyCount value","key":"minNoReplyCount","value":"0","disabled":true},{"description":"optional, filters noReplyCount equal or lesser than maxNoReplyCount value","key":"maxNoReplyCount","value":"250","disabled":true},{"description":"optional, filters checkinCount equal or greater than minCheckinCount value","key":"minCheckinCount","value":"0","disabled":true},{"description":"optional, filters checkinCount equal or lesser than maxCheckinCount value","key":"maxCheckinCount","value":"250","disabled":true},{"description":"optional, filters attendeeCount equal or greater than minAttendeeCount value","key":"minAttendeeCount","value":"0","disabled":true},{"description":"optional, filters attendeeCount equal or lesser than maxAttendeeCount value","key":"maxAttendeeCount","value":"250","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,guestCount,acceptedCount,declinedCount,noReplyCount,checkinCount,attendeeCount)","key":"sortBy","value":"guestCount","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"guestCount\": 100,\n    \"acceptedCount\": 50,\n    \"declinedCount\": 10,\n    \"noReplyCount\": 20,\n    \"checkinCount\": 35,\n    \"attendeeCount\": 40\n  },\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"guestCount\": 100,\n    \"acceptedCount\": 50,\n    \"declinedCount\": 10,\n    \"noReplyCount\": 20,\n    \"checkinCount\": 35,\n    \"attendeeCount\": 40\n  }\n]"},{"id":"c106235d-a360-4d2b-a677-bb322f28d30e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics","host":["https://api.sweap.io"],"path":["core","v1","event-statistics"],"query":[{"description":"optional, filters guestCount equal or greater than minGuestCount value","key":"minGuestCount","value":"0","disabled":true},{"description":"optional, filters guestCount equal or lesser than maxGuestCount value","key":"maxGuestCount","value":"250","disabled":true},{"description":"optional, filters acceptedCount equal or greater than minAcceptedCount value","key":"minAcceptedCount","value":"0","disabled":true},{"description":"optional, filters acceptedCount equal or lesser than maxAcceptedCount value","key":"maxAcceptedCount","value":"250","disabled":true},{"description":"optional, filters declinedCount equal or greater than minDeclinedCount value","key":"minDeclinedCount","value":"0","disabled":true},{"description":"optional, filters declinedCount equal or lesser than maxDeclinedCount value","key":"maxDeclinedCount","value":"250","disabled":true},{"description":"optional, filters noReplyCount equal or greater than minNoReplyCount value","key":"minNoReplyCount","value":"0","disabled":true},{"description":"optional, filters noReplyCount equal or lesser than maxNoReplyCount value","key":"maxNoReplyCount","value":"250","disabled":true},{"description":"optional, filters checkinCount equal or greater than minCheckinCount value","key":"minCheckinCount","value":"0","disabled":true},{"description":"optional, filters checkinCount equal or lesser than maxCheckinCount value","key":"maxCheckinCount","value":"250","disabled":true},{"description":"optional, filters attendeeCount equal or greater than minAttendeeCount value","key":"minAttendeeCount","value":"0","disabled":true},{"description":"optional, filters attendeeCount equal or lesser than maxAttendeeCount value","key":"maxAttendeeCount","value":"250","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,guestCount,acceptedCount,declinedCount,noReplyCount,checkinCount,attendeeCount)","key":"sortBy","value":"guestCount","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"1aa2ae67-f767-4534-8fa8-2ea85ca42733","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics","host":["https://api.sweap.io"],"path":["core","v1","event-statistics"],"query":[{"description":"optional, filters guestCount equal or greater than minGuestCount value","key":"minGuestCount","value":"0","disabled":true},{"description":"optional, filters guestCount equal or lesser than maxGuestCount value","key":"maxGuestCount","value":"250","disabled":true},{"description":"optional, filters acceptedCount equal or greater than minAcceptedCount value","key":"minAcceptedCount","value":"0","disabled":true},{"description":"optional, filters acceptedCount equal or lesser than maxAcceptedCount value","key":"maxAcceptedCount","value":"250","disabled":true},{"description":"optional, filters declinedCount equal or greater than minDeclinedCount value","key":"minDeclinedCount","value":"0","disabled":true},{"description":"optional, filters declinedCount equal or lesser than maxDeclinedCount value","key":"maxDeclinedCount","value":"250","disabled":true},{"description":"optional, filters noReplyCount equal or greater than minNoReplyCount value","key":"minNoReplyCount","value":"0","disabled":true},{"description":"optional, filters noReplyCount equal or lesser than maxNoReplyCount value","key":"maxNoReplyCount","value":"250","disabled":true},{"description":"optional, filters checkinCount equal or greater than minCheckinCount value","key":"minCheckinCount","value":"0","disabled":true},{"description":"optional, filters checkinCount equal or lesser than maxCheckinCount value","key":"maxCheckinCount","value":"250","disabled":true},{"description":"optional, filters attendeeCount equal or greater than minAttendeeCount value","key":"minAttendeeCount","value":"0","disabled":true},{"description":"optional, filters attendeeCount equal or lesser than maxAttendeeCount value","key":"maxAttendeeCount","value":"250","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,guestCount,acceptedCount,declinedCount,noReplyCount,checkinCount,attendeeCount)","key":"sortBy","value":"guestCount","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"a7277963-ef5b-4e9d-a7fa-4951dc2bbb48","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics","host":["https://api.sweap.io"],"path":["core","v1","event-statistics"],"query":[{"description":"optional, filters guestCount equal or greater than minGuestCount value","key":"minGuestCount","value":"0","disabled":true},{"description":"optional, filters guestCount equal or lesser than maxGuestCount value","key":"maxGuestCount","value":"250","disabled":true},{"description":"optional, filters acceptedCount equal or greater than minAcceptedCount value","key":"minAcceptedCount","value":"0","disabled":true},{"description":"optional, filters acceptedCount equal or lesser than maxAcceptedCount value","key":"maxAcceptedCount","value":"250","disabled":true},{"description":"optional, filters declinedCount equal or greater than minDeclinedCount value","key":"minDeclinedCount","value":"0","disabled":true},{"description":"optional, filters declinedCount equal or lesser than maxDeclinedCount value","key":"maxDeclinedCount","value":"250","disabled":true},{"description":"optional, filters noReplyCount equal or greater than minNoReplyCount value","key":"minNoReplyCount","value":"0","disabled":true},{"description":"optional, filters noReplyCount equal or lesser than maxNoReplyCount value","key":"maxNoReplyCount","value":"250","disabled":true},{"description":"optional, filters checkinCount equal or greater than minCheckinCount value","key":"minCheckinCount","value":"0","disabled":true},{"description":"optional, filters checkinCount equal or lesser than maxCheckinCount value","key":"maxCheckinCount","value":"250","disabled":true},{"description":"optional, filters attendeeCount equal or greater than minAttendeeCount value","key":"minAttendeeCount","value":"0","disabled":true},{"description":"optional, filters attendeeCount equal or lesser than maxAttendeeCount value","key":"maxAttendeeCount","value":"250","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,guestCount,acceptedCount,declinedCount,noReplyCount,checkinCount,attendeeCount)","key":"sortBy","value":"guestCount","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"a768ecce-b1ec-4472-8d63-251ae07886b8"},{"name":"Get an event statistic by ID","id":"0d5ecf7b-e6f9-4095-9114-c5a161c1d007","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/event-statistics/:id","description":"<p>Get the event statistic with the specified ID</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","event-statistics",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"340eb827-6ab8-4890-9b6f-75655afb0ccf","description":{"content":"<p>(Required) ID (UUID) of the event statistic</p>\n","type":"text/plain"},"type":"any","value":"123e4567-e89b-12d3-a456-426655440000","key":"id"}]}},"response":[{"id":"d4a98f3f-99a1-4b22-8c27-2633541e69d2","name":"Events statistics information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics/:id","host":["https://api.sweap.io"],"path":["core","v1","event-statistics",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event statistic"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"guestCount\": 100,\n  \"acceptedCount\": 50,\n  \"declinedCount\": 10,\n  \"noReplyCount\": 20,\n  \"checkinCount\": 35,\n  \"attendeeCount\": 40\n}"},{"id":"e15df19f-d22a-4abc-8a7c-3478a6d2ec81","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics/:id","host":["https://api.sweap.io"],"path":["core","v1","event-statistics",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event statistic"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"7448b18c-de0a-45ea-9867-a9fd11e7235b","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics/:id","host":["https://api.sweap.io"],"path":["core","v1","event-statistics",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event statistic"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"c91e32a7-47e4-4021-b28b-d8b1061574a4","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics/:id","host":["https://api.sweap.io"],"path":["core","v1","event-statistics",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event statistic"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4040,\n  \"message\": \"No [resource name] resource with id 123e4567-e89b-12d3-a456-426655440000 found.\",\n  \"requestId\": \"08ed380a-2c42-447a-abcb-22cb872da017\"\n}\n"},{"id":"1955c896-50b3-463a-a55a-c8e375ae31ff","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics/:id","host":["https://api.sweap.io"],"path":["core","v1","event-statistics",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the event statistic"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"0d5ecf7b-e6f9-4095-9114-c5a161c1d007"},{"name":"Get event statistics as RestResponse","id":"2f1d0a72-396c-4e4a-94ee-679b09cc5f20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/event-statistics/paginated","description":"<p>Get a RestResponse with a paginated list of event statistics based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","event-statistics","paginated"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters guestCount equal or greater than minGuestCount value</p>\n","type":"text/plain"},"key":"minGuestCount","value":"0"},{"disabled":true,"description":{"content":"<p>optional, filters guestCount equal or lesser than maxGuestCount value</p>\n","type":"text/plain"},"key":"maxGuestCount","value":"250"},{"disabled":true,"description":{"content":"<p>optional, filters acceptedCount equal or greater than minAcceptedCount value</p>\n","type":"text/plain"},"key":"minAcceptedCount","value":"0"},{"disabled":true,"description":{"content":"<p>optional, filters acceptedCount equal or lesser than maxAcceptedCount value</p>\n","type":"text/plain"},"key":"maxAcceptedCount","value":"250"},{"disabled":true,"description":{"content":"<p>optional, filters declinedCount equal or greater than minDeclinedCount value</p>\n","type":"text/plain"},"key":"minDeclinedCount","value":"0"},{"disabled":true,"description":{"content":"<p>optional, filters declinedCount equal or lesser than maxDeclinedCount value</p>\n","type":"text/plain"},"key":"maxDeclinedCount","value":"250"},{"disabled":true,"description":{"content":"<p>optional, filters noReplyCount equal or greater than minNoReplyCount value</p>\n","type":"text/plain"},"key":"minNoReplyCount","value":"0"},{"disabled":true,"description":{"content":"<p>optional, filters noReplyCount equal or lesser than maxNoReplyCount value</p>\n","type":"text/plain"},"key":"maxNoReplyCount","value":"250"},{"disabled":true,"description":{"content":"<p>optional, filters checkinCount equal or greater than minCheckinCount value</p>\n","type":"text/plain"},"key":"minCheckinCount","value":"0"},{"disabled":true,"description":{"content":"<p>optional, filters checkinCount equal or lesser than maxCheckinCount value</p>\n","type":"text/plain"},"key":"maxCheckinCount","value":"250"},{"disabled":true,"description":{"content":"<p>optional, filters attendeeCount equal or greater than minAttendeeCount value</p>\n","type":"text/plain"},"key":"minAttendeeCount","value":"0"},{"disabled":true,"description":{"content":"<p>optional, filters attendeeCount equal or lesser than maxAttendeeCount value</p>\n","type":"text/plain"},"key":"maxAttendeeCount","value":"250"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,guestCount,acceptedCount,declinedCount,noReplyCount,checkinCount,attendeeCount)</p>\n","type":"text/plain"},"key":"sortBy","value":"guestCount"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"d4f8a86f-44e4-4668-8f05-1e379a2e0b9d","name":"Events statistics information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics/paginated","host":["https://api.sweap.io"],"path":["core","v1","event-statistics","paginated"],"query":[{"description":"optional, filters guestCount equal or greater than minGuestCount value","key":"minGuestCount","value":"0","disabled":true},{"description":"optional, filters guestCount equal or lesser than maxGuestCount value","key":"maxGuestCount","value":"250","disabled":true},{"description":"optional, filters acceptedCount equal or greater than minAcceptedCount value","key":"minAcceptedCount","value":"0","disabled":true},{"description":"optional, filters acceptedCount equal or lesser than maxAcceptedCount value","key":"maxAcceptedCount","value":"250","disabled":true},{"description":"optional, filters declinedCount equal or greater than minDeclinedCount value","key":"minDeclinedCount","value":"0","disabled":true},{"description":"optional, filters declinedCount equal or lesser than maxDeclinedCount value","key":"maxDeclinedCount","value":"250","disabled":true},{"description":"optional, filters noReplyCount equal or greater than minNoReplyCount value","key":"minNoReplyCount","value":"0","disabled":true},{"description":"optional, filters noReplyCount equal or lesser than maxNoReplyCount value","key":"maxNoReplyCount","value":"250","disabled":true},{"description":"optional, filters checkinCount equal or greater than minCheckinCount value","key":"minCheckinCount","value":"0","disabled":true},{"description":"optional, filters checkinCount equal or lesser than maxCheckinCount value","key":"maxCheckinCount","value":"250","disabled":true},{"description":"optional, filters attendeeCount equal or greater than minAttendeeCount value","key":"minAttendeeCount","value":"0","disabled":true},{"description":"optional, filters attendeeCount equal or lesser than maxAttendeeCount value","key":"maxAttendeeCount","value":"250","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,guestCount,acceptedCount,declinedCount,noReplyCount,checkinCount,attendeeCount)","key":"sortBy","value":"guestCount","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"WRONG_CREDENTIALS\",\n  \"content\": [\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"guestCount\": 100,\n      \"acceptedCount\": 50,\n      \"declinedCount\": 10,\n      \"noReplyCount\": 20,\n      \"checkinCount\": 35,\n      \"attendeeCount\": 40\n    },\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"guestCount\": 100,\n      \"acceptedCount\": 50,\n      \"declinedCount\": 10,\n      \"noReplyCount\": 20,\n      \"checkinCount\": 35,\n      \"attendeeCount\": 40\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 2947,\n    \"totalElements\": 1397,\n    \"totalPages\": 6666,\n    \"page\": 7217\n  }\n}"},{"id":"9e02fe16-05d3-4d7b-acd4-c6e9ac591087","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics/paginated","host":["https://api.sweap.io"],"path":["core","v1","event-statistics","paginated"],"query":[{"description":"optional, filters guestCount equal or greater than minGuestCount value","key":"minGuestCount","value":"0","disabled":true},{"description":"optional, filters guestCount equal or lesser than maxGuestCount value","key":"maxGuestCount","value":"250","disabled":true},{"description":"optional, filters acceptedCount equal or greater than minAcceptedCount value","key":"minAcceptedCount","value":"0","disabled":true},{"description":"optional, filters acceptedCount equal or lesser than maxAcceptedCount value","key":"maxAcceptedCount","value":"250","disabled":true},{"description":"optional, filters declinedCount equal or greater than minDeclinedCount value","key":"minDeclinedCount","value":"0","disabled":true},{"description":"optional, filters declinedCount equal or lesser than maxDeclinedCount value","key":"maxDeclinedCount","value":"250","disabled":true},{"description":"optional, filters noReplyCount equal or greater than minNoReplyCount value","key":"minNoReplyCount","value":"0","disabled":true},{"description":"optional, filters noReplyCount equal or lesser than maxNoReplyCount value","key":"maxNoReplyCount","value":"250","disabled":true},{"description":"optional, filters checkinCount equal or greater than minCheckinCount value","key":"minCheckinCount","value":"0","disabled":true},{"description":"optional, filters checkinCount equal or lesser than maxCheckinCount value","key":"maxCheckinCount","value":"250","disabled":true},{"description":"optional, filters attendeeCount equal or greater than minAttendeeCount value","key":"minAttendeeCount","value":"0","disabled":true},{"description":"optional, filters attendeeCount equal or lesser than maxAttendeeCount value","key":"maxAttendeeCount","value":"250","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,guestCount,acceptedCount,declinedCount,noReplyCount,checkinCount,attendeeCount)","key":"sortBy","value":"guestCount","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"83319e32-f699-498d-a5f8-888e35b4fc1b","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics/paginated","host":["https://api.sweap.io"],"path":["core","v1","event-statistics","paginated"],"query":[{"description":"optional, filters guestCount equal or greater than minGuestCount value","key":"minGuestCount","value":"0","disabled":true},{"description":"optional, filters guestCount equal or lesser than maxGuestCount value","key":"maxGuestCount","value":"250","disabled":true},{"description":"optional, filters acceptedCount equal or greater than minAcceptedCount value","key":"minAcceptedCount","value":"0","disabled":true},{"description":"optional, filters acceptedCount equal or lesser than maxAcceptedCount value","key":"maxAcceptedCount","value":"250","disabled":true},{"description":"optional, filters declinedCount equal or greater than minDeclinedCount value","key":"minDeclinedCount","value":"0","disabled":true},{"description":"optional, filters declinedCount equal or lesser than maxDeclinedCount value","key":"maxDeclinedCount","value":"250","disabled":true},{"description":"optional, filters noReplyCount equal or greater than minNoReplyCount value","key":"minNoReplyCount","value":"0","disabled":true},{"description":"optional, filters noReplyCount equal or lesser than maxNoReplyCount value","key":"maxNoReplyCount","value":"250","disabled":true},{"description":"optional, filters checkinCount equal or greater than minCheckinCount value","key":"minCheckinCount","value":"0","disabled":true},{"description":"optional, filters checkinCount equal or lesser than maxCheckinCount value","key":"maxCheckinCount","value":"250","disabled":true},{"description":"optional, filters attendeeCount equal or greater than minAttendeeCount value","key":"minAttendeeCount","value":"0","disabled":true},{"description":"optional, filters attendeeCount equal or lesser than maxAttendeeCount value","key":"maxAttendeeCount","value":"250","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,guestCount,acceptedCount,declinedCount,noReplyCount,checkinCount,attendeeCount)","key":"sortBy","value":"guestCount","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"8e2934c1-836b-45b5-b057-230ef3c81e14","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-statistics/paginated","host":["https://api.sweap.io"],"path":["core","v1","event-statistics","paginated"],"query":[{"description":"optional, filters guestCount equal or greater than minGuestCount value","key":"minGuestCount","value":"0","disabled":true},{"description":"optional, filters guestCount equal or lesser than maxGuestCount value","key":"maxGuestCount","value":"250","disabled":true},{"description":"optional, filters acceptedCount equal or greater than minAcceptedCount value","key":"minAcceptedCount","value":"0","disabled":true},{"description":"optional, filters acceptedCount equal or lesser than maxAcceptedCount value","key":"maxAcceptedCount","value":"250","disabled":true},{"description":"optional, filters declinedCount equal or greater than minDeclinedCount value","key":"minDeclinedCount","value":"0","disabled":true},{"description":"optional, filters declinedCount equal or lesser than maxDeclinedCount value","key":"maxDeclinedCount","value":"250","disabled":true},{"description":"optional, filters noReplyCount equal or greater than minNoReplyCount value","key":"minNoReplyCount","value":"0","disabled":true},{"description":"optional, filters noReplyCount equal or lesser than maxNoReplyCount value","key":"maxNoReplyCount","value":"250","disabled":true},{"description":"optional, filters checkinCount equal or greater than minCheckinCount value","key":"minCheckinCount","value":"0","disabled":true},{"description":"optional, filters checkinCount equal or lesser than maxCheckinCount value","key":"maxCheckinCount","value":"250","disabled":true},{"description":"optional, filters attendeeCount equal or greater than minAttendeeCount value","key":"minAttendeeCount","value":"0","disabled":true},{"description":"optional, filters attendeeCount equal or lesser than maxAttendeeCount value","key":"maxAttendeeCount","value":"250","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,guestCount,acceptedCount,declinedCount,noReplyCount,checkinCount,attendeeCount)","key":"sortBy","value":"guestCount","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"2f1d0a72-396c-4e4a-94ee-679b09cc5f20"}],"id":"82e57c05-b2fa-478e-a7b5-f6ad7b762ba1","description":"<p>Represents a read-only statistic for an event. It has the same <code>id</code> and <code>externalId</code> as event.</p>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires the <code>event_statistics_read</code> for GET endpoints.</li>\n</ul>\n<p><strong>JSON Structure:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>guestCount</code></td>\n<td><code>Number</code></td>\n<td>read-only</td>\n<td>Guests overall count (incl. companions)</td>\n</tr>\n<tr>\n<td><code>acceptedCount</code></td>\n<td><code>Number</code></td>\n<td>read-only</td>\n<td>Accepted guest count (incl. companions)</td>\n</tr>\n<tr>\n<td><code>declinedCount</code></td>\n<td><code>Number</code></td>\n<td>read-only</td>\n<td>Declined guest count (incl. companions)</td>\n</tr>\n<tr>\n<td><code>noReplyCount</code></td>\n<td><code>Number</code></td>\n<td>read-only</td>\n<td>No Reply guest count (incl. companions)</td>\n</tr>\n<tr>\n<td><code>checkinCount</code></td>\n<td><code>Number</code></td>\n<td>read-only</td>\n<td>Check-in count (incl. companions)</td>\n</tr>\n<tr>\n<td><code>attendeeCount</code></td>\n<td><code>Number</code></td>\n<td>read-only</td>\n<td>Attendee count (incl. companions)</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"82e57c05-b2fa-478e-a7b5-f6ad7b762ba1","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}}},{"name":"Guests","item":[{"name":"Get a single guest by ID","id":"3dd3975f-d604-40d6-9310-ceb76661a7eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/guests/:id","description":"<p>Get the guest with the specified ID</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guests",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"9771e95d-2dac-4498-94ea-b3ca95432392","description":{"content":"<p>(Required) ID (UUID) of the guest</p>\n","type":"text/plain"},"type":"any","value":"323e4567-e89b-12d3-a456-426655440000","key":"id"}]}},"response":[{"id":"3ba1b4a2-c5fd-4441-b242-6df8d8c8b070","name":"Guests information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationId\": \"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz\",\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"parentGuestId\": \"c027bd44-fbe1-4450-b378-cae7710066cb\",\n  \"categoryId\": \"8bbae368-a0d6-4932-8e28-d50694c45770\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}"},{"id":"33917fb6-1fde-4899-a47c-164755e4c345","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"d1a0ecae-d24b-41c2-bd1d-74f4d55aaa9a","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"828fe568-a6d6-427f-ae6d-1ec7502a3a41","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4040,\n  \"message\": \"No [resource name] resource with id 123e4567-e89b-12d3-a456-426655440000 found.\",\n  \"requestId\": \"08ed380a-2c42-447a-abcb-22cb872da017\"\n}\n"},{"id":"a9a67771-65bc-4ee6-89c3-b9b55bb57760","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"3dd3975f-d604-40d6-9310-ceb76661a7eb"},{"name":"Update an existing guest by ID","id":"cb9ab394-cb0f-420a-80ca-18e1b3f75754","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/guests/:id","description":"<p>Update an existing guest with the specified ID.\ncustomFields are normalized against the current customFieldDefinitions before persistence.\nCustom field entries that are no longer defined may be omitted from the resulting resource.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guests",":id"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.</p>\n","type":"text/plain"},"key":"ignoreUnknownCustomFieldIds","value":"false"}],"variable":[{"id":"4a4ed764-9152-4523-864f-11f04b09c685","description":{"content":"<p>(Required) ID (UUID) of the guest</p>\n","type":"text/plain"},"type":"any","value":"323e4567-e89b-12d3-a456-426655440000","key":"id"}]}},"response":[{"id":"54289ca1-3ccb-4bed-9cc0-750dd3fe5839","name":"Guest updated successfully","originalRequest":{"method":"PUT","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationId\": \"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz\",\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"parentGuestId\": \"c027bd44-fbe1-4450-b378-cae7710066cb\",\n  \"categoryId\": \"8bbae368-a0d6-4932-8e28-d50694c45770\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}"},{"id":"566e8260-c49e-47f8-b824-51bc1ae5b05d","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"6f75cf7a-d6dd-4cb3-9bb7-029a89222f2f","name":"Forbidden","originalRequest":{"method":"PUT","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"f37e485b-0b6e-497e-ac95-bfc52f2b5454","name":"Conflict","originalRequest":{"method":"PUT","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4090,\n  \"message\": \"Submitted version was 7, but latest version is 8\",\n  \"requestId\": \"c70202ef-bea7-4e59-9d99-d764158a4f61\"\n}\n"},{"id":"bc882154-db9b-4acd-92e2-c9e245d84870","name":"Internal Server Error","originalRequest":{"method":"PUT","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"cb9ab394-cb0f-420a-80ca-18e1b3f75754"},{"name":"Delete a guest","id":"3159ec3b-ae1c-447d-a625-2dfd56aa8a9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/guests/:id","description":"<p>Delete a guest with the specified ID</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guests",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"59e88e49-46bb-48fc-8dc3-d970c42af07b","description":{"content":"<p>(Required) ID (UUID) of the guest</p>\n","type":"text/plain"},"type":"any","value":"323e4567-e89b-12d3-a456-426655440000","key":"id"}]}},"response":[{"id":"10df613e-31ee-4c76-b7f2-a91ae145c9f0","name":"Guest deleted successfully","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9d64f558-f4e4-468b-bfa5-9c53e13051ae","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"0fc6553c-f631-4c4d-b75b-aeb21fc767e7","name":"Forbidden","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"6e282141-cd85-400c-b92f-7b9791053c64","name":"Internal Server Error","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"3159ec3b-ae1c-447d-a625-2dfd56aa8a9b"},{"name":"Partially update an existing guest","id":"cff442d7-79a0-478c-a35f-603a7193c200","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/guests/:id","description":"<p>Partially update an existing guest with the specified ID using the JSON merge patch guest object.\ncustomFields are normalized against the current customFieldDefinitions before persistence.\nCustom field entries that are no longer defined may be omitted from the resulting resource.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guests",":id"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.</p>\n","type":"text/plain"},"key":"ignoreUnknownCustomFieldIds","value":"false"}],"variable":[{"id":"7dacc5b7-2426-4bed-b716-f53b8105040b","description":{"content":"<p>(Required) ID (UUID) of the guest</p>\n","type":"text/plain"},"type":"any","value":"323e4567-e89b-12d3-a456-426655440000","key":"id"}]}},"response":[{"id":"b5b46b3d-ea79-46c5-8b2c-d27bafa70fe6","name":"Guest updated successfully","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationId\": \"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz\",\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"parentGuestId\": \"c027bd44-fbe1-4450-b378-cae7710066cb\",\n  \"categoryId\": \"8bbae368-a0d6-4932-8e28-d50694c45770\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}"},{"id":"c67e0cad-4fec-49e6-997e-050eb7e4f8e1","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"51b8f3a0-0373-4cc6-9d44-a900fd3b6b82","name":"Forbidden","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"e93c707e-f3c1-4315-ab63-85596cd4dab4","name":"Internal Server Error","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests/:id","host":["https://api.sweap.io"],"path":["core","v1","guests",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"323e4567-e89b-12d3-a456-426655440000","description":"(Required) ID (UUID) of the guest"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"cff442d7-79a0-478c-a35f-603a7193c200"},{"name":"Get guests as list","id":"3ac9cfd5-dc2c-432e-8a32-bf84aaa1df8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/guests?eventId=123e4567-e89b-12d3-a456-42665544000","description":"<p>Get a paginated list of guests based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guests"],"host":["https://api.sweap.io"],"query":[{"description":{"content":"<p>(Required) mandatory, filters for exact match of guest eventId (which is the event UUID) value</p>\n","type":"text/plain"},"key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact guest firstName</p>\n","type":"text/plain"},"key":"firstName","value":"John"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for guest firstName containing the value</p>\n","type":"text/plain"},"key":"firstNameContains","value":"Jo"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact guest lastName</p>\n","type":"text/plain"},"key":"lastName","value":"Smith"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for guest lastName containing the value</p>\n","type":"text/plain"},"key":"lastNameContains","value":"Sm"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact guest email</p>\n","type":"text/plain"},"key":"email","value":"john@mail.com"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of one guest invitationState (This can only be one of NONE,ACCEPTED,DECLINED,NO_REPLY)</p>\n","type":"text/plain"},"key":"invitationState","value":"NONE"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of guest invitationId</p>\n","type":"text/plain"},"key":"invitationId","value":"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of guest ticketId</p>\n","type":"text/plain"},"key":"ticketId","value":"JG4F66Q9C4QG"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)</p>\n","type":"text/plain"},"key":"sortBy","value":"lastName"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (no default value, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"1000"}],"variable":[]}},"response":[{"id":"7519470e-d36d-4b3e-a0e1-088c9acd6aa4","name":"Guests information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","guests"],"query":[{"description":"(Required) mandatory, filters for exact match of guest eventId (which is the event UUID) value","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact guest firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for guest firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact guest lastName","key":"lastName","value":"Smith","disabled":true},{"description":"optional, filters case insensitive for guest lastName containing the value","key":"lastNameContains","value":"Sm","disabled":true},{"description":"optional, filters case insensitive for exact guest email","key":"email","value":"john@mail.com","disabled":true},{"description":"optional, filters for exact match of one guest invitationState (This can only be one of NONE,ACCEPTED,DECLINED,NO_REPLY)","key":"invitationState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of guest invitationId","key":"invitationId","value":"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz","disabled":true},{"description":"optional, filters for exact match of guest ticketId","key":"ticketId","value":"JG4F66Q9C4QG","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Smith\",\n    \"entourageCount\": 0,\n    \"comment\": \"This is a comment.\",\n    \"email\": \"john@mail.com\",\n    \"customFields\": {\n      \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n      \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n    },\n    \"invitationId\": \"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz\",\n    \"invitationState\": \"ACCEPTED\",\n    \"ticketId\": \"JG4F66Q9C4QG\",\n    \"parentGuestId\": \"c027bd44-fbe1-4450-b378-cae7710066cb\",\n    \"categoryId\": \"8bbae368-a0d6-4932-8e28-d50694c45770\",\n    \"attendanceState\": \"PRESENT\",\n    \"creationOrigin\": \"WEB_APP\"\n  },\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Smith\",\n    \"entourageCount\": 0,\n    \"comment\": \"This is a comment.\",\n    \"email\": \"john@mail.com\",\n    \"customFields\": {\n      \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n      \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n    },\n    \"invitationId\": \"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz\",\n    \"invitationState\": \"ACCEPTED\",\n    \"ticketId\": \"JG4F66Q9C4QG\",\n    \"parentGuestId\": \"c027bd44-fbe1-4450-b378-cae7710066cb\",\n    \"categoryId\": \"8bbae368-a0d6-4932-8e28-d50694c45770\",\n    \"attendanceState\": \"PRESENT\",\n    \"creationOrigin\": \"WEB_APP\"\n  }\n]"},{"id":"45ad2440-1870-4bfb-8e3f-bb95bdcd5ceb","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","guests"],"query":[{"description":"(Required) mandatory, filters for exact match of guest eventId (which is the event UUID) value","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact guest firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for guest firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact guest lastName","key":"lastName","value":"Smith","disabled":true},{"description":"optional, filters case insensitive for guest lastName containing the value","key":"lastNameContains","value":"Sm","disabled":true},{"description":"optional, filters case insensitive for exact guest email","key":"email","value":"john@mail.com","disabled":true},{"description":"optional, filters for exact match of one guest invitationState (This can only be one of NONE,ACCEPTED,DECLINED,NO_REPLY)","key":"invitationState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of guest invitationId","key":"invitationId","value":"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz","disabled":true},{"description":"optional, filters for exact match of guest ticketId","key":"ticketId","value":"JG4F66Q9C4QG","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"1d5c1f22-0ce1-437e-ad86-8b4dc37e03a4","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","guests"],"query":[{"description":"(Required) mandatory, filters for exact match of guest eventId (which is the event UUID) value","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact guest firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for guest firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact guest lastName","key":"lastName","value":"Smith","disabled":true},{"description":"optional, filters case insensitive for guest lastName containing the value","key":"lastNameContains","value":"Sm","disabled":true},{"description":"optional, filters case insensitive for exact guest email","key":"email","value":"john@mail.com","disabled":true},{"description":"optional, filters for exact match of one guest invitationState (This can only be one of NONE,ACCEPTED,DECLINED,NO_REPLY)","key":"invitationState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of guest invitationId","key":"invitationId","value":"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz","disabled":true},{"description":"optional, filters for exact match of guest ticketId","key":"ticketId","value":"JG4F66Q9C4QG","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"dc0b18ef-79f4-4a0d-9270-5f23b0253252","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","guests"],"query":[{"description":"(Required) mandatory, filters for exact match of guest eventId (which is the event UUID) value","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact guest firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for guest firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact guest lastName","key":"lastName","value":"Smith","disabled":true},{"description":"optional, filters case insensitive for guest lastName containing the value","key":"lastNameContains","value":"Sm","disabled":true},{"description":"optional, filters case insensitive for exact guest email","key":"email","value":"john@mail.com","disabled":true},{"description":"optional, filters for exact match of one guest invitationState (This can only be one of NONE,ACCEPTED,DECLINED,NO_REPLY)","key":"invitationState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of guest invitationId","key":"invitationId","value":"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz","disabled":true},{"description":"optional, filters for exact match of guest ticketId","key":"ticketId","value":"JG4F66Q9C4QG","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"3ac9cfd5-dc2c-432e-8a32-bf84aaa1df8b"},{"name":"Create a new guest","id":"68140b41-0c14-44a9-9299-389e22d34be8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/guests","description":"<p>Create a new guest with the provided data</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guests"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.</p>\n","type":"text/plain"},"key":"ignoreUnknownCustomFieldIds","value":"false"}],"variable":[]}},"response":[{"id":"a20e3faa-f325-4776-9a74-a80c6ec126d6","name":"Guest created successfully","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests","host":["https://api.sweap.io"],"path":["core","v1","guests"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationId\": \"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz\",\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"parentGuestId\": \"c027bd44-fbe1-4450-b378-cae7710066cb\",\n  \"categoryId\": \"8bbae368-a0d6-4932-8e28-d50694c45770\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}"},{"id":"32daebfc-4c4a-4bfd-985c-c7603f7d257a","name":"Created","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests","host":["https://api.sweap.io"],"path":["core","v1","guests"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationId\": \"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz\",\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"parentGuestId\": \"c027bd44-fbe1-4450-b378-cae7710066cb\",\n  \"categoryId\": \"8bbae368-a0d6-4932-8e28-d50694c45770\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}"},{"id":"6b58ad34-8748-478d-8255-a15a58c78bf3","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests","host":["https://api.sweap.io"],"path":["core","v1","guests"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"f7e05c98-e9d0-45bb-b165-a28a69c1105c","name":"Forbidden","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests","host":["https://api.sweap.io"],"path":["core","v1","guests"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"fae386ba-0845-49f6-bb59-fdef22cafe2b","name":"Internal Server Error","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Smith\",\n  \"entourageCount\": 0,\n  \"comment\": \"This is a comment.\",\n  \"email\": \"john@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"invitationState\": \"ACCEPTED\",\n  \"ticketId\": \"JG4F66Q9C4QG\",\n  \"attendanceState\": \"PRESENT\",\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guests","host":["https://api.sweap.io"],"path":["core","v1","guests"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"68140b41-0c14-44a9-9299-389e22d34be8"},{"name":"Get guests as RestResponse","id":"af630c8f-e184-41ca-ba9e-23f4439f4507","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/guests/paginated?eventId=123e4567-e89b-12d3-a456-42665544000","description":"<p>Get a RestResponse with a paginated list of guests based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guests","paginated"],"host":["https://api.sweap.io"],"query":[{"description":{"content":"<p>(Required) mandatory, filters for exact match of guest eventId (which is the event UUID) value</p>\n","type":"text/plain"},"key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact guest firstName</p>\n","type":"text/plain"},"key":"firstName","value":"John"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for guest firstName containing the value</p>\n","type":"text/plain"},"key":"firstNameContains","value":"Jo"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact guest lastName</p>\n","type":"text/plain"},"key":"lastName","value":"Smith"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for guest lastName containing the value</p>\n","type":"text/plain"},"key":"lastNameContains","value":"Sm"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact guest email</p>\n","type":"text/plain"},"key":"email","value":"john@mail.com"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of one guest invitationState (This can only be one of NONE,ACCEPTED,DECLINED,NO_REPLY)</p>\n","type":"text/plain"},"key":"invitationState","value":"NONE"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of guest invitationId</p>\n","type":"text/plain"},"key":"invitationId","value":"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of guest ticketId</p>\n","type":"text/plain"},"key":"ticketId","value":"JG4F66Q9C4QG"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)</p>\n","type":"text/plain"},"key":"sortBy","value":"lastName"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"2d861826-b05d-4c99-8219-cb0e85937099","name":"Guests information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/paginated?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","guests","paginated"],"query":[{"description":"(Required) mandatory, filters for exact match of guest eventId (which is the event UUID) value","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact guest firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for guest firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact guest lastName","key":"lastName","value":"Smith","disabled":true},{"description":"optional, filters case insensitive for guest lastName containing the value","key":"lastNameContains","value":"Sm","disabled":true},{"description":"optional, filters case insensitive for exact guest email","key":"email","value":"john@mail.com","disabled":true},{"description":"optional, filters for exact match of one guest invitationState (This can only be one of NONE,ACCEPTED,DECLINED,NO_REPLY)","key":"invitationState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of guest invitationId","key":"invitationId","value":"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz","disabled":true},{"description":"optional, filters for exact match of guest ticketId","key":"ticketId","value":"JG4F66Q9C4QG","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"DUPLICATE_ENTITY\",\n  \"content\": [\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n      \"firstName\": \"John\",\n      \"lastName\": \"Smith\",\n      \"entourageCount\": 0,\n      \"comment\": \"This is a comment.\",\n      \"email\": \"john@mail.com\",\n      \"customFields\": {\n        \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n        \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n      },\n      \"invitationId\": \"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz\",\n      \"invitationState\": \"ACCEPTED\",\n      \"ticketId\": \"JG4F66Q9C4QG\",\n      \"parentGuestId\": \"c027bd44-fbe1-4450-b378-cae7710066cb\",\n      \"categoryId\": \"8bbae368-a0d6-4932-8e28-d50694c45770\",\n      \"attendanceState\": \"PRESENT\",\n      \"creationOrigin\": \"WEB_APP\"\n    },\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n      \"firstName\": \"John\",\n      \"lastName\": \"Smith\",\n      \"entourageCount\": 0,\n      \"comment\": \"This is a comment.\",\n      \"email\": \"john@mail.com\",\n      \"customFields\": {\n        \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n        \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n      },\n      \"invitationId\": \"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz\",\n      \"invitationState\": \"ACCEPTED\",\n      \"ticketId\": \"JG4F66Q9C4QG\",\n      \"parentGuestId\": \"c027bd44-fbe1-4450-b378-cae7710066cb\",\n      \"categoryId\": \"8bbae368-a0d6-4932-8e28-d50694c45770\",\n      \"attendanceState\": \"PRESENT\",\n      \"creationOrigin\": \"WEB_APP\"\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 3747,\n    \"totalElements\": 6461,\n    \"totalPages\": 9165,\n    \"page\": 6655\n  }\n}"},{"id":"3ee17e5f-6031-43d0-8dc0-c598e52cb623","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/paginated?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","guests","paginated"],"query":[{"description":"(Required) mandatory, filters for exact match of guest eventId (which is the event UUID) value","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact guest firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for guest firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact guest lastName","key":"lastName","value":"Smith","disabled":true},{"description":"optional, filters case insensitive for guest lastName containing the value","key":"lastNameContains","value":"Sm","disabled":true},{"description":"optional, filters case insensitive for exact guest email","key":"email","value":"john@mail.com","disabled":true},{"description":"optional, filters for exact match of one guest invitationState (This can only be one of NONE,ACCEPTED,DECLINED,NO_REPLY)","key":"invitationState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of guest invitationId","key":"invitationId","value":"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz","disabled":true},{"description":"optional, filters for exact match of guest ticketId","key":"ticketId","value":"JG4F66Q9C4QG","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"fc397d26-d88c-4f5c-ba65-2dec81612f1a","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/paginated?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","guests","paginated"],"query":[{"description":"(Required) mandatory, filters for exact match of guest eventId (which is the event UUID) value","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact guest firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for guest firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact guest lastName","key":"lastName","value":"Smith","disabled":true},{"description":"optional, filters case insensitive for guest lastName containing the value","key":"lastNameContains","value":"Sm","disabled":true},{"description":"optional, filters case insensitive for exact guest email","key":"email","value":"john@mail.com","disabled":true},{"description":"optional, filters for exact match of one guest invitationState (This can only be one of NONE,ACCEPTED,DECLINED,NO_REPLY)","key":"invitationState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of guest invitationId","key":"invitationId","value":"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz","disabled":true},{"description":"optional, filters for exact match of guest ticketId","key":"ticketId","value":"JG4F66Q9C4QG","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"99522df7-0e52-463c-a041-c27205e7a2d9","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/paginated?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","guests","paginated"],"query":[{"description":"(Required) mandatory, filters for exact match of guest eventId (which is the event UUID) value","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact guest firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for guest firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact guest lastName","key":"lastName","value":"Smith","disabled":true},{"description":"optional, filters case insensitive for guest lastName containing the value","key":"lastNameContains","value":"Sm","disabled":true},{"description":"optional, filters case insensitive for exact guest email","key":"email","value":"john@mail.com","disabled":true},{"description":"optional, filters for exact match of one guest invitationState (This can only be one of NONE,ACCEPTED,DECLINED,NO_REPLY)","key":"invitationState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of guest invitationId","key":"invitationId","value":"a3d70e9egjj68487j1ag0ocwvc9ond1evxpd1b7sfz","disabled":true},{"description":"optional, filters for exact match of guest ticketId","key":"ticketId","value":"JG4F66Q9C4QG","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"af630c8f-e184-41ca-ba9e-23f4439f4507"},{"name":"Get deleted guests as RestResponse (restricted)","id":"c2e24f3d-944b-4e40-a438-c533ad3a3461","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/guests/deleted","description":"<p>Get a RestResponse with a paginated list of deleted guests based on the specified filters and sorting parameters.<br />\n⚠️ Access to this endpoint is restricted and is not included in the default API licenses. Please contact the Sweap Support team at <a href=\"mailto:support@sweap.io\">support@sweap.io</a> to request access.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guests","deleted"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters with deletedAfter greater than event deletedAt</p>\n","type":"text/plain"},"key":"deletedAfter","value":"2025-01-28T17:34:05.713Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = deletedAt) (This can only be one of deletedAt)</p>\n","type":"text/plain"},"key":"sortBy","value":"deletedAt"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"80d23ba6-9e82-42ee-b5d1-b1752ce5e429","name":"Deleted guests information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/deleted","host":["https://api.sweap.io"],"path":["core","v1","guests","deleted"],"query":[{"description":"optional, filters with deletedAfter greater than event deletedAt","key":"deletedAfter","value":"2025-01-28T17:34:05.713Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, sorting variable value for pagination (default value = deletedAt) (This can only be one of deletedAt)","key":"sortBy","value":"deletedAt","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"UNAUTHORIZED\",\n  \"content\": [\n    {\n      \"externalId\": \"abc-1234\",\n      \"deletedAt\": \"2025-01-28T17:34:05.714Z\",\n      \"id\": \"323e4567-e89b-12d3-a456-426655440000\",\n      \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n    },\n    {\n      \"externalId\": \"abc-1234\",\n      \"deletedAt\": \"2025-01-28T17:34:05.714Z\",\n      \"id\": \"323e4567-e89b-12d3-a456-426655440000\",\n      \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 1853,\n    \"totalElements\": 4512,\n    \"totalPages\": 140,\n    \"page\": 507\n  }\n}"},{"id":"dd8c8066-687e-4a77-af21-7896e0e9e0b0","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/deleted","host":["https://api.sweap.io"],"path":["core","v1","guests","deleted"],"query":[{"description":"optional, filters with deletedAfter greater than event deletedAt","key":"deletedAfter","value":"2025-01-28T17:34:05.713Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, sorting variable value for pagination (default value = deletedAt) (This can only be one of deletedAt)","key":"sortBy","value":"deletedAt","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"6a9b61fb-e4e7-4e7a-992c-92cb5012084a","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/deleted","host":["https://api.sweap.io"],"path":["core","v1","guests","deleted"],"query":[{"description":"optional, filters with deletedAfter greater than event deletedAt","key":"deletedAfter","value":"2025-01-28T17:34:05.713Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, sorting variable value for pagination (default value = deletedAt) (This can only be one of deletedAt)","key":"sortBy","value":"deletedAt","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"490f90ee-a8d3-4e35-a4b9-d388a086dfc0","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/deleted","host":["https://api.sweap.io"],"path":["core","v1","guests","deleted"],"query":[{"description":"optional, filters with deletedAfter greater than event deletedAt","key":"deletedAfter","value":"2025-01-28T17:34:05.713Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, sorting variable value for pagination (default value = deletedAt) (This can only be one of deletedAt)","key":"sortBy","value":"deletedAt","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"c2e24f3d-944b-4e40-a438-c533ad3a3461"},{"name":"Get custom field definitions","id":"0bde797c-ef79-46f7-8b1f-cb17ffe07c85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/guests/custom-field-definitions","description":"<p>Get custom field definitions for guests or events based on the provided query parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guests","custom-field-definitions"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"key":"guestId","value":"string"},{"disabled":true,"key":"eventId","value":"string"}],"variable":[]}},"response":[{"id":"92cb62e3-aa6d-4760-921c-5df8a6d81246","name":"Custom field definitions retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/custom-field-definitions","host":["https://api.sweap.io"],"path":["core","v1","guests","custom-field-definitions"],"query":[{"key":"guestId","value":"string","disabled":true},{"key":"eventId","value":"string","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"customFieldDefinitions\": [\n    {\n      \"name\": \"T-Shirt Size\",\n      \"type\": \"TEXT\",\n      \"sortIndex\": 1\n    }\n  ]\n}"},{"id":"8da8fa74-de7b-4f59-9e5f-fd281accb06a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/custom-field-definitions","host":["https://api.sweap.io"],"path":["core","v1","guests","custom-field-definitions"],"query":[{"key":"guestId","value":"string","disabled":true},{"key":"eventId","value":"string","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"f992b3e9-e8a6-4972-bccf-128af4c519fb","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/custom-field-definitions","host":["https://api.sweap.io"],"path":["core","v1","guests","custom-field-definitions"],"query":[{"key":"guestId","value":"string","disabled":true},{"key":"eventId","value":"string","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"facdae62-97bf-46e1-9b8f-13939b325314","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guests/custom-field-definitions","host":["https://api.sweap.io"],"path":["core","v1","guests","custom-field-definitions"],"query":[{"key":"guestId","value":"string","disabled":true},{"key":"eventId","value":"string","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"0bde797c-ef79-46f7-8b1f-cb17ffe07c85"}],"id":"14788767-0d73-428a-97ec-c7901669f316","description":"<p>A guest is always assigned to an event. Hence, when creating or updating a guest you always need to set an <code>eventId</code>. However, once a guest has been created it cannot be assigned to another event.</p>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires <code>guests_read</code> for GET endpoints.</li>\n<li>Requires <code>guests_write</code> for POST, PUT, PATCH and DELETE endpoints.</li>\n<li>Requires <code>deleted_resources_read</code> to GET deleted resources.</li>\n</ul>\n<p><strong>JSON Structure:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firstName</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-write</td>\n<td>given name</td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-write</td>\n<td>family name</td>\n</tr>\n<tr>\n<td><code>entourageCount</code></td>\n<td><code>Number</code> (Integer)</td>\n<td>read-write</td>\n<td>Number of accompanying persons; if passed <code>null</code> will be set to <code>0</code></td>\n</tr>\n<tr>\n<td><code>comment</code></td>\n<td><code>String</code></td>\n<td>read-write</td>\n<td>just a regular comment field</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-write</td>\n<td>email address</td>\n</tr>\n<tr>\n<td><code>invitationState</code></td>\n<td><code>String</code> (Enum)</td>\n<td>read-write</td>\n<td><em>required</em>  <br />invitation state as string enum:  <br />- <code>NONE</code>: no invitation has been sent yet  <br />- <code>ACCEPTED</code>: invitation was accepted by guest  <br />- <code>DECLINED</code>: invitation was declined by guest  <br />- <code>NO_REPLY</code>: invitation wasn't answered by guest</td>\n</tr>\n<tr>\n<td><code>customFields</code></td>\n<td><code>JSON Object</code></td>\n<td>read-write</td>\n<td>by setting custom fields you can pass values for custom field definitions that were previously defined. The dictionary key is the ID of the <code>CustomFieldDefinition</code> and the value is the concrete value to pass into the custom field.</td>\n</tr>\n<tr>\n<td><code>eventId</code></td>\n<td><code>String</code> (UUID)</td>\n<td>read-write</td>\n<td><em>required</em>  <br />only assignable via <code>POST</code>  <br />unique identifier of an event. <em>Required</em> only when creating guests.</td>\n</tr>\n<tr>\n<td><code>invitationId</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>unique ID for the guest invitation process, e.g. to load the registration page</td>\n</tr>\n<tr>\n<td><code>ticketId</code></td>\n<td><code>String</code></td>\n<td>read-write</td>\n<td>unique ID used to generate the ticket QR-Code</td>\n</tr>\n<tr>\n<td><code>parentGuestId</code></td>\n<td><code>String</code> (UUID)</td>\n<td>read-only</td>\n<td>unique identifier of a parent guest, this means this guest is a companion of the parent guest</td>\n</tr>\n<tr>\n<td><code>categoryId</code></td>\n<td><code>String</code> (UUID)</td>\n<td>read-only</td>\n<td>unique identifier of a category, this means this guest is grouped in this category</td>\n</tr>\n<tr>\n<td><code>attendanceState</code></td>\n<td><code>String</code> (Enum)</td>\n<td>read-only</td>\n<td>attendance state defined by check-ins as string enum:  <br />- <code>NONE</code>: guest is not yet checked in  <br />- <code>PRESENT</code>: guest is checked in  <br />- <code>GONE</code>: guest is checked out</td>\n</tr>\n<tr>\n<td><code>creationOrigin</code></td>\n<td><code>String</code> (Enum)</td>\n<td>read-only</td>\n<td>describes different possible creation origins:  <br />- <code>UNKNOWN</code>  <br />- <code>SYSTEM</code>  <br />- <code>WEB_APP</code>  <br />- <code>MOBILE_APP</code>  <br />- <code>REGISTRATION</code>  <br />- <code>API</code>  <br />- <code>IMPORT_FILE</code>  <br />- <code>IMPORT_EXTERN</code>  <br />- <code>CONTACT_HUB</code></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Write endpoint option (<code>POST</code>, <code>PUT</code>, <code>PATCH</code>):</strong></p>\n<ul>\n<li>Optional query parameter <code>ignoreUnknownCustomFieldIds</code> (default <code>false</code>)</li>\n<li>If <code>false</code> (default), newly added or changed unknown custom field IDs in <code>customFields</code> return <code>4001 Invalid Property</code></li>\n<li>If <code>true</code>, unknown custom field IDs in <code>customFields</code> are ignored and are not persisted</li>\n</ul>\n<p><strong>Update behavior (<code>PUT</code>, <code>PATCH</code>):</strong></p>\n<ul>\n<li><code>customFields</code> are normalized against the current <code>customFieldDefinitions</code> before persistence</li>\n<li>Custom field entries that are no longer defined may be omitted from the resulting resource</li>\n</ul>\n","_postman_id":"14788767-0d73-428a-97ec-c7901669f316","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}}},{"name":"Categories","item":[{"name":"Get categories as list","id":"8de435a1-ee21-4f25-9516-0c4cf58b0bfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/categories?eventId=123e4567-e89b-12d3-a456-42665544000","description":"<p>Get a paginated list of categories based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","categories"],"host":["https://api.sweap.io"],"query":[{"description":{"content":"<p>(Required) mandatory, eventId equals category eventId (which is the event UUID)</p>\n","type":"text/plain"},"key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact category name</p>\n","type":"text/plain"},"key":"name","value":"string"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for category name containing the value</p>\n","type":"text/plain"},"key":"nameContains","value":"string"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)</p>\n","type":"text/plain"},"key":"sortBy","value":"name"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (no default value, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"1000"}],"variable":[]}},"response":[{"id":"6a3ad45d-df76-4fc8-bdc7-561b856f69d2","name":"Category information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","categories"],"query":[{"description":"(Required) mandatory, eventId equals category eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact category name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for category name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"name\": \"VIP\",\n    \"colorHex\": \"#ffffff\",\n    \"sortIndex\": 0,\n    \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n  },\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"name\": \"VIP\",\n    \"colorHex\": \"#ffffff\",\n    \"sortIndex\": 0,\n    \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n  }\n]"},{"id":"dd1034d3-5f97-46e8-99da-e35fbf8e4b13","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","categories"],"query":[{"description":"(Required) mandatory, eventId equals category eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact category name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for category name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"47c62318-d6b5-40b6-a264-da195ff15dcc","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","categories"],"query":[{"description":"(Required) mandatory, eventId equals category eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact category name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for category name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"ea923221-8070-4cb8-9749-8d5a7d932bf4","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","categories"],"query":[{"description":"(Required) mandatory, eventId equals category eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact category name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for category name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"8de435a1-ee21-4f25-9516-0c4cf58b0bfa"},{"name":"Get single category by ID","id":"d44b5483-24c1-407f-8687-259c3bee7028","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/categories/:id","description":"<p>Get the category with the specified ID</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","categories",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"8650c5a8-365e-4198-9c00-310480c4db8a","description":{"content":"<p>(Required) ID (UUID) of the category</p>\n","type":"text/plain"},"type":"any","value":"456e7890-e89b-12d3-a456-426614174001","key":"id"}]}},"response":[{"id":"ed090575-45e1-4090-9ba6-b54d43cae782","name":"Category information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories/:id","host":["https://api.sweap.io"],"path":["core","v1","categories",":id"],"variable":[{"key":"id","value":"456e7890-e89b-12d3-a456-426614174001","description":"(Required) ID (UUID) of the category"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"name\": \"VIP\",\n  \"colorHex\": \"#ffffff\",\n  \"sortIndex\": 0,\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}"},{"id":"fedf1a6c-cd4e-4007-93b0-b639d309cedf","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories/:id","host":["https://api.sweap.io"],"path":["core","v1","categories",":id"],"variable":[{"key":"id","value":"456e7890-e89b-12d3-a456-426614174001","description":"(Required) ID (UUID) of the category"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"911ed737-2066-401c-990a-8e939bbb57f2","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories/:id","host":["https://api.sweap.io"],"path":["core","v1","categories",":id"],"variable":[{"key":"id","value":"456e7890-e89b-12d3-a456-426614174001","description":"(Required) ID (UUID) of the category"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"c1e79ffe-afee-44d3-aabd-bd5233576af0","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories/:id","host":["https://api.sweap.io"],"path":["core","v1","categories",":id"],"variable":[{"key":"id","value":"456e7890-e89b-12d3-a456-426614174001","description":"(Required) ID (UUID) of the category"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4040,\n  \"message\": \"No [resource name] resource with id 123e4567-e89b-12d3-a456-426655440000 found.\",\n  \"requestId\": \"08ed380a-2c42-447a-abcb-22cb872da017\"\n}\n"},{"id":"ec2851ab-77ff-4c4f-a25b-0eeb88c1ab29","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories/:id","host":["https://api.sweap.io"],"path":["core","v1","categories",":id"],"variable":[{"key":"id","value":"456e7890-e89b-12d3-a456-426614174001","description":"(Required) ID (UUID) of the category"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"d44b5483-24c1-407f-8687-259c3bee7028"},{"name":"Get categories as RestResponse","id":"db6725e8-c367-4d4c-a5b9-4023fc5ffede","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/categories/paginated?eventId=123e4567-e89b-12d3-a456-42665544000","description":"<p>Get a RestResponse with a paginated list of categories based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","categories","paginated"],"host":["https://api.sweap.io"],"query":[{"description":{"content":"<p>(Required) mandatory, eventId equals category eventId (which is the event UUID)</p>\n","type":"text/plain"},"key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact category name</p>\n","type":"text/plain"},"key":"name","value":"string"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for category name containing the value</p>\n","type":"text/plain"},"key":"nameContains","value":"string"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)</p>\n","type":"text/plain"},"key":"sortBy","value":"name"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"52bb3550-b3a0-448a-bf59-86cc4ab0acd1","name":"Category information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories/paginated?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","categories","paginated"],"query":[{"description":"(Required) mandatory, eventId equals category eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact category name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for category name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"DUPLICATE_ENTITY\",\n  \"content\": [\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"name\": \"VIP\",\n      \"colorHex\": \"#ffffff\",\n      \"sortIndex\": 0,\n      \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n    },\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"name\": \"VIP\",\n      \"colorHex\": \"#ffffff\",\n      \"sortIndex\": 0,\n      \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 9544,\n    \"totalElements\": 182,\n    \"totalPages\": 3272,\n    \"page\": 5734\n  }\n}"},{"id":"61b16ef6-ccfe-443d-856d-8f0c8d61b10b","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories/paginated?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","categories","paginated"],"query":[{"description":"(Required) mandatory, eventId equals category eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact category name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for category name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"25daaba7-56ca-4c21-b30b-82e58c17001b","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories/paginated?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","categories","paginated"],"query":[{"description":"(Required) mandatory, eventId equals category eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact category name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for category name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"6fd76d99-15d0-4e6f-a792-a6fb3559a803","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/categories/paginated?eventId=123e4567-e89b-12d3-a456-42665544000","host":["https://api.sweap.io"],"path":["core","v1","categories","paginated"],"query":[{"description":"(Required) mandatory, eventId equals category eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"description":"optional, filters case insensitive for exact category name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for category name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"db6725e8-c367-4d4c-a5b9-4023fc5ffede"}],"id":"a8189865-77dc-47d2-b788-ce9b84988b06","description":"<p>A category is always assigned to an event and is a group of guests. Each guest can have an optional <code>categoryId</code>.</p>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires the <code>categories_read</code> for GET endpoints.</li>\n</ul>\n<p><strong>JSON Structure:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-only</td>\n<td>given name</td>\n</tr>\n<tr>\n<td><code>colorHex</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>hex color, e.g. #ffffff</td>\n</tr>\n<tr>\n<td><code>sortIndex</code></td>\n<td><code>Number</code> (Integer)</td>\n<td>read-only</td>\n<td>Index for ordering categories, usually but not necessarily starts at <code>0</code> and is ongoing</td>\n</tr>\n<tr>\n<td><code>eventId</code></td>\n<td><code>String</code> (UUID)</td>\n<td>read-only</td>\n<td><em>required</em> unique identifier of an event and is never null</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a8189865-77dc-47d2-b788-ce9b84988b06","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}}},{"name":"Registration Pages","item":[{"name":"Get registration pages as list","id":"b4cb6bce-3393-456d-9227-cd8229f6d6da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/registration-pages","description":"<p>Get a paginated list of registration pages based on the specified filters and sorting parameters.<br />\n⚠️ Requires <code>registration_pages_read</code>. Access to this endpoint is restricted and is not included in the default API licenses. Please contact <a href=\"mailto:support@sweap.io\">support@sweap.io</a> to request access.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","registration-pages"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, eventId equals registration-page eventId (which is the event UUID)</p>\n","type":"text/plain"},"key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact registration-page name</p>\n","type":"text/plain"},"key":"name","value":"string"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for registration-page name containing the value</p>\n","type":"text/plain"},"key":"nameContains","value":"string"},{"disabled":true,"description":{"content":"<p>optional, filters for registrationClosedDateBefore less than registration-page closedDate</p>\n","type":"text/plain"},"key":"registrationClosedDateBefore","value":"2025-01-27T12:15:00.000Z"},{"disabled":true,"description":{"content":"<p>optional, filters for registrationClosedDateAfter equal or greater than registration-page closedDate</p>\n","type":"text/plain"},"key":"registrationClosedDateAfter","value":"2025-01-27T08:00:00.000Z"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)</p>\n","type":"text/plain"},"key":"sortBy","value":"name"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (no default value, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"1000"}],"variable":[]}},"response":[{"id":"f351febd-f515-4190-94f6-16a3c7d835ef","name":"Registration pages information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages","host":["https://api.sweap.io"],"path":["core","v1","registration-pages"],"query":[{"description":"optional, eventId equals registration-page eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters case insensitive for exact registration-page name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for registration-page name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, filters for registrationClosedDateBefore less than registration-page closedDate","key":"registrationClosedDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for registrationClosedDateAfter equal or greater than registration-page closedDate","key":"registrationClosedDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"name\": \"Company Summit 2025 - registration\",\n    \"registrationClosedDate\": \"2025-09-20T18:30:00.000Z\",\n    \"maxGuestCount\": 50,\n    \"publicRegistrationUrl\": \"https://sweapevent.com/demoevent\",\n    \"registrationCode\": \"JOIN-2025\",\n    \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n    \"publishingDetails\": {\n      \"overviewPage\": {\n        \"enabled\": true,\n        \"title\": \"Annual Company Conference\",\n        \"teaserText\": \"Join us for our annual conference with keynote speakers and networking opportunities.\",\n        \"teaserImageUrl\": \"https://cdn.sweap.io/assets/commons/images/logo/powered-by-sweap.png\"\n      },\n      \"ihk24\": {\n        \"enabled\": true,\n        \"title\": \"Advanced seminar on founding a company\",\n        \"searchText\": \"founder, entrepreneurship, startup\",\n        \"iconName\": \"example-icon\",\n        \"imageId\": \"6278092\",\n        \"category\": \"Start-up and succession\",\n        \"shortDescription\": \"Discover the essentials for building a sustainable start-up in this in-depth seminar.\"\n      }\n    }\n  },\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"name\": \"Company Summit 2025 - registration\",\n    \"registrationClosedDate\": \"2025-09-20T18:30:00.000Z\",\n    \"maxGuestCount\": 50,\n    \"publicRegistrationUrl\": \"https://sweapevent.com/demoevent\",\n    \"registrationCode\": \"JOIN-2025\",\n    \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n    \"publishingDetails\": {\n      \"overviewPage\": {\n        \"enabled\": true,\n        \"title\": \"Annual Company Conference\",\n        \"teaserText\": \"Join us for our annual conference with keynote speakers and networking opportunities.\",\n        \"teaserImageUrl\": \"https://cdn.sweap.io/assets/commons/images/logo/powered-by-sweap.png\"\n      },\n      \"ihk24\": {\n        \"enabled\": true,\n        \"title\": \"Advanced seminar on founding a company\",\n        \"searchText\": \"founder, entrepreneurship, startup\",\n        \"iconName\": \"example-icon\",\n        \"imageId\": \"6278092\",\n        \"category\": \"Start-up and succession\",\n        \"shortDescription\": \"Discover the essentials for building a sustainable start-up in this in-depth seminar.\"\n      }\n    }\n  }\n]"},{"id":"d2b7a737-cc6f-456a-b618-461aad20a101","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages","host":["https://api.sweap.io"],"path":["core","v1","registration-pages"],"query":[{"description":"optional, eventId equals registration-page eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters case insensitive for exact registration-page name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for registration-page name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, filters for registrationClosedDateBefore less than registration-page closedDate","key":"registrationClosedDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for registrationClosedDateAfter equal or greater than registration-page closedDate","key":"registrationClosedDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"3e6d8295-66c3-4852-9821-7597c9fd9cce","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages","host":["https://api.sweap.io"],"path":["core","v1","registration-pages"],"query":[{"description":"optional, eventId equals registration-page eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters case insensitive for exact registration-page name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for registration-page name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, filters for registrationClosedDateBefore less than registration-page closedDate","key":"registrationClosedDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for registrationClosedDateAfter equal or greater than registration-page closedDate","key":"registrationClosedDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"92772529-74b6-4b1d-97bb-a564e687516c","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages","host":["https://api.sweap.io"],"path":["core","v1","registration-pages"],"query":[{"description":"optional, eventId equals registration-page eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters case insensitive for exact registration-page name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for registration-page name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, filters for registrationClosedDateBefore less than registration-page closedDate","key":"registrationClosedDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for registrationClosedDateAfter equal or greater than registration-page closedDate","key":"registrationClosedDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"b4cb6bce-3393-456d-9227-cd8229f6d6da"},{"name":"Get single registration page by ID","id":"bf0f26f1-cedf-4750-9a46-1d4943526a1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/registration-pages/:id","description":"<p>Get the registration page with the specified ID.<br />\n⚠️ Requires <code>registration_pages_read</code>. Access to this endpoint is restricted and is not included in the default API licenses. Please contact <a href=\"mailto:support@sweap.io\">support@sweap.io</a> to request access.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","registration-pages",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"5ee7f10f-b563-45de-8735-edefef9034b0","description":{"content":"<p>(Required) ID (UUID) of the registration page</p>\n","type":"text/plain"},"type":"any","value":"51de5104-5daf-4135-acdd-982f53cce76f","key":"id"}]}},"response":[{"id":"c4a4d851-40d8-4f9b-a51e-15842161e8f2","name":"Registration page information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages/:id","host":["https://api.sweap.io"],"path":["core","v1","registration-pages",":id"],"variable":[{"key":"id","value":"51de5104-5daf-4135-acdd-982f53cce76f","description":"(Required) ID (UUID) of the registration page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"name\": \"Company Summit 2025 - registration\",\n  \"registrationClosedDate\": \"2025-09-20T18:30:00.000Z\",\n  \"maxGuestCount\": 50,\n  \"publicRegistrationUrl\": \"https://sweapevent.com/demoevent\",\n  \"registrationCode\": \"JOIN-2025\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n  \"publishingDetails\": {\n    \"overviewPage\": {\n      \"enabled\": true,\n      \"title\": \"Annual Company Conference\",\n      \"teaserText\": \"Join us for our annual conference with keynote speakers and networking opportunities.\",\n      \"teaserImageUrl\": \"https://cdn.sweap.io/assets/commons/images/logo/powered-by-sweap.png\"\n    },\n    \"ihk24\": {\n      \"enabled\": true,\n      \"title\": \"Advanced seminar on founding a company\",\n      \"searchText\": \"founder, entrepreneurship, startup\",\n      \"iconName\": \"example-icon\",\n      \"imageId\": \"6278092\",\n      \"category\": \"Start-up and succession\",\n      \"shortDescription\": \"Discover the essentials for building a sustainable start-up in this in-depth seminar.\"\n    }\n  }\n}"},{"id":"b43cb77b-8dd2-4916-b456-891a0b53589d","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages/:id","host":["https://api.sweap.io"],"path":["core","v1","registration-pages",":id"],"variable":[{"key":"id","value":"51de5104-5daf-4135-acdd-982f53cce76f","description":"(Required) ID (UUID) of the registration page"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"3d219eb9-b012-461b-b4f3-cebd08cf22e2","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages/:id","host":["https://api.sweap.io"],"path":["core","v1","registration-pages",":id"],"variable":[{"key":"id","value":"51de5104-5daf-4135-acdd-982f53cce76f","description":"(Required) ID (UUID) of the registration page"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"065b21f6-5de5-4101-ba47-90b24a727827","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages/:id","host":["https://api.sweap.io"],"path":["core","v1","registration-pages",":id"],"variable":[{"key":"id","value":"51de5104-5daf-4135-acdd-982f53cce76f","description":"(Required) ID (UUID) of the registration page"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4040,\n  \"message\": \"No [resource name] resource with id 123e4567-e89b-12d3-a456-426655440000 found.\",\n  \"requestId\": \"08ed380a-2c42-447a-abcb-22cb872da017\"\n}\n"},{"id":"0203bf8a-561e-4db1-bcbf-976c1d01e04a","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages/:id","host":["https://api.sweap.io"],"path":["core","v1","registration-pages",":id"],"variable":[{"key":"id","value":"51de5104-5daf-4135-acdd-982f53cce76f","description":"(Required) ID (UUID) of the registration page"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"bf0f26f1-cedf-4750-9a46-1d4943526a1e"},{"name":"Get registration pages as RestResponse","id":"5a4795f3-8168-4cf4-8d67-6c786950acc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/registration-pages/paginated","description":"<p>Get a RestResponse with a paginated list of registration pages based on the specified filters and sorting parameters.<br />\n⚠️ Requires <code>registration_pages_read</code>. Access to this endpoint is restricted and is not included in the default API licenses. Please contact <a href=\"mailto:support@sweap.io\">support@sweap.io</a> to request access.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","registration-pages","paginated"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, eventId equals registration-page eventId (which is the event UUID)</p>\n","type":"text/plain"},"key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact registration-page name</p>\n","type":"text/plain"},"key":"name","value":"string"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for registration-page name containing the value</p>\n","type":"text/plain"},"key":"nameContains","value":"string"},{"disabled":true,"description":{"content":"<p>optional, filters for registrationClosedDateBefore less than registration-page closedDate</p>\n","type":"text/plain"},"key":"registrationClosedDateBefore","value":"2025-01-27T12:15:00.000Z"},{"disabled":true,"description":{"content":"<p>optional, filters for registrationClosedDateAfter equal or greater than registration-page closedDate</p>\n","type":"text/plain"},"key":"registrationClosedDateAfter","value":"2025-01-27T08:00:00.000Z"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)</p>\n","type":"text/plain"},"key":"sortBy","value":"name"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"920e0dad-cfa5-4dc1-8b2e-597bd80ec663","name":"Registration pages information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages/paginated","host":["https://api.sweap.io"],"path":["core","v1","registration-pages","paginated"],"query":[{"description":"optional, eventId equals registration-page eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters case insensitive for exact registration-page name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for registration-page name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, filters for registrationClosedDateBefore less than registration-page closedDate","key":"registrationClosedDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for registrationClosedDateAfter equal or greater than registration-page closedDate","key":"registrationClosedDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"VALIDATION_EXCEPTION\",\n  \"content\": [\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"name\": \"Company Summit 2025 - registration\",\n      \"registrationClosedDate\": \"2025-09-20T18:30:00.000Z\",\n      \"maxGuestCount\": 50,\n      \"publicRegistrationUrl\": \"https://sweapevent.com/demoevent\",\n      \"registrationCode\": \"JOIN-2025\",\n      \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n      \"publishingDetails\": {\n        \"overviewPage\": {\n          \"enabled\": true,\n          \"title\": \"Annual Company Conference\",\n          \"teaserText\": \"Join us for our annual conference with keynote speakers and networking opportunities.\",\n          \"teaserImageUrl\": \"https://cdn.sweap.io/assets/commons/images/logo/powered-by-sweap.png\"\n        },\n        \"ihk24\": {\n          \"enabled\": true,\n          \"title\": \"Advanced seminar on founding a company\",\n          \"searchText\": \"founder, entrepreneurship, startup\",\n          \"iconName\": \"example-icon\",\n          \"imageId\": \"6278092\",\n          \"category\": \"Start-up and succession\",\n          \"shortDescription\": \"Discover the essentials for building a sustainable start-up in this in-depth seminar.\"\n        }\n      }\n    },\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"name\": \"Company Summit 2025 - registration\",\n      \"registrationClosedDate\": \"2025-09-20T18:30:00.000Z\",\n      \"maxGuestCount\": 50,\n      \"publicRegistrationUrl\": \"https://sweapevent.com/demoevent\",\n      \"registrationCode\": \"JOIN-2025\",\n      \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\",\n      \"publishingDetails\": {\n        \"overviewPage\": {\n          \"enabled\": true,\n          \"title\": \"Annual Company Conference\",\n          \"teaserText\": \"Join us for our annual conference with keynote speakers and networking opportunities.\",\n          \"teaserImageUrl\": \"https://cdn.sweap.io/assets/commons/images/logo/powered-by-sweap.png\"\n        },\n        \"ihk24\": {\n          \"enabled\": true,\n          \"title\": \"Advanced seminar on founding a company\",\n          \"searchText\": \"founder, entrepreneurship, startup\",\n          \"iconName\": \"example-icon\",\n          \"imageId\": \"6278092\",\n          \"category\": \"Start-up and succession\",\n          \"shortDescription\": \"Discover the essentials for building a sustainable start-up in this in-depth seminar.\"\n        }\n      }\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 5968,\n    \"totalElements\": 3759,\n    \"totalPages\": 3874,\n    \"page\": 1030\n  }\n}"},{"id":"1a10233e-14a4-4e88-b950-49140604c7ff","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages/paginated","host":["https://api.sweap.io"],"path":["core","v1","registration-pages","paginated"],"query":[{"description":"optional, eventId equals registration-page eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters case insensitive for exact registration-page name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for registration-page name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, filters for registrationClosedDateBefore less than registration-page closedDate","key":"registrationClosedDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for registrationClosedDateAfter equal or greater than registration-page closedDate","key":"registrationClosedDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"92acf0fb-aeaa-4511-a8fe-a4b0a1a2c485","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages/paginated","host":["https://api.sweap.io"],"path":["core","v1","registration-pages","paginated"],"query":[{"description":"optional, eventId equals registration-page eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters case insensitive for exact registration-page name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for registration-page name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, filters for registrationClosedDateBefore less than registration-page closedDate","key":"registrationClosedDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for registrationClosedDateAfter equal or greater than registration-page closedDate","key":"registrationClosedDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"98396572-c6ad-4d66-8ee8-f8cab05fc574","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/registration-pages/paginated","host":["https://api.sweap.io"],"path":["core","v1","registration-pages","paginated"],"query":[{"description":"optional, eventId equals registration-page eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters case insensitive for exact registration-page name","key":"name","value":"string","disabled":true},{"description":"optional, filters case insensitive for registration-page name containing the value","key":"nameContains","value":"string","disabled":true},{"description":"optional, filters for registrationClosedDateBefore less than registration-page closedDate","key":"registrationClosedDateBefore","value":"2025-01-27T12:15:00.000Z","disabled":true},{"description":"optional, filters for registrationClosedDateAfter equal or greater than registration-page closedDate","key":"registrationClosedDateAfter","value":"2025-01-27T08:00:00.000Z","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"5a4795f3-8168-4cf4-8d67-6c786950acc3"}],"id":"762ee7a9-73c6-49bb-b868-afb39b86ea32","description":"<p>Represents registration pages for events. It only returns registration pages and no virtual event pages.</p>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires the <code>registration_pages_read</code> for GET endpoints (restricted access).</li>\n</ul>\n<p>⚠️ Access to <code>registration_pages_read</code> is restricted and not included in default API licenses. Contact Sweap Support at <a href=\"mailto:support@sweap.io\">support@sweap.io</a> to request access.</p>\n<p><strong>JSON Structure:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-only</td>\n<td>Internal name of the registration page</td>\n</tr>\n<tr>\n<td><code>registrationClosedDate</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>ISO 8601 timestamp when registrations close; <code>null</code> when registration stays open</td>\n</tr>\n<tr>\n<td><code>maxGuestCount</code></td>\n<td><code>Number</code></td>\n<td>read-only</td>\n<td>Maximum number of guests allowed to register via this page; <code>null</code> means unlimited</td>\n</tr>\n<tr>\n<td><code>publicRegistrationUrl</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>Public registration URL; <code>null</code> when the page is private or only code-accessible</td>\n</tr>\n<tr>\n<td><code>registrationCode</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-only</td>\n<td>Access code shown when the public registration page is code-protected; may be <code>null</code></td>\n</tr>\n<tr>\n<td><code>eventId</code></td>\n<td><code>String</code> (UUID)</td>\n<td>read-only</td>\n<td>UUID of the associated event (required)</td>\n</tr>\n<tr>\n<td><code>publishingDetails</code></td>\n<td><code>Object</code></td>\n<td>read-only</td>\n<td>Publishing metadata for Sweap overview and IHK24; see nested fields below</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>publishingDetails.overviewPage</strong></p>\n<p>Always present; when no overview page configuration exists, <code>enabled</code> is <code>false</code> and the other fields are <code>null</code>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>enabled</code></td>\n<td><code>Boolean</code></td>\n<td>read-only</td>\n<td>True when listed on the Sweap event overview page</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>Optional title shown on the overview page</td>\n</tr>\n<tr>\n<td><code>teaserText</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>Optional teaser text for the overview page (supports newlines)</td>\n</tr>\n<tr>\n<td><code>teaserImageUrl</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>Optional teaser image URL</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>publishingDetails.ihk24</strong></p>\n<p>Always present; when no IHK24 configuration exists, <code>enabled</code> is <code>false</code> and the other fields are <code>null</code>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>enabled</code></td>\n<td><code>Boolean</code></td>\n<td>read-only</td>\n<td>True when published on IHK24</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>Optional title sent to IHK24</td>\n</tr>\n<tr>\n<td><code>searchText</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>Optional search keywords shown on IHK24</td>\n</tr>\n<tr>\n<td><code>iconName</code></td>\n<td><code>String</code> (max 25)</td>\n<td>read-only</td>\n<td>Optional icon identifier from the IHK24 pictogram finder</td>\n</tr>\n<tr>\n<td><code>imageId</code></td>\n<td><code>String</code> (max 25)</td>\n<td>read-only</td>\n<td>Optional image ID from the CoreMedia CMS configured for IHK24</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td><code>String</code> (max 50)</td>\n<td>read-only</td>\n<td>Optional IHK24 category (main or subcategory)</td>\n</tr>\n<tr>\n<td><code>shortDescription</code></td>\n<td><code>String</code> (max 250)</td>\n<td>read-only</td>\n<td>Optional short description/meta used by IHK24</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"762ee7a9-73c6-49bb-b868-afb39b86ea32","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}}},{"name":"Guest Bulk Imports","item":[{"name":"Get guest bulk imports as list","id":"936230e1-739a-4071-b597-289649a6f703","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/guest-bulk-imports","description":"<p>Get a paginated list of guest bulk imports based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guest-bulk-imports"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters guest-bulk-import eventId equals guest-bulk-import eventId (which is the event UUID)</p>\n","type":"text/plain"},"key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of one guest-bulk-import state (This can only be one of UPLOAD_STARTED,UPLOAD_FINISHED,IMPORT_STARTED,IMPORT_FINISHED)</p>\n","type":"text/plain"},"key":"state","value":"UPLOAD_STARTED"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)</p>\n","type":"text/plain"},"key":"sortBy","value":"name"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (no default value, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"1000"}],"variable":[]}},"response":[{"id":"6700e4ca-3680-4ff6-9289-c034d6a2d1e5","name":"Guest Bulk Imports information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports"],"query":[{"description":"optional, filters guest-bulk-import eventId equals guest-bulk-import eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters for exact match of one guest-bulk-import state (This can only be one of UPLOAD_STARTED,UPLOAD_FINISHED,IMPORT_STARTED,IMPORT_FINISHED)","key":"state","value":"UPLOAD_STARTED","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"name\": \"My Bulk Import\",\n    \"customFieldDefinitions\": [\n      {\n        \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n        \"name\": \"Text value\",\n        \"sortIndex\": 0,\n        \"type\": \"TEXT\",\n        \"groupName\": \"Personal information\",\n        \"options\": {\n          \"values\": [\n            {\n              \"value\": \"S\",\n              \"limit\": 25\n            },\n            {\n              \"value\": \"M\",\n              \"limit\": 100\n            }\n          ],\n          \"globalLimit\": 50\n        }\n      },\n      {\n        \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n        \"name\": \"Text value\",\n        \"sortIndex\": 0,\n        \"type\": \"TEXT\",\n        \"groupName\": \"Personal information\",\n        \"options\": {\n          \"values\": [\n            {\n              \"value\": \"S\",\n              \"limit\": 25\n            },\n            {\n              \"value\": \"M\",\n              \"limit\": 100\n            }\n          ],\n          \"globalLimit\": 50\n        }\n      }\n    ],\n    \"guests\": [\n      {\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"email\": \"john.doe@example.com\",\n        \"entourageCount\": 2,\n        \"maxEntourageCount\": 5,\n        \"customFields\": {\n          \"tshirt_size\": \"M\",\n          \"dietary_requirements\": \"vegetarian\"\n        },\n        \"invitationState\": \"ACCEPTED\",\n        \"comment\": \"VIP guest\",\n        \"categoryName\": \"Speakers\",\n        \"ticketId\": \"TKT-12345\",\n        \"externalId\": \"EXT-789\"\n      },\n      {\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"email\": \"john.doe@example.com\",\n        \"entourageCount\": 2,\n        \"maxEntourageCount\": 5,\n        \"customFields\": {\n          \"tshirt_size\": \"M\",\n          \"dietary_requirements\": \"vegetarian\"\n        },\n        \"invitationState\": \"ACCEPTED\",\n        \"comment\": \"VIP guest\",\n        \"categoryName\": \"Speakers\",\n        \"ticketId\": \"TKT-12345\",\n        \"externalId\": \"EXT-789\"\n      }\n    ],\n    \"state\": \"UPLOAD_FINISHED\",\n    \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n  },\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"name\": \"My Bulk Import\",\n    \"customFieldDefinitions\": [\n      {\n        \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n        \"name\": \"Text value\",\n        \"sortIndex\": 0,\n        \"type\": \"TEXT\",\n        \"groupName\": \"Personal information\",\n        \"options\": {\n          \"values\": [\n            {\n              \"value\": \"S\",\n              \"limit\": 25\n            },\n            {\n              \"value\": \"M\",\n              \"limit\": 100\n            }\n          ],\n          \"globalLimit\": 50\n        }\n      },\n      {\n        \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n        \"name\": \"Text value\",\n        \"sortIndex\": 0,\n        \"type\": \"TEXT\",\n        \"groupName\": \"Personal information\",\n        \"options\": {\n          \"values\": [\n            {\n              \"value\": \"S\",\n              \"limit\": 25\n            },\n            {\n              \"value\": \"M\",\n              \"limit\": 100\n            }\n          ],\n          \"globalLimit\": 50\n        }\n      }\n    ],\n    \"guests\": [\n      {\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"email\": \"john.doe@example.com\",\n        \"entourageCount\": 2,\n        \"maxEntourageCount\": 5,\n        \"customFields\": {\n          \"tshirt_size\": \"M\",\n          \"dietary_requirements\": \"vegetarian\"\n        },\n        \"invitationState\": \"ACCEPTED\",\n        \"comment\": \"VIP guest\",\n        \"categoryName\": \"Speakers\",\n        \"ticketId\": \"TKT-12345\",\n        \"externalId\": \"EXT-789\"\n      },\n      {\n        \"firstName\": \"John\",\n        \"lastName\": \"Doe\",\n        \"email\": \"john.doe@example.com\",\n        \"entourageCount\": 2,\n        \"maxEntourageCount\": 5,\n        \"customFields\": {\n          \"tshirt_size\": \"M\",\n          \"dietary_requirements\": \"vegetarian\"\n        },\n        \"invitationState\": \"ACCEPTED\",\n        \"comment\": \"VIP guest\",\n        \"categoryName\": \"Speakers\",\n        \"ticketId\": \"TKT-12345\",\n        \"externalId\": \"EXT-789\"\n      }\n    ],\n    \"state\": \"UPLOAD_FINISHED\",\n    \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n  }\n]"},{"id":"2bf09092-6937-4571-b83e-01bb195277c7","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports"],"query":[{"description":"optional, filters guest-bulk-import eventId equals guest-bulk-import eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters for exact match of one guest-bulk-import state (This can only be one of UPLOAD_STARTED,UPLOAD_FINISHED,IMPORT_STARTED,IMPORT_FINISHED)","key":"state","value":"UPLOAD_STARTED","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"208d2d76-f050-4c49-9325-4ecc85226e56","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports"],"query":[{"description":"optional, filters guest-bulk-import eventId equals guest-bulk-import eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters for exact match of one guest-bulk-import state (This can only be one of UPLOAD_STARTED,UPLOAD_FINISHED,IMPORT_STARTED,IMPORT_FINISHED)","key":"state","value":"UPLOAD_STARTED","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"9ac5c8cf-d12d-4855-9ba8-f90e1671445c","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports"],"query":[{"description":"optional, filters guest-bulk-import eventId equals guest-bulk-import eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters for exact match of one guest-bulk-import state (This can only be one of UPLOAD_STARTED,UPLOAD_FINISHED,IMPORT_STARTED,IMPORT_FINISHED)","key":"state","value":"UPLOAD_STARTED","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"936230e1-739a-4071-b597-289649a6f703"},{"name":"Create a new bulk import of guests","id":"b73b23f3-3472-435b-940a-1576a3a504b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/guest-bulk-imports","description":"<p>Create a new bulk import of guests with the specified data. This operation is only allowed if provided resource has state 'UPLOAD_STARTED' or 'UPLOAD_FINISHED'.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guest-bulk-imports"],"host":["https://api.sweap.io"],"query":[],"variable":[]}},"response":[{"id":"0693add0-eb70-45b2-a157-d2b5aa2833ce","name":"Guest Bulk Import created successfully","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/guest-bulk-imports"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}"},{"id":"618c489d-f418-4756-8024-2d5844476f20","name":"Created","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/guest-bulk-imports"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}"},{"id":"b1e201c8-165f-47fa-80ee-0a3223cd4890","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/guest-bulk-imports"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"32e0e2ac-73ed-4902-9aae-41cb13545f67","name":"Forbidden","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/guest-bulk-imports"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"9446fb09-e0b3-44d8-9223-33b4a35b8d92","name":"Internal Server Error","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/guest-bulk-imports"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"b73b23f3-3472-435b-940a-1576a3a504b6"},{"name":"Appends a batch of guests to the guest-bulk-import with the specified ID","id":"793ef1f9-8fe7-457b-8e44-e917146418a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"john.doe@example.com\",\n    \"entourageCount\": 2,\n    \"maxEntourageCount\": 5,\n    \"customFields\": {\n      \"tshirt_size\": \"M\",\n      \"dietary_requirements\": \"vegetarian\"\n    },\n    \"invitationState\": \"ACCEPTED\",\n    \"comment\": \"VIP guest\",\n    \"categoryName\": \"Speakers\",\n    \"ticketId\": \"TKT-12345\",\n    \"externalId\": \"EXT-789\"\n  },\n  {\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"john.doe@example.com\",\n    \"entourageCount\": 2,\n    \"maxEntourageCount\": 5,\n    \"customFields\": {\n      \"tshirt_size\": \"M\",\n      \"dietary_requirements\": \"vegetarian\"\n    },\n    \"invitationState\": \"ACCEPTED\",\n    \"comment\": \"VIP guest\",\n    \"categoryName\": \"Speakers\",\n    \"ticketId\": \"TKT-12345\",\n    \"externalId\": \"EXT-789\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/guest-bulk-imports/:id/upload-batch","description":"<p>Will append the guests provided by the request body to the batch specified by the given ID. This operation is only allowed if the resource identified by the provided ID is in the state 'UPLOAD_STARTED'.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guest-bulk-imports",":id","upload-batch"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"9963f47c-8f95-49fe-a9f7-8e206baa472f","description":{"content":"<p>(Required) ID (UUID) of the guest bulk import</p>\n","type":"text/plain"},"type":"any","value":"def67890-e89b-12d3-a456-426655440004","key":"id"}]}},"response":[{"id":"9f0bb19b-c9c3-4c87-b719-86886bd50dd2","name":"Guest Bulk Import information updated successfully","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"john.doe@example.com\",\n    \"entourageCount\": 2,\n    \"maxEntourageCount\": 5,\n    \"customFields\": {\n      \"tshirt_size\": \"M\",\n      \"dietary_requirements\": \"vegetarian\"\n    },\n    \"invitationState\": \"ACCEPTED\",\n    \"comment\": \"VIP guest\",\n    \"categoryName\": \"Speakers\",\n    \"ticketId\": \"TKT-12345\",\n    \"externalId\": \"EXT-789\"\n  },\n  {\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"john.doe@example.com\",\n    \"entourageCount\": 2,\n    \"maxEntourageCount\": 5,\n    \"customFields\": {\n      \"tshirt_size\": \"M\",\n      \"dietary_requirements\": \"vegetarian\"\n    },\n    \"invitationState\": \"ACCEPTED\",\n    \"comment\": \"VIP guest\",\n    \"categoryName\": \"Speakers\",\n    \"ticketId\": \"TKT-12345\",\n    \"externalId\": \"EXT-789\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id/upload-batch","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id","upload-batch"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b3abd088-0e62-47dc-a37e-ba3b23097e59","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"john.doe@example.com\",\n    \"entourageCount\": 2,\n    \"maxEntourageCount\": 5,\n    \"customFields\": {\n      \"tshirt_size\": \"M\",\n      \"dietary_requirements\": \"vegetarian\"\n    },\n    \"invitationState\": \"ACCEPTED\",\n    \"comment\": \"VIP guest\",\n    \"categoryName\": \"Speakers\",\n    \"ticketId\": \"TKT-12345\",\n    \"externalId\": \"EXT-789\"\n  },\n  {\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"john.doe@example.com\",\n    \"entourageCount\": 2,\n    \"maxEntourageCount\": 5,\n    \"customFields\": {\n      \"tshirt_size\": \"M\",\n      \"dietary_requirements\": \"vegetarian\"\n    },\n    \"invitationState\": \"ACCEPTED\",\n    \"comment\": \"VIP guest\",\n    \"categoryName\": \"Speakers\",\n    \"ticketId\": \"TKT-12345\",\n    \"externalId\": \"EXT-789\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id/upload-batch","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id","upload-batch"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"56302ed8-fbd5-4939-8570-7ea58daafca2","name":"Forbidden","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"john.doe@example.com\",\n    \"entourageCount\": 2,\n    \"maxEntourageCount\": 5,\n    \"customFields\": {\n      \"tshirt_size\": \"M\",\n      \"dietary_requirements\": \"vegetarian\"\n    },\n    \"invitationState\": \"ACCEPTED\",\n    \"comment\": \"VIP guest\",\n    \"categoryName\": \"Speakers\",\n    \"ticketId\": \"TKT-12345\",\n    \"externalId\": \"EXT-789\"\n  },\n  {\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"john.doe@example.com\",\n    \"entourageCount\": 2,\n    \"maxEntourageCount\": 5,\n    \"customFields\": {\n      \"tshirt_size\": \"M\",\n      \"dietary_requirements\": \"vegetarian\"\n    },\n    \"invitationState\": \"ACCEPTED\",\n    \"comment\": \"VIP guest\",\n    \"categoryName\": \"Speakers\",\n    \"ticketId\": \"TKT-12345\",\n    \"externalId\": \"EXT-789\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id/upload-batch","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id","upload-batch"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"2bd7e0f9-8732-4e2c-8cae-3acb7220f049","name":"Internal Server Error","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"john.doe@example.com\",\n    \"entourageCount\": 2,\n    \"maxEntourageCount\": 5,\n    \"customFields\": {\n      \"tshirt_size\": \"M\",\n      \"dietary_requirements\": \"vegetarian\"\n    },\n    \"invitationState\": \"ACCEPTED\",\n    \"comment\": \"VIP guest\",\n    \"categoryName\": \"Speakers\",\n    \"ticketId\": \"TKT-12345\",\n    \"externalId\": \"EXT-789\"\n  },\n  {\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"john.doe@example.com\",\n    \"entourageCount\": 2,\n    \"maxEntourageCount\": 5,\n    \"customFields\": {\n      \"tshirt_size\": \"M\",\n      \"dietary_requirements\": \"vegetarian\"\n    },\n    \"invitationState\": \"ACCEPTED\",\n    \"comment\": \"VIP guest\",\n    \"categoryName\": \"Speakers\",\n    \"ticketId\": \"TKT-12345\",\n    \"externalId\": \"EXT-789\"\n  }\n]","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id/upload-batch","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id","upload-batch"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"793ef1f9-8fe7-457b-8e44-e917146418a8"},{"name":"Get a guest bulk import by ID","id":"0101bb70-d620-41e7-8f59-fc8650270341","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","description":"<p>Retrieves a guest bulk import record from the system using the specified ID.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guest-bulk-imports",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"1e81806a-b9f1-4d94-aef2-16b159391934","description":{"content":"<p>(Required) ID (UUID) of the guest bulk import</p>\n","type":"text/plain"},"type":"any","value":"def67890-e89b-12d3-a456-426655440004","key":"id"}]}},"response":[{"id":"9279f06f-5f57-4a08-ba48-2fcc414fd34b","name":"Guest Bulk Import information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}"},{"id":"01c9e13a-f128-4a0f-b696-7601eed8e064","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"bd502e1e-9b7a-482c-9084-6378dee7867e","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"085ddafb-3ad8-4523-8af5-667e8213c83f","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4040,\n  \"message\": \"No [resource name] resource with id 123e4567-e89b-12d3-a456-426655440000 found.\",\n  \"requestId\": \"08ed380a-2c42-447a-abcb-22cb872da017\"\n}\n"},{"id":"4ced1234-e6eb-4d71-b691-434b063597a9","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"0101bb70-d620-41e7-8f59-fc8650270341"},{"name":"Delete a guest bulk import by ID","id":"0afa5c78-5930-4815-8435-6ff440c50df8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","description":"<p>Delete a guest bulk import with the specified ID. This operation is only allowed if the resource identified by the provided ID is not in the state 'IMPORT_STARTED'.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guest-bulk-imports",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"97f2884a-b05f-402d-8704-37fc32d4c87b","description":{"content":"<p>(Required) ID (UUID) of the guest bulk import</p>\n","type":"text/plain"},"type":"any","value":"def67890-e89b-12d3-a456-426655440004","key":"id"}]}},"response":[{"id":"212dac8c-c50a-4cf0-8e6f-63a0c95a4ec4","name":"Guest Bulk Import deleted successfully","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"805ae36a-fe72-4408-a136-bb03c25febab","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"bbf38b26-7521-4f56-9abc-09b73d3fee77","name":"Forbidden","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"0949a58e-d121-4249-9b2e-1a03d5948ec7","name":"Internal Server Error","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"0afa5c78-5930-4815-8435-6ff440c50df8"},{"name":"Partially update an existing bulk import","id":"62ae3270-acb3-4d56-b696-2657d5a900e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","description":"<p>Partially update an existing bulk import with the specified ID using the JSON merge patch guest bulk import object.This operation is only allowed if the resource identified by the provided ID is in the state 'UPLOAD_STARTED' and the provided state is 'UPLOAD_STARTED' or 'UPLOAD_FINISHED'.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guest-bulk-imports",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"83c56121-a0e5-437b-be80-c8ab1adf7db0","description":{"content":"<p>(Required) ID (UUID) of the guest bulk import</p>\n","type":"text/plain"},"type":"any","value":"def67890-e89b-12d3-a456-426655440004","key":"id"}]}},"response":[{"id":"f9df2243-47f9-42e5-ad5f-c61fe9400989","name":"Guest Bulk Import updated successfully","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}"},{"id":"99460a5f-113c-4b28-acd1-394520d2c577","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"2891092b-b225-452a-a568-bb8b88eb5e7e","name":"Forbidden","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"ead7cb1b-97d8-4862-9c77-356984165cb8","name":"Internal Server Error","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"name\": \"My Bulk Import\",\n  \"customFieldDefinitions\": [\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    },\n    {\n      \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n      \"name\": \"Text value\",\n      \"sortIndex\": 0,\n      \"type\": \"TEXT\",\n      \"groupName\": \"Personal information\",\n      \"options\": {\n        \"values\": [\n          {\n            \"value\": \"S\",\n            \"limit\": 25\n          },\n          {\n            \"value\": \"M\",\n            \"limit\": 100\n          }\n        ],\n        \"globalLimit\": 50\n      }\n    }\n  ],\n  \"guests\": [\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    },\n    {\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"entourageCount\": 2,\n      \"maxEntourageCount\": 5,\n      \"customFields\": {\n        \"tshirt_size\": \"M\",\n        \"dietary_requirements\": \"vegetarian\"\n      },\n      \"invitationState\": \"ACCEPTED\",\n      \"comment\": \"VIP guest\",\n      \"categoryName\": \"Speakers\",\n      \"ticketId\": \"TKT-12345\",\n      \"externalId\": \"EXT-789\"\n    }\n  ],\n  \"state\": \"UPLOAD_FINISHED\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"62ae3270-acb3-4d56-b696-2657d5a900e3"},{"name":"Get state of guest bulk import by ID","id":"3ab66153-fbee-4980-95f2-a5574fd91d2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/guest-bulk-imports/:id/state","description":"<p>Get state of a guest bulk import with the specified ID</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guest-bulk-imports",":id","state"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"22102434-de66-45e8-98c0-f33156ce5a13","description":{"content":"<p>(Required) ID (UUID) of the guest bulk import</p>\n","type":"text/plain"},"type":"any","value":"def67890-e89b-12d3-a456-426655440004","key":"id"}]}},"response":[{"id":"10edc7af-05af-4362-a27f-e208f2094200","name":"Guest Bulk Import state information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id/state","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id","state"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"string\",\n  \"state\": \"UPLOAD_FINISHED\"\n}"},{"id":"a88d9f79-2645-485e-ad8b-8e030ecac5a0","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id/state","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id","state"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"64a21947-47f8-4bc9-9cfc-709b8f2e0a48","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id/state","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id","state"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"ed53a7c5-a4c1-4e96-aa62-1108540312c7","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/:id/state","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports",":id","state"],"variable":[{"key":"id","value":"def67890-e89b-12d3-a456-426655440004","description":"(Required) ID (UUID) of the guest bulk import"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"3ab66153-fbee-4980-95f2-a5574fd91d2f"},{"name":"Get guest bulk imports as RestResponse","id":"99c97184-d5cb-4d43-b030-9f34ee3c1baf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/guest-bulk-imports/paginated","description":"<p>Get a RestResponse with a paginated list of guest bulk imports based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","guest-bulk-imports","paginated"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters guest-bulk-import eventId equals guest-bulk-import eventId (which is the event UUID)</p>\n","type":"text/plain"},"key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of one guest-bulk-import state (This can only be one of UPLOAD_STARTED,UPLOAD_FINISHED,IMPORT_STARTED,IMPORT_FINISHED)</p>\n","type":"text/plain"},"key":"state","value":"UPLOAD_STARTED"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)</p>\n","type":"text/plain"},"key":"sortBy","value":"name"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"ae01d065-f4f5-4bd0-a98e-d0be034762b1","name":"Guest bulk Imports information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/paginated","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports","paginated"],"query":[{"description":"optional, filters guest-bulk-import eventId equals guest-bulk-import eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters for exact match of one guest-bulk-import state (This can only be one of UPLOAD_STARTED,UPLOAD_FINISHED,IMPORT_STARTED,IMPORT_FINISHED)","key":"state","value":"UPLOAD_STARTED","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"UNAUTHORIZED\",\n  \"content\": [\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"name\": \"My Bulk Import\",\n      \"customFieldDefinitions\": [\n        {\n          \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n          \"name\": \"Text value\",\n          \"sortIndex\": 0,\n          \"type\": \"TEXT\",\n          \"groupName\": \"Personal information\",\n          \"options\": {\n            \"values\": [\n              {\n                \"value\": \"S\",\n                \"limit\": 25\n              },\n              {\n                \"value\": \"M\",\n                \"limit\": 100\n              }\n            ],\n            \"globalLimit\": 50\n          }\n        },\n        {\n          \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n          \"name\": \"Text value\",\n          \"sortIndex\": 0,\n          \"type\": \"TEXT\",\n          \"groupName\": \"Personal information\",\n          \"options\": {\n            \"values\": [\n              {\n                \"value\": \"S\",\n                \"limit\": 25\n              },\n              {\n                \"value\": \"M\",\n                \"limit\": 100\n              }\n            ],\n            \"globalLimit\": 50\n          }\n        }\n      ],\n      \"guests\": [\n        {\n          \"firstName\": \"John\",\n          \"lastName\": \"Doe\",\n          \"email\": \"john.doe@example.com\",\n          \"entourageCount\": 2,\n          \"maxEntourageCount\": 5,\n          \"customFields\": {\n            \"tshirt_size\": \"M\",\n            \"dietary_requirements\": \"vegetarian\"\n          },\n          \"invitationState\": \"ACCEPTED\",\n          \"comment\": \"VIP guest\",\n          \"categoryName\": \"Speakers\",\n          \"ticketId\": \"TKT-12345\",\n          \"externalId\": \"EXT-789\"\n        },\n        {\n          \"firstName\": \"John\",\n          \"lastName\": \"Doe\",\n          \"email\": \"john.doe@example.com\",\n          \"entourageCount\": 2,\n          \"maxEntourageCount\": 5,\n          \"customFields\": {\n            \"tshirt_size\": \"M\",\n            \"dietary_requirements\": \"vegetarian\"\n          },\n          \"invitationState\": \"ACCEPTED\",\n          \"comment\": \"VIP guest\",\n          \"categoryName\": \"Speakers\",\n          \"ticketId\": \"TKT-12345\",\n          \"externalId\": \"EXT-789\"\n        }\n      ],\n      \"state\": \"UPLOAD_FINISHED\",\n      \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n    },\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"name\": \"My Bulk Import\",\n      \"customFieldDefinitions\": [\n        {\n          \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n          \"name\": \"Text value\",\n          \"sortIndex\": 0,\n          \"type\": \"TEXT\",\n          \"groupName\": \"Personal information\",\n          \"options\": {\n            \"values\": [\n              {\n                \"value\": \"S\",\n                \"limit\": 25\n              },\n              {\n                \"value\": \"M\",\n                \"limit\": 100\n              }\n            ],\n            \"globalLimit\": 50\n          }\n        },\n        {\n          \"id\": \"1af120418d6b431b801e93bcfff840c0\",\n          \"name\": \"Text value\",\n          \"sortIndex\": 0,\n          \"type\": \"TEXT\",\n          \"groupName\": \"Personal information\",\n          \"options\": {\n            \"values\": [\n              {\n                \"value\": \"S\",\n                \"limit\": 25\n              },\n              {\n                \"value\": \"M\",\n                \"limit\": 100\n              }\n            ],\n            \"globalLimit\": 50\n          }\n        }\n      ],\n      \"guests\": [\n        {\n          \"firstName\": \"John\",\n          \"lastName\": \"Doe\",\n          \"email\": \"john.doe@example.com\",\n          \"entourageCount\": 2,\n          \"maxEntourageCount\": 5,\n          \"customFields\": {\n            \"tshirt_size\": \"M\",\n            \"dietary_requirements\": \"vegetarian\"\n          },\n          \"invitationState\": \"ACCEPTED\",\n          \"comment\": \"VIP guest\",\n          \"categoryName\": \"Speakers\",\n          \"ticketId\": \"TKT-12345\",\n          \"externalId\": \"EXT-789\"\n        },\n        {\n          \"firstName\": \"John\",\n          \"lastName\": \"Doe\",\n          \"email\": \"john.doe@example.com\",\n          \"entourageCount\": 2,\n          \"maxEntourageCount\": 5,\n          \"customFields\": {\n            \"tshirt_size\": \"M\",\n            \"dietary_requirements\": \"vegetarian\"\n          },\n          \"invitationState\": \"ACCEPTED\",\n          \"comment\": \"VIP guest\",\n          \"categoryName\": \"Speakers\",\n          \"ticketId\": \"TKT-12345\",\n          \"externalId\": \"EXT-789\"\n        }\n      ],\n      \"state\": \"UPLOAD_FINISHED\",\n      \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 8311,\n    \"totalElements\": 5303,\n    \"totalPages\": 6273,\n    \"page\": 3101\n  }\n}"},{"id":"944ca6c2-638e-4b39-9c5d-625b9735138e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/paginated","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports","paginated"],"query":[{"description":"optional, filters guest-bulk-import eventId equals guest-bulk-import eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters for exact match of one guest-bulk-import state (This can only be one of UPLOAD_STARTED,UPLOAD_FINISHED,IMPORT_STARTED,IMPORT_FINISHED)","key":"state","value":"UPLOAD_STARTED","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"2827f188-5242-4321-bac8-f14f5dbec3f8","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/paginated","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports","paginated"],"query":[{"description":"optional, filters guest-bulk-import eventId equals guest-bulk-import eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters for exact match of one guest-bulk-import state (This can only be one of UPLOAD_STARTED,UPLOAD_FINISHED,IMPORT_STARTED,IMPORT_FINISHED)","key":"state","value":"UPLOAD_STARTED","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"882c0a42-c6ac-4c72-afbc-e797749dd810","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/guest-bulk-imports/paginated","host":["https://api.sweap.io"],"path":["core","v1","guest-bulk-imports","paginated"],"query":[{"description":"optional, filters guest-bulk-import eventId equals guest-bulk-import eventId (which is the event UUID)","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"optional, filters for exact match of one guest-bulk-import state (This can only be one of UPLOAD_STARTED,UPLOAD_FINISHED,IMPORT_STARTED,IMPORT_FINISHED)","key":"state","value":"UPLOAD_STARTED","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"99c97184-d5cb-4d43-b030-9f34ee3c1baf"}],"id":"d12597a7-4e67-4dcc-bd1f-fc8ff8a14ce3","description":"<p>A Guest Bulk Import is a way of importing guests into an event similar to the Sweap Excel import. It defines a full import object with containing all guests and their data. This object can be imported via the Sweap web app import process. The import supports both new inserts but also updates to guests, see our <a href=\"https://support.sweap.io/l/en/article/ivl49z52bf\">support pages for the Excel import</a>.</p>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires <code>guest_bulk_imports_read</code> for GET endpoints.</li>\n<li>Requires <code>guest_bulk_imports_write</code> for POST, PATCH and DELETE endpoints.</li>\n</ul>\n<p><strong>JSON Structure:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-write</td>\n<td>must not be <code>null</code>  <br />name of the import seen by user in the Sweap web app</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td><code>String</code> (Enum)</td>\n<td>read-write</td>\n<td>must not be <code>null</code>  <br />status of the event as string enum:  <br />- <code>UPLOAD_STARTED</code>: import is ready to receive batches of guests  <br />- <code>UPLOAD_FINISHED</code>: all guests are uploaded and import can begin  <br />- <code>IMPORT_STARTED</code>: import process started in the Sweap web application  <br />- <code>IMPORT_FINISHED</code>: import finished successfully</td>\n</tr>\n<tr>\n<td><code>eventId</code></td>\n<td><code>String</code> (UUID)</td>\n<td>read-write</td>\n<td>optional: connects import for a specific event only</td>\n</tr>\n<tr>\n<td><code>customFieldDefinitions</code></td>\n<td><code>Array</code> (Objects)</td>\n<td>read-write</td>\n<td>Describe variable custom fields on every guest (see also the event). Used to exactly define new fields for an event in the import.</td>\n</tr>\n<tr>\n<td><code>guests</code></td>\n<td><code>Array</code> (Objects)</td>\n<td>read-write</td>\n<td>Guest objects for import, similar to guest resource with these variables:  <br />- <code>firstName</code>  <br />- <code>lastName</code>  <br />- <code>email</code>  <br />- <code>entourageCount</code>  <br />- <code>maxEntourageCount</code>  <br />- <code>customFields</code>  <br />- <code>invitationState</code>  <br />- <code>comment</code>  <br />- <code>categoryName</code>  <br />- <code>ticketId</code>  <br />- <code>externalId</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d12597a7-4e67-4dcc-bd1f-fc8ff8a14ce3","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}}},{"name":"Checkins","item":[{"name":"Get checkins as list","id":"56a44871-4269-4d85-b8b1-56f904e78486","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/checkins","description":"<p>Get a paginated list of checkins based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","checkins"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters timestampAfter greater than checkin timestamp</p>\n","type":"text/plain"},"key":"timestampAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters for checkin type (This can only be one of CHECK_IN,CHECK_OUT)</p>\n","type":"text/plain"},"key":"type","value":"CHECK_IN"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for checkin deviceName</p>\n","type":"text/plain"},"key":"deviceName","value":"iPad Main Entrance"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for checkin deviceName containing the value</p>\n","type":"text/plain"},"key":"deviceNameContains","value":"main"},{"disabled":true,"description":{"content":"<p>conditionally optional (only mandatory if there is no guestId parameter), filters for exact match of the checkin eventId</p>\n","type":"text/plain"},"key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"disabled":true,"description":{"content":"<p>conditionally optional (only mandatory if there is no eventId parameter), filters for exact match of the checkin guestId</p>\n","type":"text/plain"},"key":"guestId","value":"323e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,timestamp,guestId,type,deviceName)</p>\n","type":"text/plain"},"key":"sortBy","value":"timestamp"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (no default value, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"1000"}],"variable":[]}},"response":[{"id":"322104b7-49b3-44c5-bb6b-2a1544182680","name":"Checkins information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins","host":["https://api.sweap.io"],"path":["core","v1","checkins"],"query":[{"description":"optional, filters timestampAfter greater than checkin timestamp","key":"timestampAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters for checkin type (This can only be one of CHECK_IN,CHECK_OUT)","key":"type","value":"CHECK_IN","disabled":true},{"description":"optional, filters case sensitive for checkin deviceName","key":"deviceName","value":"iPad Main Entrance","disabled":true},{"description":"optional, filters case insensitive for checkin deviceName containing the value","key":"deviceNameContains","value":"main","disabled":true},{"description":"conditionally optional (only mandatory if there is no guestId parameter), filters for exact match of the checkin eventId","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"conditionally optional (only mandatory if there is no eventId parameter), filters for exact match of the checkin guestId","key":"guestId","value":"323e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,timestamp,guestId,type,deviceName)","key":"sortBy","value":"timestamp","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"guestId\": \"323e4567-e89b-12d3-a456-426655440000\",\n    \"timestamp\": \"2025-01-27T09:52:02.752Z\",\n    \"type\": \"CHECK_IN\",\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"deviceName\": \"iPad Main Entrance\",\n    \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n  },\n  {\n    \"guestId\": \"323e4567-e89b-12d3-a456-426655440000\",\n    \"timestamp\": \"2025-01-27T09:52:02.752Z\",\n    \"type\": \"CHECK_IN\",\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"deviceName\": \"iPad Main Entrance\",\n    \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n  }\n]"},{"id":"d232b715-d775-43c1-bc1a-3c25821c3ac3","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins","host":["https://api.sweap.io"],"path":["core","v1","checkins"],"query":[{"description":"optional, filters timestampAfter greater than checkin timestamp","key":"timestampAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters for checkin type (This can only be one of CHECK_IN,CHECK_OUT)","key":"type","value":"CHECK_IN","disabled":true},{"description":"optional, filters case sensitive for checkin deviceName","key":"deviceName","value":"iPad Main Entrance","disabled":true},{"description":"optional, filters case insensitive for checkin deviceName containing the value","key":"deviceNameContains","value":"main","disabled":true},{"description":"conditionally optional (only mandatory if there is no guestId parameter), filters for exact match of the checkin eventId","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"conditionally optional (only mandatory if there is no eventId parameter), filters for exact match of the checkin guestId","key":"guestId","value":"323e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,timestamp,guestId,type,deviceName)","key":"sortBy","value":"timestamp","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"291de1dc-4f37-4b5b-93be-fe3271cc8da3","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins","host":["https://api.sweap.io"],"path":["core","v1","checkins"],"query":[{"description":"optional, filters timestampAfter greater than checkin timestamp","key":"timestampAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters for checkin type (This can only be one of CHECK_IN,CHECK_OUT)","key":"type","value":"CHECK_IN","disabled":true},{"description":"optional, filters case sensitive for checkin deviceName","key":"deviceName","value":"iPad Main Entrance","disabled":true},{"description":"optional, filters case insensitive for checkin deviceName containing the value","key":"deviceNameContains","value":"main","disabled":true},{"description":"conditionally optional (only mandatory if there is no guestId parameter), filters for exact match of the checkin eventId","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"conditionally optional (only mandatory if there is no eventId parameter), filters for exact match of the checkin guestId","key":"guestId","value":"323e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,timestamp,guestId,type,deviceName)","key":"sortBy","value":"timestamp","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"7363cac0-112b-41e7-b117-6e0b9faadb7b","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins","host":["https://api.sweap.io"],"path":["core","v1","checkins"],"query":[{"description":"optional, filters timestampAfter greater than checkin timestamp","key":"timestampAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters for checkin type (This can only be one of CHECK_IN,CHECK_OUT)","key":"type","value":"CHECK_IN","disabled":true},{"description":"optional, filters case sensitive for checkin deviceName","key":"deviceName","value":"iPad Main Entrance","disabled":true},{"description":"optional, filters case insensitive for checkin deviceName containing the value","key":"deviceNameContains","value":"main","disabled":true},{"description":"conditionally optional (only mandatory if there is no guestId parameter), filters for exact match of the checkin eventId","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"conditionally optional (only mandatory if there is no eventId parameter), filters for exact match of the checkin guestId","key":"guestId","value":"323e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,timestamp,guestId,type,deviceName)","key":"sortBy","value":"timestamp","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"56a44871-4269-4d85-b8b1-56f904e78486"},{"name":"Create a new checkin","id":"322c4ec5-05df-4aa3-ade8-49369833fccc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"guestId\": \"323e4567-e89b-12d3-a456-426655440000\",\n  \"timestamp\": \"2025-01-27T09:52:02.752Z\",\n  \"type\": \"CHECK_IN\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"deviceName\": \"iPad Main Entrance\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/checkins","description":"<p>Create a new check-in or check-out for a guest</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","checkins"],"host":["https://api.sweap.io"],"query":[],"variable":[]}},"response":[{"id":"4ce706b2-2d22-4502-9e43-f1372ff15e1d","name":"Checkin created successfully","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"guestId\": \"323e4567-e89b-12d3-a456-426655440000\",\n  \"timestamp\": \"2025-01-27T09:52:02.752Z\",\n  \"type\": \"CHECK_IN\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"deviceName\": \"iPad Main Entrance\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/checkins"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"guestId\": \"323e4567-e89b-12d3-a456-426655440000\",\n  \"timestamp\": \"2025-01-27T09:52:02.752Z\",\n  \"type\": \"CHECK_IN\",\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"deviceName\": \"iPad Main Entrance\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}"},{"id":"5189ff3c-ab08-4b17-8551-5e3fdd7f6219","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"guestId\": \"323e4567-e89b-12d3-a456-426655440000\",\n  \"timestamp\": \"2025-01-27T09:52:02.752Z\",\n  \"type\": \"CHECK_IN\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"deviceName\": \"iPad Main Entrance\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/checkins"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"276b0278-33e4-45c0-9e12-8527b12952bc","name":"Forbidden","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"guestId\": \"323e4567-e89b-12d3-a456-426655440000\",\n  \"timestamp\": \"2025-01-27T09:52:02.752Z\",\n  \"type\": \"CHECK_IN\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"deviceName\": \"iPad Main Entrance\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/checkins"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"8fc00c14-414b-4c80-ab7c-ef0453f01773","name":"Internal Server Error","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"guestId\": \"323e4567-e89b-12d3-a456-426655440000\",\n  \"timestamp\": \"2025-01-27T09:52:02.752Z\",\n  \"type\": \"CHECK_IN\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"deviceName\": \"iPad Main Entrance\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/checkins"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"322c4ec5-05df-4aa3-ade8-49369833fccc"},{"name":"Get single checkin by ID","id":"d42c7be3-d38f-4438-b607-684cdecb3413","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/checkins/:id","description":"<p>Get the single checkin with the specified ID</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","checkins",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"d288785e-02d5-4a9a-b6e1-d61f4f508311","description":{"content":"<p>(Required) ID (UUID) of the checkin</p>\n","type":"text/plain"},"type":"any","value":"789e1234-e89b-12d3-a456-426655440002","key":"id"}]}},"response":[{"id":"ff9dadd8-582e-4c7b-94a4-e62ac1ed12a7","name":"Checkin information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins/:id","host":["https://api.sweap.io"],"path":["core","v1","checkins",":id"],"variable":[{"key":"id","value":"789e1234-e89b-12d3-a456-426655440002","description":"(Required) ID (UUID) of the checkin"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"guestId\": \"323e4567-e89b-12d3-a456-426655440000\",\n  \"timestamp\": \"2025-01-27T09:52:02.752Z\",\n  \"type\": \"CHECK_IN\",\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"deviceName\": \"iPad Main Entrance\",\n  \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n}"},{"id":"3c5effaa-7619-4c31-afbe-5418592ca3c8","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins/:id","host":["https://api.sweap.io"],"path":["core","v1","checkins",":id"],"variable":[{"key":"id","value":"789e1234-e89b-12d3-a456-426655440002","description":"(Required) ID (UUID) of the checkin"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"0951280e-fd82-49d4-9365-38172a9cdbaa","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins/:id","host":["https://api.sweap.io"],"path":["core","v1","checkins",":id"],"variable":[{"key":"id","value":"789e1234-e89b-12d3-a456-426655440002","description":"(Required) ID (UUID) of the checkin"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"cadc0988-bebb-460f-9176-6b0c94495d17","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins/:id","host":["https://api.sweap.io"],"path":["core","v1","checkins",":id"],"variable":[{"key":"id","value":"789e1234-e89b-12d3-a456-426655440002","description":"(Required) ID (UUID) of the checkin"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4040,\n  \"message\": \"No [resource name] resource with id 123e4567-e89b-12d3-a456-426655440000 found.\",\n  \"requestId\": \"08ed380a-2c42-447a-abcb-22cb872da017\"\n}\n"},{"id":"1b36154e-dea8-4f3f-abb5-14c82db9fc32","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins/:id","host":["https://api.sweap.io"],"path":["core","v1","checkins",":id"],"variable":[{"key":"id","value":"789e1234-e89b-12d3-a456-426655440002","description":"(Required) ID (UUID) of the checkin"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"d42c7be3-d38f-4438-b607-684cdecb3413"},{"name":"Get checkins as RestResponse","id":"48c1ac3e-4ab3-4dd3-80c9-47f6c7620ae8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/checkins/paginated","description":"<p>Get a RestResponse with a paginated list of checkins based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","checkins","paginated"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters timestampAfter greater than checkin timestamp</p>\n","type":"text/plain"},"key":"timestampAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters for checkin type (This can only be one of CHECK_IN,CHECK_OUT)</p>\n","type":"text/plain"},"key":"type","value":"CHECK_IN"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for checkin deviceName</p>\n","type":"text/plain"},"key":"deviceName","value":"iPad Main Entrance"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for checkin deviceName containing the value</p>\n","type":"text/plain"},"key":"deviceNameContains","value":"main"},{"disabled":true,"description":{"content":"<p>conditionally optional (only mandatory if there is no guestId parameter), filters for exact match of the checkin eventId</p>\n","type":"text/plain"},"key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000"},{"disabled":true,"description":{"content":"<p>conditionally optional (only mandatory if there is no eventId parameter), filters for exact match of the checkin guestId</p>\n","type":"text/plain"},"key":"guestId","value":"323e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,timestamp,guestId,type,deviceName)</p>\n","type":"text/plain"},"key":"sortBy","value":"timestamp"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"ca6edcf1-b6b9-421c-b7e0-e68fd8ebab18","name":"Checkins information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins/paginated","host":["https://api.sweap.io"],"path":["core","v1","checkins","paginated"],"query":[{"description":"optional, filters timestampAfter greater than checkin timestamp","key":"timestampAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters for checkin type (This can only be one of CHECK_IN,CHECK_OUT)","key":"type","value":"CHECK_IN","disabled":true},{"description":"optional, filters case sensitive for checkin deviceName","key":"deviceName","value":"iPad Main Entrance","disabled":true},{"description":"optional, filters case insensitive for checkin deviceName containing the value","key":"deviceNameContains","value":"main","disabled":true},{"description":"conditionally optional (only mandatory if there is no guestId parameter), filters for exact match of the checkin eventId","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"conditionally optional (only mandatory if there is no eventId parameter), filters for exact match of the checkin guestId","key":"guestId","value":"323e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,timestamp,guestId,type,deviceName)","key":"sortBy","value":"timestamp","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"WRONG_CREDENTIALS\",\n  \"content\": [\n    {\n      \"guestId\": \"323e4567-e89b-12d3-a456-426655440000\",\n      \"timestamp\": \"2025-01-27T09:52:02.752Z\",\n      \"type\": \"CHECK_IN\",\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"deviceName\": \"iPad Main Entrance\",\n      \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n    },\n    {\n      \"guestId\": \"323e4567-e89b-12d3-a456-426655440000\",\n      \"timestamp\": \"2025-01-27T09:52:02.752Z\",\n      \"type\": \"CHECK_IN\",\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"deviceName\": \"iPad Main Entrance\",\n      \"eventId\": \"123e4567-e89b-12d3-a456-426655440000\"\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 1940,\n    \"totalElements\": 138,\n    \"totalPages\": 5874,\n    \"page\": 67\n  }\n}"},{"id":"88247f61-032b-4831-967e-f7b1969e3da4","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins/paginated","host":["https://api.sweap.io"],"path":["core","v1","checkins","paginated"],"query":[{"description":"optional, filters timestampAfter greater than checkin timestamp","key":"timestampAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters for checkin type (This can only be one of CHECK_IN,CHECK_OUT)","key":"type","value":"CHECK_IN","disabled":true},{"description":"optional, filters case sensitive for checkin deviceName","key":"deviceName","value":"iPad Main Entrance","disabled":true},{"description":"optional, filters case insensitive for checkin deviceName containing the value","key":"deviceNameContains","value":"main","disabled":true},{"description":"conditionally optional (only mandatory if there is no guestId parameter), filters for exact match of the checkin eventId","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"conditionally optional (only mandatory if there is no eventId parameter), filters for exact match of the checkin guestId","key":"guestId","value":"323e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,timestamp,guestId,type,deviceName)","key":"sortBy","value":"timestamp","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"fb66b236-452d-40e6-8bda-a1cefd7a6a7e","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins/paginated","host":["https://api.sweap.io"],"path":["core","v1","checkins","paginated"],"query":[{"description":"optional, filters timestampAfter greater than checkin timestamp","key":"timestampAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters for checkin type (This can only be one of CHECK_IN,CHECK_OUT)","key":"type","value":"CHECK_IN","disabled":true},{"description":"optional, filters case sensitive for checkin deviceName","key":"deviceName","value":"iPad Main Entrance","disabled":true},{"description":"optional, filters case insensitive for checkin deviceName containing the value","key":"deviceNameContains","value":"main","disabled":true},{"description":"conditionally optional (only mandatory if there is no guestId parameter), filters for exact match of the checkin eventId","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"conditionally optional (only mandatory if there is no eventId parameter), filters for exact match of the checkin guestId","key":"guestId","value":"323e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,timestamp,guestId,type,deviceName)","key":"sortBy","value":"timestamp","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"5de0451c-73a4-4ad5-aa07-022f2423f9bd","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/checkins/paginated","host":["https://api.sweap.io"],"path":["core","v1","checkins","paginated"],"query":[{"description":"optional, filters timestampAfter greater than checkin timestamp","key":"timestampAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters for checkin type (This can only be one of CHECK_IN,CHECK_OUT)","key":"type","value":"CHECK_IN","disabled":true},{"description":"optional, filters case sensitive for checkin deviceName","key":"deviceName","value":"iPad Main Entrance","disabled":true},{"description":"optional, filters case insensitive for checkin deviceName containing the value","key":"deviceNameContains","value":"main","disabled":true},{"description":"conditionally optional (only mandatory if there is no guestId parameter), filters for exact match of the checkin eventId","key":"eventId","value":"123e4567-e89b-12d3-a456-42665544000","disabled":true},{"description":"conditionally optional (only mandatory if there is no eventId parameter), filters for exact match of the checkin guestId","key":"guestId","value":"323e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,timestamp,guestId,type,deviceName)","key":"sortBy","value":"timestamp","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"48c1ac3e-4ab3-4dd3-80c9-47f6c7620ae8"}],"id":"b2bac56b-7b53-4c67-adc8-24964a840fb5","description":"<p>A checkin is always assigned to a guest and used for check-in and check-out of guests for an event at a specific <code>timestamp</code>.</p>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires <code>checkins_read</code> for GET endpoints.</li>\n<li>Requires <code>checkins_write</code> for POST endpoints (restricted access).</li>\n</ul>\n<p>⚠️ Access to <code>checkins_write</code> is restricted and not included in default API licenses. Contact Sweap Support at <a href=\"mailto:support@sweap.io\">support@sweap.io</a> to request access.</p>\n<p><strong>JSON Structure:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>timestamp</code></td>\n<td><code>String</code> (timestamp)</td>\n<td>read-write</td>\n<td>ISO 8601 timestamp of check-in (guest arrived) or check-out (guest left). <strong>Required</strong> for POST requests.</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td><code>String</code> (Enum)</td>\n<td>read-write</td>\n<td>A string enum:  <br />- <code>CHECK_IN</code>: guest arrived  <br />- <code>CHECK_OUT</code>: guest left. <strong>Required</strong> for POST requests.</td>\n</tr>\n<tr>\n<td><code>deviceName</code></td>\n<td><code>String</code></td>\n<td>read-write</td>\n<td>Device name of the checkin app that performed this checkin. Can be changed in the mobile application settings. Optional.</td>\n</tr>\n<tr>\n<td><code>guestId</code></td>\n<td><code>String</code> (UUID)</td>\n<td>read-write</td>\n<td>Unique identifier of a guest. <strong>Required</strong> for POST requests. Used to link the checkin to a specific guest.</td>\n</tr>\n<tr>\n<td><code>eventId</code></td>\n<td><code>String</code> (UUID)</td>\n<td>read-only</td>\n<td>Unique identifier of an event. Automatically derived from the guest. Not used for POST requests.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b2bac56b-7b53-4c67-adc8-24964a840fb5","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}}},{"name":"Visibility Groups","item":[{"name":"Get visibility groups as list","id":"dd2165a9-ee6d-45ce-a3ad-d696d9f3beed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/visibility-groups","description":"<p>Get a paginated list of visibility groups based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","visibility-groups"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact visibility-group name</p>\n","type":"text/plain"},"key":"name","value":"Department A"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for visibility-group name containing the value</p>\n","type":"text/plain"},"key":"nameContains","value":"dep"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)</p>\n","type":"text/plain"},"key":"sortBy","value":"name"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (no default value, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"1000"}],"variable":[]}},"response":[{"id":"ca49aeb4-daf3-409b-b7c2-3958570fbbd2","name":"Visibility groups information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups"],"query":[{"description":"optional, filters case insensitive for exact visibility-group name","key":"name","value":"Department A","disabled":true},{"description":"optional, filters case insensitive for visibility-group name containing the value","key":"nameContains","value":"dep","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"name\": \"Department A\",\n    \"description\": \"Groups events for department A access and restricted visibility.\"\n  },\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"name\": \"Department A\",\n    \"description\": \"Groups events for department A access and restricted visibility.\"\n  }\n]"},{"id":"43a491e6-be38-46f5-87a5-5c2ec13fb6aa","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups"],"query":[{"description":"optional, filters case insensitive for exact visibility-group name","key":"name","value":"Department A","disabled":true},{"description":"optional, filters case insensitive for visibility-group name containing the value","key":"nameContains","value":"dep","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"cf746177-9eef-473d-8ade-37207cadd044","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups"],"query":[{"description":"optional, filters case insensitive for exact visibility-group name","key":"name","value":"Department A","disabled":true},{"description":"optional, filters case insensitive for visibility-group name containing the value","key":"nameContains","value":"dep","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"7581ece9-6de4-4c67-beaf-9ab5fda63469","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups"],"query":[{"description":"optional, filters case insensitive for exact visibility-group name","key":"name","value":"Department A","disabled":true},{"description":"optional, filters case insensitive for visibility-group name containing the value","key":"nameContains","value":"dep","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"dd2165a9-ee6d-45ce-a3ad-d696d9f3beed"},{"name":"Get single visibility group by ID","id":"3a0bf33a-4491-4d98-aa7a-359eda95dfdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/visibility-groups/:id","description":"<p>Get the visibility group with the specified ID</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","visibility-groups",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"80cfb11d-6e09-4cf3-8499-5b0e63ae8e3c","description":{"content":"<p>(Required) ID (UUID) of the visibility group</p>\n","type":"text/plain"},"type":"any","value":"fed54321-e89b-12d3-a456-426655440005","key":"id"}]}},"response":[{"id":"16a2a71e-8cfa-4522-8dc3-27fef16f7ad6","name":"Visibility group information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups/:id","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups",":id"],"variable":[{"key":"id","value":"fed54321-e89b-12d3-a456-426655440005","description":"(Required) ID (UUID) of the visibility group"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"name\": \"Department A\",\n  \"description\": \"Groups events for department A access and restricted visibility.\"\n}"},{"id":"4b58ff66-be2f-494e-a31a-fe9a22ebd593","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups/:id","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups",":id"],"variable":[{"key":"id","value":"fed54321-e89b-12d3-a456-426655440005","description":"(Required) ID (UUID) of the visibility group"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"fb845d67-681e-4b82-8501-d93eac0c23d5","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups/:id","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups",":id"],"variable":[{"key":"id","value":"fed54321-e89b-12d3-a456-426655440005","description":"(Required) ID (UUID) of the visibility group"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"79bb3832-6564-49c5-851f-92b0ea996cbb","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups/:id","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups",":id"],"variable":[{"key":"id","value":"fed54321-e89b-12d3-a456-426655440005","description":"(Required) ID (UUID) of the visibility group"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4040,\n  \"message\": \"No [resource name] resource with id 123e4567-e89b-12d3-a456-426655440000 found.\",\n  \"requestId\": \"08ed380a-2c42-447a-abcb-22cb872da017\"\n}\n"},{"id":"f42f5f35-4e3a-4f19-9525-e21968cac69e","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups/:id","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups",":id"],"variable":[{"key":"id","value":"fed54321-e89b-12d3-a456-426655440005","description":"(Required) ID (UUID) of the visibility group"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"3a0bf33a-4491-4d98-aa7a-359eda95dfdd"},{"name":"Get visibility groups as RestResponse","id":"ee57343f-6e01-42d4-916a-15c688d68089","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/visibility-groups/paginated","description":"<p>Get a RestResponse with a paginated list of visibility groups based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","visibility-groups","paginated"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact visibility-group name</p>\n","type":"text/plain"},"key":"name","value":"Department A"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for visibility-group name containing the value</p>\n","type":"text/plain"},"key":"nameContains","value":"dep"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)</p>\n","type":"text/plain"},"key":"sortBy","value":"name"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"5bbfa564-2adb-474f-b440-42ecb13f6edb","name":"Visibility groups information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups/paginated","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups","paginated"],"query":[{"description":"optional, filters case insensitive for exact visibility-group name","key":"name","value":"Department A","disabled":true},{"description":"optional, filters case insensitive for visibility-group name containing the value","key":"nameContains","value":"dep","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"WRONG_CREDENTIALS\",\n  \"content\": [\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"name\": \"Department A\",\n      \"description\": \"Groups events for department A access and restricted visibility.\"\n    },\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"name\": \"Department A\",\n      \"description\": \"Groups events for department A access and restricted visibility.\"\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 7869,\n    \"totalElements\": 9877,\n    \"totalPages\": 5141,\n    \"page\": 4949\n  }\n}"},{"id":"613088e0-7701-46c0-92ff-c19546f7b3a8","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups/paginated","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups","paginated"],"query":[{"description":"optional, filters case insensitive for exact visibility-group name","key":"name","value":"Department A","disabled":true},{"description":"optional, filters case insensitive for visibility-group name containing the value","key":"nameContains","value":"dep","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"820e1173-8ff0-4ace-87f9-a15d48025798","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups/paginated","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups","paginated"],"query":[{"description":"optional, filters case insensitive for exact visibility-group name","key":"name","value":"Department A","disabled":true},{"description":"optional, filters case insensitive for visibility-group name containing the value","key":"nameContains","value":"dep","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"9124bac7-222e-4504-8b37-a5b79aae6ee0","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/visibility-groups/paginated","host":["https://api.sweap.io"],"path":["core","v1","visibility-groups","paginated"],"query":[{"description":"optional, filters case insensitive for exact visibility-group name","key":"name","value":"Department A","disabled":true},{"description":"optional, filters case insensitive for visibility-group name containing the value","key":"nameContains","value":"dep","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"ee57343f-6e01-42d4-916a-15c688d68089"}],"id":"8a81eda9-945d-45ea-aca2-00bf2578c745","description":"<p>A visibility group can group multiple events, and an event can be attached to multiple visibility groups. The grouping is used to restrict access for a Sweap user to events which are in his visibility group. Our <a href=\"https://support.sweap.io/l/en/article/afkzs8juqr\">support page defines this feature in more detail</a>.</p>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires the <code>visibility_groups_read</code> for GET endpoints.</li>\n</ul>\n<p><strong>JSON Structure:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-only</td>\n<td>name of the visibility group</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>description about usage of visibility group</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8a81eda9-945d-45ea-aca2-00bf2578c745","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}}},{"name":"Event Tags","item":[{"name":"Get event tags as list","id":"86b1a6fe-2473-41d7-9125-e790ec491151","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/event-tags","description":"<p>Get a paginated list of event tags based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","event-tags"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact event-tag name</p>\n","type":"text/plain"},"key":"name","value":"Marketing"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for event-tag name containing the value</p>\n","type":"text/plain"},"key":"nameContains","value":"Mark"},{"disabled":true,"description":{"content":"<p>optional, filters for event-tag internal boolean flag</p>\n","type":"text/plain"},"key":"internal","value":"false"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)</p>\n","type":"text/plain"},"key":"sortBy","value":"name"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (no default value, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"1000"}],"variable":[]}},"response":[{"id":"adba334e-5976-4687-83aa-0a12c8ab50fd","name":"Event tags information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags","host":["https://api.sweap.io"],"path":["core","v1","event-tags"],"query":[{"description":"optional, filters case insensitive for exact event-tag name","key":"name","value":"Marketing","disabled":true},{"description":"optional, filters case insensitive for event-tag name containing the value","key":"nameContains","value":"Mark","disabled":true},{"description":"optional, filters for event-tag internal boolean flag","key":"internal","value":"false","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"name\": \"Marketing\",\n    \"internal\": false\n  },\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"name\": \"Marketing\",\n    \"internal\": false\n  }\n]"},{"id":"ab0676d3-4da6-4a59-a601-7e101f0c7c0e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags","host":["https://api.sweap.io"],"path":["core","v1","event-tags"],"query":[{"description":"optional, filters case insensitive for exact event-tag name","key":"name","value":"Marketing","disabled":true},{"description":"optional, filters case insensitive for event-tag name containing the value","key":"nameContains","value":"Mark","disabled":true},{"description":"optional, filters for event-tag internal boolean flag","key":"internal","value":"false","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"2c83f059-0a87-4b2d-b127-cdaca608956c","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags","host":["https://api.sweap.io"],"path":["core","v1","event-tags"],"query":[{"description":"optional, filters case insensitive for exact event-tag name","key":"name","value":"Marketing","disabled":true},{"description":"optional, filters case insensitive for event-tag name containing the value","key":"nameContains","value":"Mark","disabled":true},{"description":"optional, filters for event-tag internal boolean flag","key":"internal","value":"false","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"9cf53b2b-89eb-4108-b64d-7cfb505dcc73","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags","host":["https://api.sweap.io"],"path":["core","v1","event-tags"],"query":[{"description":"optional, filters case insensitive for exact event-tag name","key":"name","value":"Marketing","disabled":true},{"description":"optional, filters case insensitive for event-tag name containing the value","key":"nameContains","value":"Mark","disabled":true},{"description":"optional, filters for event-tag internal boolean flag","key":"internal","value":"false","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"86b1a6fe-2473-41d7-9125-e790ec491151"},{"name":"Get single event tag by ID","id":"405b223c-ed1f-47a7-a6b7-638f3c2d09c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/event-tags/:id","description":"<p>Get the event tag with the specified ID</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","event-tags",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"f251fb4e-283d-44ed-b02c-ed549a1d3b91","description":{"content":"<p>(Required) ID (UUID) of the event tag</p>\n","type":"text/plain"},"type":"any","value":"abc12345-e89b-12d3-a456-426655440003","key":"id"}]}},"response":[{"id":"ccf4876d-cd61-46ac-a6b5-c92585d98923","name":"Event tag information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags/:id","host":["https://api.sweap.io"],"path":["core","v1","event-tags",":id"],"variable":[{"key":"id","value":"abc12345-e89b-12d3-a456-426655440003","description":"(Required) ID (UUID) of the event tag"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"name\": \"Marketing\",\n  \"internal\": false\n}"},{"id":"9abc987e-7f22-48e4-91f5-c531577aba72","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags/:id","host":["https://api.sweap.io"],"path":["core","v1","event-tags",":id"],"variable":[{"key":"id","value":"abc12345-e89b-12d3-a456-426655440003","description":"(Required) ID (UUID) of the event tag"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"ddae2a3b-8e4c-4c89-88c0-8f1139f3202a","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags/:id","host":["https://api.sweap.io"],"path":["core","v1","event-tags",":id"],"variable":[{"key":"id","value":"abc12345-e89b-12d3-a456-426655440003","description":"(Required) ID (UUID) of the event tag"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"52d892e5-33c1-4c3f-9654-7240ede695c9","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags/:id","host":["https://api.sweap.io"],"path":["core","v1","event-tags",":id"],"variable":[{"key":"id","value":"abc12345-e89b-12d3-a456-426655440003","description":"(Required) ID (UUID) of the event tag"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4040,\n  \"message\": \"No [resource name] resource with id 123e4567-e89b-12d3-a456-426655440000 found.\",\n  \"requestId\": \"08ed380a-2c42-447a-abcb-22cb872da017\"\n}\n"},{"id":"64e90d1e-b69c-4ab2-9274-58d54c9d8ff0","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags/:id","host":["https://api.sweap.io"],"path":["core","v1","event-tags",":id"],"variable":[{"key":"id","value":"abc12345-e89b-12d3-a456-426655440003","description":"(Required) ID (UUID) of the event tag"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"405b223c-ed1f-47a7-a6b7-638f3c2d09c7"},{"name":"Get event tags as RestResponse","id":"60074773-1fa7-4f8d-a041-215ca81e7900","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/event-tags/paginated","description":"<p>Get a RestResponse with a paginated list of event tags based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","event-tags","paginated"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact event-tag name</p>\n","type":"text/plain"},"key":"name","value":"Marketing"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for event-tag name containing the value</p>\n","type":"text/plain"},"key":"nameContains","value":"Mark"},{"disabled":true,"description":{"content":"<p>optional, filters for event-tag internal boolean flag</p>\n","type":"text/plain"},"key":"internal","value":"false"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)</p>\n","type":"text/plain"},"key":"sortBy","value":"name"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"96adbd48-efb2-4591-adf0-8a721d0a4eb7","name":"Event tags information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags/paginated","host":["https://api.sweap.io"],"path":["core","v1","event-tags","paginated"],"query":[{"description":"optional, filters case insensitive for exact event-tag name","key":"name","value":"Marketing","disabled":true},{"description":"optional, filters case insensitive for event-tag name containing the value","key":"nameContains","value":"Mark","disabled":true},{"description":"optional, filters for event-tag internal boolean flag","key":"internal","value":"false","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"BAD_REQUEST\",\n  \"content\": [\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"name\": \"Marketing\",\n      \"internal\": false\n    },\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"name\": \"Marketing\",\n      \"internal\": false\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 693,\n    \"totalElements\": 1918,\n    \"totalPages\": 3482,\n    \"page\": 6142\n  }\n}"},{"id":"7dfd07c7-f57c-4055-903f-8ba6b47fcc7c","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags/paginated","host":["https://api.sweap.io"],"path":["core","v1","event-tags","paginated"],"query":[{"description":"optional, filters case insensitive for exact event-tag name","key":"name","value":"Marketing","disabled":true},{"description":"optional, filters case insensitive for event-tag name containing the value","key":"nameContains","value":"Mark","disabled":true},{"description":"optional, filters for event-tag internal boolean flag","key":"internal","value":"false","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"dd383e0d-34a4-483d-bb9e-9c7953c43ddf","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags/paginated","host":["https://api.sweap.io"],"path":["core","v1","event-tags","paginated"],"query":[{"description":"optional, filters case insensitive for exact event-tag name","key":"name","value":"Marketing","disabled":true},{"description":"optional, filters case insensitive for event-tag name containing the value","key":"nameContains","value":"Mark","disabled":true},{"description":"optional, filters for event-tag internal boolean flag","key":"internal","value":"false","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"05aa3258-01d7-43c5-9368-c7aef8952c39","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/event-tags/paginated","host":["https://api.sweap.io"],"path":["core","v1","event-tags","paginated"],"query":[{"description":"optional, filters case insensitive for exact event-tag name","key":"name","value":"Marketing","disabled":true},{"description":"optional, filters case insensitive for event-tag name containing the value","key":"nameContains","value":"Mark","disabled":true},{"description":"optional, filters for event-tag internal boolean flag","key":"internal","value":"false","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,name)","key":"sortBy","value":"name","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"60074773-1fa7-4f8d-a041-215ca81e7900"}],"id":"c8f7ccd9-3083-4f5a-8142-363c6534a359","description":"<p>An event tag can group multiple events, and an event can be attached to multiple event tags. Event tags can be used \nto categorize different event types and establish filtering for the event overview page / API.</p>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires the <code>event_tags_read</code> for GET endpoints.</li>\n</ul>\n<p><strong>JSON Structure:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-only</td>\n<td>name of the event tag</td>\n</tr>\n<tr>\n<td><code>internal</code></td>\n<td><code>boolean</code></td>\n<td>read-only</td>\n<td>if the tag is only used internally and is not visible to the public</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c8f7ccd9-3083-4f5a-8142-363c6534a359","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}}},{"name":"Recipients","item":[{"name":"Get recipients as list","id":"304c4201-922d-454d-83e8-bc880cbf90aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/recipients","description":"<p>Get a paginated list of recipients based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","recipients"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact recipient email</p>\n","type":"text/plain"},"key":"email","value":"john.doe@example.com"},{"disabled":true,"description":{"content":"<p>optional,filters for exact match of one recipient optInState (This can only be one of NONE,OPT_IN,DOUBLE_OPT_IN,UNSUBSCRIBED)</p>\n","type":"text/plain"},"key":"optInState","value":"NONE"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of one recipient bounceState (This can only be one of NONE,SOFT_BOUNCE,HARD_BOUNCE)</p>\n","type":"text/plain"},"key":"bounceState","value":"SOFT_BOUNCE"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,email)</p>\n","type":"text/plain"},"key":"sortBy","value":"email"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (no default value, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"1000"}],"variable":[]}},"response":[{"id":"fc92bb47-94a0-4032-b33e-929e94b91780","name":"Recipients information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients","host":["https://api.sweap.io"],"path":["core","v1","recipients"],"query":[{"description":"optional, filters case insensitive for exact recipient email","key":"email","value":"john.doe@example.com","disabled":true},{"description":"optional,filters for exact match of one recipient optInState (This can only be one of NONE,OPT_IN,DOUBLE_OPT_IN,UNSUBSCRIBED)","key":"optInState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of one recipient bounceState (This can only be one of NONE,SOFT_BOUNCE,HARD_BOUNCE)","key":"bounceState","value":"SOFT_BOUNCE","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,email)","key":"sortBy","value":"email","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"email\": \"john.doe@example.com\",\n    \"optInState\": \"OPT_IN\",\n    \"bounceState\": \"NONE\",\n    \"lastBounceDate\": \"2025-01-27T09:52:02.752Z\",\n    \"lastBounceReason\": \"Mailbox was full\"\n  },\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"email\": \"john.doe@example.com\",\n    \"optInState\": \"OPT_IN\",\n    \"bounceState\": \"NONE\",\n    \"lastBounceDate\": \"2025-01-27T09:52:02.752Z\",\n    \"lastBounceReason\": \"Mailbox was full\"\n  }\n]"},{"id":"d9145254-13e7-4dd0-8ee9-3a7a7a38ac8e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients","host":["https://api.sweap.io"],"path":["core","v1","recipients"],"query":[{"description":"optional, filters case insensitive for exact recipient email","key":"email","value":"john.doe@example.com","disabled":true},{"description":"optional,filters for exact match of one recipient optInState (This can only be one of NONE,OPT_IN,DOUBLE_OPT_IN,UNSUBSCRIBED)","key":"optInState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of one recipient bounceState (This can only be one of NONE,SOFT_BOUNCE,HARD_BOUNCE)","key":"bounceState","value":"SOFT_BOUNCE","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,email)","key":"sortBy","value":"email","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"957b7c79-4855-4631-bbd3-c708af0e46a1","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients","host":["https://api.sweap.io"],"path":["core","v1","recipients"],"query":[{"description":"optional, filters case insensitive for exact recipient email","key":"email","value":"john.doe@example.com","disabled":true},{"description":"optional,filters for exact match of one recipient optInState (This can only be one of NONE,OPT_IN,DOUBLE_OPT_IN,UNSUBSCRIBED)","key":"optInState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of one recipient bounceState (This can only be one of NONE,SOFT_BOUNCE,HARD_BOUNCE)","key":"bounceState","value":"SOFT_BOUNCE","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,email)","key":"sortBy","value":"email","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"33f0a4cd-3810-4077-b85f-9268919526b7","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients","host":["https://api.sweap.io"],"path":["core","v1","recipients"],"query":[{"description":"optional, filters case insensitive for exact recipient email","key":"email","value":"john.doe@example.com","disabled":true},{"description":"optional,filters for exact match of one recipient optInState (This can only be one of NONE,OPT_IN,DOUBLE_OPT_IN,UNSUBSCRIBED)","key":"optInState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of one recipient bounceState (This can only be one of NONE,SOFT_BOUNCE,HARD_BOUNCE)","key":"bounceState","value":"SOFT_BOUNCE","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,email)","key":"sortBy","value":"email","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"304c4201-922d-454d-83e8-bc880cbf90aa"},{"name":"Get single recipient by ID","id":"4c9fecf8-363c-4f13-81d2-32e2babd4341","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/recipients/:id","description":"<p>Get the single recipient by specified ID</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","recipients",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"c0c724f1-3302-4998-bb21-9234b58c4bec","description":{"content":"<p>(Required) ID (UUID) of the recipient</p>\n","type":"text/plain"},"type":"any","value":"098e7654-e89b-12d3-a456-426655440007","key":"id"}]}},"response":[{"id":"70421647-0698-492c-b05c-1ccfa87f16e5","name":"Recipient information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients/:id","host":["https://api.sweap.io"],"path":["core","v1","recipients",":id"],"variable":[{"key":"id","value":"098e7654-e89b-12d3-a456-426655440007","description":"(Required) ID (UUID) of the recipient"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"email\": \"john.doe@example.com\",\n  \"optInState\": \"OPT_IN\",\n  \"bounceState\": \"NONE\",\n  \"lastBounceDate\": \"2025-01-27T09:52:02.752Z\",\n  \"lastBounceReason\": \"Mailbox was full\"\n}"},{"id":"2af150ad-7a6e-4f1c-9b8e-b9f84e8449a2","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients/:id","host":["https://api.sweap.io"],"path":["core","v1","recipients",":id"],"variable":[{"key":"id","value":"098e7654-e89b-12d3-a456-426655440007","description":"(Required) ID (UUID) of the recipient"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"6c471280-8144-498a-9496-1032f8123ddf","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients/:id","host":["https://api.sweap.io"],"path":["core","v1","recipients",":id"],"variable":[{"key":"id","value":"098e7654-e89b-12d3-a456-426655440007","description":"(Required) ID (UUID) of the recipient"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"02707373-2742-43d3-8e11-48f58197ec0b","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients/:id","host":["https://api.sweap.io"],"path":["core","v1","recipients",":id"],"variable":[{"key":"id","value":"098e7654-e89b-12d3-a456-426655440007","description":"(Required) ID (UUID) of the recipient"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4040,\n  \"message\": \"No [resource name] resource with id 123e4567-e89b-12d3-a456-426655440000 found.\",\n  \"requestId\": \"08ed380a-2c42-447a-abcb-22cb872da017\"\n}\n"},{"id":"ffde47fc-bf9b-44f8-a183-726a532c2bfc","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients/:id","host":["https://api.sweap.io"],"path":["core","v1","recipients",":id"],"variable":[{"key":"id","value":"098e7654-e89b-12d3-a456-426655440007","description":"(Required) ID (UUID) of the recipient"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"4c9fecf8-363c-4f13-81d2-32e2babd4341"},{"name":"Get recipients as RestResponse","id":"eae45bf7-b167-40cc-8635-403ce7425a6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/recipients/paginated","description":"<p>Get a RestResponse with a paginated list of recipients based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","recipients","paginated"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact recipient email</p>\n","type":"text/plain"},"key":"email","value":"john.doe@example.com"},{"disabled":true,"description":{"content":"<p>optional,filters for exact match of one recipient optInState (This can only be one of NONE,OPT_IN,DOUBLE_OPT_IN,UNSUBSCRIBED)</p>\n","type":"text/plain"},"key":"optInState","value":"NONE"},{"disabled":true,"description":{"content":"<p>optional, filters for exact match of one recipient bounceState (This can only be one of NONE,SOFT_BOUNCE,HARD_BOUNCE)</p>\n","type":"text/plain"},"key":"bounceState","value":"SOFT_BOUNCE"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,email)</p>\n","type":"text/plain"},"key":"sortBy","value":"email"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"16bff5f8-ee30-40d4-bd55-04f1d5cab11f","name":"Recipients information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients/paginated","host":["https://api.sweap.io"],"path":["core","v1","recipients","paginated"],"query":[{"description":"optional, filters case insensitive for exact recipient email","key":"email","value":"john.doe@example.com","disabled":true},{"description":"optional,filters for exact match of one recipient optInState (This can only be one of NONE,OPT_IN,DOUBLE_OPT_IN,UNSUBSCRIBED)","key":"optInState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of one recipient bounceState (This can only be one of NONE,SOFT_BOUNCE,HARD_BOUNCE)","key":"bounceState","value":"SOFT_BOUNCE","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,email)","key":"sortBy","value":"email","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"OK\",\n  \"content\": [\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"email\": \"john.doe@example.com\",\n      \"optInState\": \"OPT_IN\",\n      \"bounceState\": \"NONE\",\n      \"lastBounceDate\": \"2025-01-27T09:52:02.752Z\",\n      \"lastBounceReason\": \"Mailbox was full\"\n    },\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"email\": \"john.doe@example.com\",\n      \"optInState\": \"OPT_IN\",\n      \"bounceState\": \"NONE\",\n      \"lastBounceDate\": \"2025-01-27T09:52:02.752Z\",\n      \"lastBounceReason\": \"Mailbox was full\"\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 91,\n    \"totalElements\": 5263,\n    \"totalPages\": 8382,\n    \"page\": 498\n  }\n}"},{"id":"511a0cc1-21c8-4275-9eb1-07653b4d989f","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients/paginated","host":["https://api.sweap.io"],"path":["core","v1","recipients","paginated"],"query":[{"description":"optional, filters case insensitive for exact recipient email","key":"email","value":"john.doe@example.com","disabled":true},{"description":"optional,filters for exact match of one recipient optInState (This can only be one of NONE,OPT_IN,DOUBLE_OPT_IN,UNSUBSCRIBED)","key":"optInState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of one recipient bounceState (This can only be one of NONE,SOFT_BOUNCE,HARD_BOUNCE)","key":"bounceState","value":"SOFT_BOUNCE","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,email)","key":"sortBy","value":"email","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"9a3b7eb2-5b14-4dd5-9095-4f12e87a37ad","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients/paginated","host":["https://api.sweap.io"],"path":["core","v1","recipients","paginated"],"query":[{"description":"optional, filters case insensitive for exact recipient email","key":"email","value":"john.doe@example.com","disabled":true},{"description":"optional,filters for exact match of one recipient optInState (This can only be one of NONE,OPT_IN,DOUBLE_OPT_IN,UNSUBSCRIBED)","key":"optInState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of one recipient bounceState (This can only be one of NONE,SOFT_BOUNCE,HARD_BOUNCE)","key":"bounceState","value":"SOFT_BOUNCE","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,email)","key":"sortBy","value":"email","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"b8b92939-49a2-4576-b3c1-a9c4a46c1d85","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/recipients/paginated","host":["https://api.sweap.io"],"path":["core","v1","recipients","paginated"],"query":[{"description":"optional, filters case insensitive for exact recipient email","key":"email","value":"john.doe@example.com","disabled":true},{"description":"optional,filters for exact match of one recipient optInState (This can only be one of NONE,OPT_IN,DOUBLE_OPT_IN,UNSUBSCRIBED)","key":"optInState","value":"NONE","disabled":true},{"description":"optional, filters for exact match of one recipient bounceState (This can only be one of NONE,SOFT_BOUNCE,HARD_BOUNCE)","key":"bounceState","value":"SOFT_BOUNCE","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,email)","key":"sortBy","value":"email","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"eae45bf7-b167-40cc-8635-403ce7425a6f"}],"id":"a21db920-dd96-4496-9011-f240eeb3dcd2","description":"<p>Recipients represent the status of your guests' email addresses and is managed by the Sweap system. Detailed information can be found in <a href=\"https://support.sweap.io/l/en/article/p13jdkkk8i\">our support page</a>.</p>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires the <code>recipients_read</code> for GET endpoints.</li>\n</ul>\n<p><strong>JSON Structure:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>email</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-only</td>\n<td>email address to which a guest email was sent</td>\n</tr>\n<tr>\n<td><code>optInState</code></td>\n<td><code>String</code> (Enum)</td>\n<td>read-only</td>\n<td>email opt-in state  <br />- <code>NONE</code>: no opt-in state created  <br />- <code>OPT_IN</code>: email address opted to be included but not confirmed via double-opt-in  <br />- <code>DOUBLE_OPT_IN</code>: email address included in list and confirmed  <br />- <code>UNSUBSCRIBED</code>: associated person no longer wishes to receive emails</td>\n</tr>\n<tr>\n<td><code>bounceState</code></td>\n<td><code>String</code> (Enum)</td>\n<td>read-only</td>\n<td>delivery status for last email  <br />- <code>NONE</code>: email was delivered successfully  <br />- <code>SOFT_BOUNCE</code>: temporary, short-term delivery error  <br />- <code>HARD_BOUNCE</code>: permanent delivery error</td>\n</tr>\n<tr>\n<td><code>lastBounceDate</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>ISO 8601 timestamp of a the last bounce if the email bounced, otherwise null</td>\n</tr>\n<tr>\n<td><code>lastBounceReason</code></td>\n<td><code>String</code></td>\n<td>read-only</td>\n<td>Explanation of the last bounce if the email bounced, otherwise null</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a21db920-dd96-4496-9011-f240eeb3dcd2","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}}},{"name":"Contacts","item":[{"name":"Get single contact by ID","id":"c0e65cc8-0287-40c2-bbfe-e6aeb5bb4f69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/contacts/:id","description":"<p>Get the contact with the specified ID</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","contacts",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"22a81ed3-854f-4545-84ea-10ec6e84a9a6","description":{"content":"<p>(Required) ID (UUID) of the contact</p>\n","type":"text/plain"},"type":"any","value":"543e9876-e89b-12d3-a456-426655440006","key":"id"}]}},"response":[{"id":"b1a96810-ce50-42dd-8f53-4ca27906b19f","name":"Contacts information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}"},{"id":"f8160ce6-a500-4413-90d4-5cf849a18002","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"efbfdbbe-b106-4471-9351-cad7a60776e4","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"aee4dbdd-25d7-486a-8af1-83124f8d42df","name":"Not Found","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4040,\n  \"message\": \"No [resource name] resource with id 123e4567-e89b-12d3-a456-426655440000 found.\",\n  \"requestId\": \"08ed380a-2c42-447a-abcb-22cb872da017\"\n}\n"},{"id":"f152c8ed-43d7-426b-a348-584bb4c8d399","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"c0e65cc8-0287-40c2-bbfe-e6aeb5bb4f69"},{"name":"Update an existing contact by ID","id":"88a262e2-9bb6-4062-8145-d933991945e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/contacts/:id","description":"<p>Update an existing contact with the provided ID and information.\ncustomFields are normalized against the current customFieldDefinitions before persistence.\nCustom field entries that are no longer defined may be omitted from the resulting resource.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","contacts",":id"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.</p>\n","type":"text/plain"},"key":"ignoreUnknownCustomFieldIds","value":"false"}],"variable":[{"id":"8e8f2e07-ae30-4f2b-ad32-96af4b01c0ba","description":{"content":"<p>(Required) ID (UUID) of the contact</p>\n","type":"text/plain"},"type":"any","value":"543e9876-e89b-12d3-a456-426655440006","key":"id"}]}},"response":[{"id":"b5d07a47-9e8a-4f83-a837-bf941dbf50e0","name":"Contact information updated successfully","originalRequest":{"method":"PUT","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}"},{"id":"287fb847-66ae-4c32-9d68-15fd5d9444c5","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"290df778-de1d-4aab-9ed2-f92cff73be9b","name":"Forbidden","originalRequest":{"method":"PUT","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"0e178e93-e107-45ab-8d03-0b8fe85a2561","name":"Conflict","originalRequest":{"method":"PUT","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Resource Not Found\",\n  \"code\": 4090,\n  \"message\": \"Submitted version was 7, but latest version is 8\",\n  \"requestId\": \"c70202ef-bea7-4e59-9d99-d764158a4f61\"\n}\n"},{"id":"40c5fae9-95d5-4465-8df0-19f8295f8bf3","name":"Internal Server Error","originalRequest":{"method":"PUT","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"88a262e2-9bb6-4062-8145-d933991945e6"},{"name":"Delete a contact by ID","id":"297959c2-2be5-4996-b1ff-d5a6889ca52b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/contacts/:id","description":"<p>Delete the contact with the specified ID</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","contacts",":id"],"host":["https://api.sweap.io"],"query":[],"variable":[{"id":"5238d692-9c2e-4268-85ce-f41517cc95fa","description":{"content":"<p>(Required) ID (UUID) of the contact</p>\n","type":"text/plain"},"type":"any","value":"543e9876-e89b-12d3-a456-426655440006","key":"id"}]}},"response":[{"id":"86679f3d-e8bf-4ae3-b720-6edf54a1de19","name":"Contact deleted successfully","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ce77d7cb-f3ed-465b-9754-3c2e558dc295","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"fe20589c-cc2f-4877-9cce-14a4da8965e6","name":"Forbidden","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"865a6e48-b42d-49d8-8832-dc5775a7b94e","name":"Internal Server Error","originalRequest":{"method":"DELETE","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"297959c2-2be5-4996-b1ff-d5a6889ca52b"},{"name":"Partially update an existing contact by ID","id":"3a3a977c-afd7-4932-b706-5638018c2caa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/contacts/:id","description":"<p>Partially update an existing contact with the provided ID and JSON merge patch contact object.\ncustomFields are normalized against the current customFieldDefinitions before persistence.\nCustom field entries that are no longer defined may be omitted from the resulting resource.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","contacts",":id"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.</p>\n","type":"text/plain"},"key":"ignoreUnknownCustomFieldIds","value":"false"}],"variable":[{"id":"4f20efcc-d73c-4767-8605-ca13b137c201","description":{"content":"<p>(Required) ID (UUID) of the contact</p>\n","type":"text/plain"},"type":"any","value":"543e9876-e89b-12d3-a456-426655440006","key":"id"}]}},"response":[{"id":"ee4cd191-aa12-4516-8ecd-9111e547ee67","name":"Contact information updated successfully","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}"},{"id":"48144a20-8228-42de-81fc-a83fa04ef593","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"45ec4d75-a3de-4a67-ae1b-a6650eafa270","name":"Forbidden","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"fd5a2229-9607-4e27-8c6c-572123a6be5b","name":"Internal Server Error","originalRequest":{"method":"PATCH","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/merge-patch+json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts/:id","host":["https://api.sweap.io"],"path":["core","v1","contacts",":id"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}],"variable":[{"key":"id","value":"543e9876-e89b-12d3-a456-426655440006","description":"(Required) ID (UUID) of the contact"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"3a3a977c-afd7-4932-b706-5638018c2caa"},{"name":"Get contacts as list","id":"a7e76f20-aa1a-42ae-8da1-f46cd6c983f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/contacts","description":"<p>Get a paginated list of contacts based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","contacts"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact contact firstName</p>\n","type":"text/plain"},"key":"firstName","value":"John"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for contact firstName containing the value</p>\n","type":"text/plain"},"key":"firstNameContains","value":"Jo"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact contact lastName</p>\n","type":"text/plain"},"key":"lastName","value":"Doe"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for contact lastName containing the value</p>\n","type":"text/plain"},"key":"lastNameContains","value":"Do"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact contact email</p>\n","type":"text/plain"},"key":"email","value":"john.doe@mail.com"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)</p>\n","type":"text/plain"},"key":"sortBy","value":"lastName"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (no default value, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"1000"}],"variable":[]}},"response":[{"id":"3275a574-3f24-4c6b-b385-e0eb472346ee","name":"Contacts information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts","host":["https://api.sweap.io"],"path":["core","v1","contacts"],"query":[{"description":"optional, filters case insensitive for exact contact firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for contact firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact contact lastName","key":"lastName","value":"Doe","disabled":true},{"description":"optional, filters case insensitive for contact lastName containing the value","key":"lastNameContains","value":"Do","disabled":true},{"description":"optional, filters case insensitive for exact contact email","key":"email","value":"john.doe@mail.com","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"john.doe@mail.com\",\n    \"customFields\": {\n      \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n      \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n    },\n    \"creationOrigin\": \"WEB_APP\"\n  },\n  {\n    \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n    \"externalId\": \"abc-1234\",\n    \"version\": 1,\n    \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n    \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"john.doe@mail.com\",\n    \"customFields\": {\n      \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n      \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n    },\n    \"creationOrigin\": \"WEB_APP\"\n  }\n]"},{"id":"297ebf31-2c80-4dc3-a3ee-e38d28732b9e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts","host":["https://api.sweap.io"],"path":["core","v1","contacts"],"query":[{"description":"optional, filters case insensitive for exact contact firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for contact firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact contact lastName","key":"lastName","value":"Doe","disabled":true},{"description":"optional, filters case insensitive for contact lastName containing the value","key":"lastNameContains","value":"Do","disabled":true},{"description":"optional, filters case insensitive for exact contact email","key":"email","value":"john.doe@mail.com","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"ecab39e4-846a-4b67-9fb9-c9f59bb5781d","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts","host":["https://api.sweap.io"],"path":["core","v1","contacts"],"query":[{"description":"optional, filters case insensitive for exact contact firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for contact firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact contact lastName","key":"lastName","value":"Doe","disabled":true},{"description":"optional, filters case insensitive for contact lastName containing the value","key":"lastNameContains","value":"Do","disabled":true},{"description":"optional, filters case insensitive for exact contact email","key":"email","value":"john.doe@mail.com","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"f712d041-da4e-4d43-a3c3-3fdd276e96f0","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts","host":["https://api.sweap.io"],"path":["core","v1","contacts"],"query":[{"description":"optional, filters case insensitive for exact contact firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for contact firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact contact lastName","key":"lastName","value":"Doe","disabled":true},{"description":"optional, filters case insensitive for contact lastName containing the value","key":"lastNameContains","value":"Do","disabled":true},{"description":"optional, filters case insensitive for exact contact email","key":"email","value":"john.doe@mail.com","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (no default value, min = 1, max = 1000)","key":"size","value":"1000","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"a7e76f20-aa1a-42ae-8da1-f46cd6c983f3"},{"name":"Create a new contact","id":"d98a62d7-5368-44e8-89e2-12c79243eb41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.sweap.io/core/v1/contacts","description":"<p>Create a new contact with the provided information</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","contacts"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.</p>\n","type":"text/plain"},"key":"ignoreUnknownCustomFieldIds","value":"false"}],"variable":[]}},"response":[{"id":"02a4fb5c-a3e9-483d-bec8-dec0709a4c8c","name":"Contact created successfully","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts","host":["https://api.sweap.io"],"path":["core","v1","contacts"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}"},{"id":"30f26d8b-613b-47d1-84e5-def0d5323964","name":"Created","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"*/*"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts","host":["https://api.sweap.io"],"path":["core","v1","contacts"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n  \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}"},{"id":"42a1a9c6-5486-424c-8068-1886296ddd8f","name":"Bad Request","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts","host":["https://api.sweap.io"],"path":["core","v1","contacts"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"9cf34aa6-444b-4fa3-b844-bc332d89c767","name":"Forbidden","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts","host":["https://api.sweap.io"],"path":["core","v1","contacts"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"deca89d0-f3af-4f2b-a8ae-d41b4f4f9637","name":"Internal Server Error","originalRequest":{"method":"POST","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"externalId\": \"abc-1234\",\n  \"version\": 1,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@mail.com\",\n  \"customFields\": {\n    \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n    \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n  },\n  \"creationOrigin\": \"WEB_APP\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://api.sweap.io/core/v1/contacts","host":["https://api.sweap.io"],"path":["core","v1","contacts"],"query":[{"description":"Optional flag for lenient custom field handling.\nIf false (default), newly added or changed unknown custom field IDs in customFields cause the request to fail.\nIf true, unknown custom field IDs in customFields are ignored and are not persisted.\n","key":"ignoreUnknownCustomFieldIds","value":"false","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"d98a62d7-5368-44e8-89e2-12c79243eb41"},{"name":"Get contacts as RestResponse","id":"741000b7-f1bb-49fa-b9f6-09cbd86e8c67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/contacts/paginated","description":"<p>Get a RestResponse with a paginated list of contacts based on the specified filters and sorting parameters</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","contacts","paginated"],"host":["https://api.sweap.io"],"query":[{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact contact firstName</p>\n","type":"text/plain"},"key":"firstName","value":"John"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for contact firstName containing the value</p>\n","type":"text/plain"},"key":"firstNameContains","value":"Jo"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact contact lastName</p>\n","type":"text/plain"},"key":"lastName","value":"Doe"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for contact lastName containing the value</p>\n","type":"text/plain"},"key":"lastNameContains","value":"Do"},{"disabled":true,"description":{"content":"<p>optional, filters case insensitive for exact contact email</p>\n","type":"text/plain"},"key":"email","value":"john.doe@mail.com"},{"disabled":true,"description":{"content":"<p>optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)</p>\n","type":"text/plain"},"key":"sortBy","value":"lastName"},{"disabled":true,"description":{"content":"<p>optional, filters for id (uuid)</p>\n","type":"text/plain"},"key":"id","value":"384e4567-e89b-12d3-a456-426655440000"},{"disabled":true,"description":{"content":"<p>optional, filters case sensitive for externalId</p>\n","type":"text/plain"},"key":"externalId","value":"abc-1234"},{"disabled":true,"description":{"content":"<p>optional, filters with createdAfter parameter greater than resource createdAt</p>\n","type":"text/plain"},"key":"createdAfter","value":"2025-01-27T09:52:02.751Z"},{"disabled":true,"description":{"content":"<p>optional, filters with updatedAfter parameter greater than resource updatedAt</p>\n","type":"text/plain"},"key":"updatedAfter","value":"2025-01-27T10:10:59.999Z"},{"disabled":true,"description":{"content":"<p>optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)</p>\n","type":"text/plain"},"key":"sortOrder","value":"ASC"},{"disabled":true,"description":{"content":"<p>optional, page number for pagination (default value = 0, min = 0)</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>optional, record size per page for pagination (default value = 100, min = 1, max = 1000)</p>\n","type":"text/plain"},"key":"size","value":"100"}],"variable":[]}},"response":[{"id":"094df75a-d4cc-42d1-97c3-481b0daddb30","name":"Contacts information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/paginated","host":["https://api.sweap.io"],"path":["core","v1","contacts","paginated"],"query":[{"description":"optional, filters case insensitive for exact contact firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for contact firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact contact lastName","key":"lastName","value":"Doe","disabled":true},{"description":"optional, filters case insensitive for contact lastName containing the value","key":"lastNameContains","value":"Do","disabled":true},{"description":"optional, filters case insensitive for exact contact email","key":"email","value":"john.doe@mail.com","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"ACCESS_DENIED\",\n  \"content\": [\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@mail.com\",\n      \"customFields\": {\n        \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n        \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n      },\n      \"creationOrigin\": \"WEB_APP\"\n    },\n    {\n      \"id\": \"384e4567-e89b-12d3-a456-426655440000\",\n      \"externalId\": \"abc-1234\",\n      \"version\": 1,\n      \"createdAt\": \"2025-01-27T09:52:02.752Z\",\n      \"updatedAt\": \"2025-01-27T10:11:00.000Z\",\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"email\": \"john.doe@mail.com\",\n      \"customFields\": {\n        \"1af120418d6b431b801e93bcfff840c0\": \"Example text value\",\n        \"ec7fc7349022481d80b2ad4b8bc84863\": \"2\"\n      },\n      \"creationOrigin\": \"WEB_APP\"\n    }\n  ],\n  \"errors\": \"\",\n  \"pageable\": {\n    \"size\": 5622,\n    \"totalElements\": 6430,\n    \"totalPages\": 9546,\n    \"page\": 2728\n  }\n}"},{"id":"168de1a9-54c1-463a-ba04-87c2f6caafa7","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/paginated","host":["https://api.sweap.io"],"path":["core","v1","contacts","paginated"],"query":[{"description":"optional, filters case insensitive for exact contact firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for contact firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact contact lastName","key":"lastName","value":"Doe","disabled":true},{"description":"optional, filters case insensitive for contact lastName containing the value","key":"lastNameContains","value":"Do","disabled":true},{"description":"optional, filters case insensitive for exact contact email","key":"email","value":"john.doe@mail.com","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"3af24463-6092-4273-974b-a1663fe419b8","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/paginated","host":["https://api.sweap.io"],"path":["core","v1","contacts","paginated"],"query":[{"description":"optional, filters case insensitive for exact contact firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for contact firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact contact lastName","key":"lastName","value":"Doe","disabled":true},{"description":"optional, filters case insensitive for contact lastName containing the value","key":"lastNameContains","value":"Do","disabled":true},{"description":"optional, filters case insensitive for exact contact email","key":"email","value":"john.doe@mail.com","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"df2a9152-831c-43ee-aef4-c4b0f2471c28","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://api.sweap.io/core/v1/contacts/paginated","host":["https://api.sweap.io"],"path":["core","v1","contacts","paginated"],"query":[{"description":"optional, filters case insensitive for exact contact firstName","key":"firstName","value":"John","disabled":true},{"description":"optional, filters case insensitive for contact firstName containing the value","key":"firstNameContains","value":"Jo","disabled":true},{"description":"optional, filters case insensitive for exact contact lastName","key":"lastName","value":"Doe","disabled":true},{"description":"optional, filters case insensitive for contact lastName containing the value","key":"lastNameContains","value":"Do","disabled":true},{"description":"optional, filters case insensitive for exact contact email","key":"email","value":"john.doe@mail.com","disabled":true},{"description":"optional, sorting variable value for pagination (default value = createdAt) (This can only be one of createdAt,updatedAt,firstName,lastName,email)","key":"sortBy","value":"lastName","disabled":true},{"description":"optional, filters for id (uuid)","key":"id","value":"384e4567-e89b-12d3-a456-426655440000","disabled":true},{"description":"optional, filters case sensitive for externalId","key":"externalId","value":"abc-1234","disabled":true},{"description":"optional, filters with createdAfter parameter greater than resource createdAt","key":"createdAfter","value":"2025-01-27T09:52:02.751Z","disabled":true},{"description":"optional, filters with updatedAfter parameter greater than resource updatedAt","key":"updatedAfter","value":"2025-01-27T10:10:59.999Z","disabled":true},{"description":"optional, sorting order for values (default value = DESC, options : DESC/ ASC) (This can only be one of ASC,DESC)","key":"sortOrder","value":"ASC","disabled":true},{"description":"optional, page number for pagination (default value = 0, min = 0)","key":"page","value":"0","disabled":true},{"description":"optional, record size per page for pagination (default value = 100, min = 1, max = 1000)","key":"size","value":"100","disabled":true}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"741000b7-f1bb-49fa-b9f6-09cbd86e8c67"},{"name":"Get custom field definitions","id":"2b4fb2ad-762c-4ad1-92f3-9edf151be669","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/contacts/custom-field-definitions","description":"<p>Get custom field definitions of the account owner</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","contacts","custom-field-definitions"],"host":["https://api.sweap.io"],"query":[],"variable":[]}},"response":[{"id":"c0309d51-447f-4838-98a4-81e37b7b64d9","name":"Custom field definitions information retrieved successfully","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://api.sweap.io/core/v1/contacts/custom-field-definitions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"customFieldDefinitions\": [\n    {\n      \"name\": \"T-Shirt Size\",\n      \"type\": \"TEXT\",\n      \"sortIndex\": 1\n    }\n  ]\n}"},{"id":"58879315-062b-40f8-9e69-819f8d539049","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://api.sweap.io/core/v1/contacts/custom-field-definitions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"161c3c4f-36e4-4e38-b8c6-d03273bb42f1","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://api.sweap.io/core/v1/contacts/custom-field-definitions"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"6e72fc85-1697-4ff6-80a1-427b4f875072","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://api.sweap.io/core/v1/contacts/custom-field-definitions"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"2b4fb2ad-762c-4ad1-92f3-9edf151be669"}],"id":"63d50ea0-e5c5-4024-8732-92dfa311000e","description":"<p><strong>BETA</strong>: A contact describes a person and is globally attached to your account. This API feature is still in <strong>BETA</strong> and could be changed. The feature is explained in detail in <a href=\"https://support.sweap.io/l/en/article/u3ph99qz8w\">our support page</a>.</p>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires <code>contacts_read</code> for GET endpoints.</li>\n<li>Requires <code>contacts_write</code> for POST, PUT PATCH, and DELETE endpoints.</li>\n</ul>\n<p><strong>JSON Structure:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Access</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firstName</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-write</td>\n<td>given name</td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-write</td>\n<td>family name</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td><code>String</code> (max 255)</td>\n<td>read-write</td>\n<td>email address</td>\n</tr>\n<tr>\n<td><code>customFields</code></td>\n<td><code>JSON Object</code></td>\n<td>read-write</td>\n<td>by setting custom fields you can pass values for custom field definitions that were previously defined. The dictionary key is the ID of the <code>CustomFieldDefinition</code> and the value is the concrete value to pass into the custom field.</td>\n</tr>\n<tr>\n<td><code>creationOrigin</code></td>\n<td><code>String</code> (Enum)</td>\n<td>read-only</td>\n<td>describe different possible creation origins:  <br />- <code>UNKNOWN</code>  <br />- <code>SYSTEM</code>  <br />- <code>WEB_APP</code>  <br />- <code>MOBILE_APP</code>  <br />- <code>REGISTRATION</code>  <br />- <code>API</code>  <br />- <code>IMPORT_FILE</code>  <br />- <code>IMPORT_EXTERN</code>  <br />- <code>CONTACT_HUB</code></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Write endpoint option (<code>POST</code>, <code>PUT</code>, <code>PATCH</code>):</strong></p>\n<ul>\n<li>Optional query parameter <code>ignoreUnknownCustomFieldIds</code> (default <code>false</code>)</li>\n<li>If <code>false</code> (default), newly added or changed unknown custom field IDs in <code>customFields</code> return <code>4001 Invalid Property</code></li>\n<li>If <code>true</code>, unknown custom field IDs in <code>customFields</code> are ignored and are not persisted</li>\n</ul>\n<p><strong>Update behavior (<code>PUT</code>, <code>PATCH</code>):</strong></p>\n<ul>\n<li><code>customFields</code> are normalized against the current <code>customFieldDefinitions</code> before persistence</li>\n<li>Custom field entries that are no longer defined may be omitted from the resulting resource</li>\n</ul>\n","_postman_id":"63d50ea0-e5c5-4024-8732-92dfa311000e","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}}},{"name":"Management","item":[{"name":"Check user credentials","id":"416f92e4-1d58-45f0-bd09-5787badb4f01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"description":"<p>(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)</p>\n","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"}],"url":"https://api.sweap.io/core/v1/management/check-credentials","description":"<p>Check if user credentials are valid and returns a 200 response if they are.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}},"urlObject":{"path":["core","v1","management","check-credentials"],"host":["https://api.sweap.io"],"query":[],"variable":[]}},"response":[{"id":"d2ca4059-200a-4769-95ad-2bd53c7be782","name":"OK","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://api.sweap.io/core/v1/management/check-credentials"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a04280ea-5c2a-46e6-aa33-fba0491e29d6","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://api.sweap.io/core/v1/management/check-credentials"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bad Request\",\n  \"code\": 4000,\n  \"message\": \"These request parameters are not valid (please check their data type, value syntax and if they are required): size=1001 (PageSizeConstraint)\",\n  \"requestId\": \"84e2cec6-706c-4060-855c-37b2f2e2b0b5\"\n}\n"},{"id":"8ff86fb1-afc7-4e16-9656-8370b67d5223","name":"Forbidden","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://api.sweap.io/core/v1/management/check-credentials"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access Denied Missing Permission\",\n  \"code\": 4031,\n  \"message\": \"Missing security to access this resource.\",\n  \"requestId\": \"abca3c4c-4fd5-45da-8bec-637a9bc62222\"\n}\n"},{"id":"ae8a515a-695c-4d2b-8ae9-e23ecc578265","name":"Internal Server Error","originalRequest":{"method":"GET","header":[{"description":"(Required) API version the client uses. Current server API version: 1.5.4 (This can only be one of 1.5.4)","key":"X-API-Version","value":"1.5.4"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://api.sweap.io/core/v1/management/check-credentials"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Internal Server Error\",\n  \"code\": 5000,\n  \"message\": \"An unexpected error occurred while processing the request.\",\n  \"requestId\": \"696ef63e-12c5-4bb8-a3ca-3b555a7b50a2\"\n}\n"}],"_postman_id":"416f92e4-1d58-45f0-bd09-5787badb4f01"}],"id":"2b3b3dbf-9ec4-4843-a244-410d06300e72","description":"<p>Endpoints for management operations like ping and validating credentials.</p>\n<p><strong>Authorization:</strong></p>\n<ul>\n<li>Requires a valid core API access token (no dedicated endpoint role required).</li>\n</ul>\n","_postman_id":"2b3b3dbf-9ec4-4843-a244-410d06300e72","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":true,"source":{"_postman_id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","id":"53646fe7-333c-4bb2-a8c9-dc37939f3949","name":"Sweap Core API","type":"collection"}}}],"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]}},"variable":[{"key":"baseUrl","value":"https://api.sweap.io"}]}