{"info":{"_postman_id":"89a7095c-8546-4140-87de-d89fc3d4d58d","name":"Xceed Documentation","description":"<html><head></head><body><p>This documentation provides comprehensive guidance on using our two core APIs: the <strong>Open Event API</strong> and the <strong>Partner Tickets API</strong>.</p>\n<p>The <strong>Open Event API</strong> allows easy access to event and offer details without requiring authentication, making it a convenient solution for building dynamic event pages and streamlining user experiences.</p>\n<p>Meanwhile, the <strong>Partner Tickets API</strong> offers a secure way to access booking details, QR codes, and other ticketing information via authentication using a provided API key.</p>\n<p>Together, these APIs empower seamless integration with your platform, enabling you to deliver exceptional event discovery, booking, and ticketing experiences.<br>Please ensure responsible usage to maintain optimal performance and uninterrupted access.</p>\n<p>For any questions or support, feel free to reach out to us at <a href=\"https://null\"><b>partners@xceed.me</b></a>. We're here to help!</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"27574778","collectionId":"89a7095c-8546-4140-87de-d89fc3d4d58d","publishedId":"2sAYBXDBej","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"fF1E00"},"publishDate":"2025-08-27T15:04:35.000Z"},"item":[{"name":"Xceed Open Event API","item":[{"name":"Events","id":"6ff38b66-7bfd-4da6-abd5-5c0064d25228","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{event-service-host}}/v1/events","description":"<p>This endpoint returns all events assigned to a channel.</p>\n<p><strong>STAGING</strong>: <code>https://events.staging.xceed.me/v1/events</code></p>\n<h2 id=\"response-attributes\"><strong>Response Attributes:</strong></h2>\n<h3 id=\"root\"><strong>Root</strong></h3>\n<ul>\n<li><p>success: boolean — Whether the request was successful.</p>\n</li>\n<li><p>data: array[object] — List of events.</p>\n</li>\n</ul>\n<h3 id=\"data-event\"><strong>data[] (Event)</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the event.</p>\n</li>\n<li><p>legacyId: integer — Legacy numeric identifier of the event.</p>\n</li>\n<li><p>name: string — Event name.</p>\n</li>\n<li><p>slug: string — URL-friendly identifier for the event.</p>\n</li>\n<li><p>startingTime: integer (UNIX timestamp, seconds) — Time when the event starts.</p>\n</li>\n<li><p>endingTime: integer (UNIX timestamp, seconds) — Time when the event ends.</p>\n</li>\n<li><p>coverUrl: string (URL) — Event banner or cover image.</p>\n</li>\n<li><p>externalSalesUrl: string | null — External ticket sales link, if used.</p>\n</li>\n<li><p>venue: object — Venue where the event takes place.</p>\n</li>\n<li><p>lineup: array[object] — Artists performing at the event.</p>\n</li>\n<li><p>musicGenres: array[object] — Music genres associated with the event.</p>\n</li>\n</ul>\n<h3 id=\"datavenue\"><strong>data[].venue</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the venue.</p>\n</li>\n<li><p>legacyId: integer — Legacy numeric identifier of the venue.</p>\n</li>\n<li><p>name: string — Venue name.</p>\n</li>\n<li><p>slug: string — URL-friendly identifier for the venue.</p>\n</li>\n<li><p>types: array[string] — Categories of the venue (e.g., CLUB).</p>\n</li>\n<li><p>logoUrl: string (URL) — Venue logo image.</p>\n</li>\n<li><p>coverUrl: string (URL) — Venue cover image.</p>\n</li>\n<li><p>coordinates: object — Geographic coordinates of the venue.</p>\n</li>\n<li><p>city: object — City information.</p>\n</li>\n<li><p>characteristics: array[object] — List of venue characteristics.</p>\n</li>\n</ul>\n<h3 id=\"datavenuecoordinates\"><strong>data[].venue.coordinates</strong></h3>\n<ul>\n<li><p>latitude: number — Latitude of the venue.</p>\n</li>\n<li><p>longitude: number — Longitude of the venue.</p>\n</li>\n</ul>\n<h3 id=\"datavenuecity\"><strong>data[].venue.city</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the city.</p>\n</li>\n<li><p>legacyId: integer — Legacy numeric identifier of the city.</p>\n</li>\n<li><p>name: string — City name.</p>\n</li>\n<li><p>slug: string — URL-friendly identifier of the city.</p>\n</li>\n<li><p>coverUrl: string (URL) — City cover image.</p>\n</li>\n<li><p>timezone: string — Timezone of the city (IANA format).</p>\n</li>\n<li><p>currency: string (ISO 4217) — Default currency of the city.</p>\n</li>\n<li><p>country: object — Country information.</p>\n</li>\n</ul>\n<h3 id=\"datavenuecitycountry\"><strong>data[].venue.city.country</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the country.</p>\n</li>\n<li><p>legacyId: integer — Legacy numeric identifier of the country.</p>\n</li>\n<li><p>name: string — Country name.</p>\n</li>\n<li><p>slug: string — URL-friendly identifier of the country.</p>\n</li>\n<li><p>coverUrl: string (URL) — Country cover image.</p>\n</li>\n<li><p>isoCode: string (ISO 3166-1 alpha-2) — ISO country code.</p>\n</li>\n</ul>\n<h3 id=\"datavenuecharacteristics\"><strong>data[].venue.characteristics[]</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the characteristic.</p>\n</li>\n<li><p>name: string — Characteristic name (e.g., Open-air).</p>\n</li>\n<li><p>slug: string — URL-friendly identifier of the characteristic.</p>\n</li>\n</ul>\n<h3 id=\"datalineup\"><strong>data[].lineup[]</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the artist.</p>\n</li>\n<li><p>legacyId: integer — Legacy numeric identifier of the artist.</p>\n</li>\n<li><p>name: string — Artist name.</p>\n</li>\n<li><p>slug: string — URL-friendly identifier of the artist.</p>\n</li>\n<li><p>coverUrl: string (URL) — Artist cover image.</p>\n</li>\n<li><p>isGeneric: boolean — Whether the artist is a generic placeholder or a real performer.</p>\n</li>\n<li><p>tracks: array[object] — Sample tracks of the artist.</p>\n</li>\n<li><p>musicGenres: array[object] — Genres associated with the artist.</p>\n</li>\n</ul>\n<h3 id=\"datalineuptracks\"><strong>data[].lineup[].tracks[]</strong></h3>\n<ul>\n<li><p>name: string — Track name.</p>\n</li>\n<li><p>url: string (URL) — Preview URL of the track.</p>\n</li>\n</ul>\n<h3 id=\"datalineupmusicgenres\"><strong>data[].lineup[].musicGenres[]</strong></h3>\n<ul>\n<li>name: string — Name of the genre associated with the artist.</li>\n</ul>\n<h3 id=\"datamusicgenres\"><strong>data[].musicGenres[]</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the music genre.</p>\n</li>\n<li><p>name: string — Genre name (e.g., Techno).</p>\n</li>\n<li><p>slug: string — URL-friendly identifier of the genre.</p>\n</li>\n</ul>\n","urlObject":{"path":["v1","events"],"host":["{{event-service-host}}"],"query":[{"disabled":true,"description":{"content":"<p>slug/uuid (required) - Filter by channel</p>\n","type":"text/plain"},"key":"channel","value":"the-music-sanctuary"},{"disabled":true,"description":{"content":"<p>timestamp - Filter by date. When only a Start Date is provided: Returns all events that haven't ended yet by that date. Useful for showing \"upcoming events from this point forward.\"</p>\n","type":"text/plain"},"key":"startTime","value":"1767262135"},{"disabled":true,"description":{"content":"<p>timestamp - Filter by date. When only an End Date is provided, it returns all events that ended before that date. Useful for showing \"past events up until this date.\"</p>\n<p>When both dates are provided (date range), it returns all events that overlap with the selected period in any way (Events that start during the period, Events that end during the period, Events that span the entire period (started before and end after)</p>\n","type":"text/plain"},"key":"endTime","value":"1893502693"},{"disabled":true,"description":{"content":"<p>slug/uuid - Filter by artists separated by comma</p>\n","type":"text/plain"},"key":"artists","value":"black-coffee"},{"disabled":true,"description":{"content":"<p>slug/uuid - Filter by venues separated by comma</p>\n","type":"text/plain"},"key":"venues","value":"the-sanctuary"},{"disabled":true,"description":{"content":"<p>integer (default = 0) - Offset used for pagination</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>integer (default = 10) - Max number of elements</p>\n","type":"text/plain"},"key":"limit","value":"10"}],"variable":[]}},"response":[{"id":"af1ac5c6-a734-4e7e-9d36-5d73be1e5a4b","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{event-service-host}}/v1/events?channel=the-music-sanctuary&startTime=1767262135&artists=black-coffee&offset=0&limit=10","host":["{{event-service-host}}"],"path":["v1","events"],"query":[{"key":"channel","value":"the-music-sanctuary","description":"slug/uuid (required) - Filter by channel"},{"key":"startTime","value":"1767262135","description":"timestamp - Filter by date. If only startTime is provided, returns events from startTime to infinite. If no startTime is provided, returns all events (past ones too)"},{"key":"endTime","value":"1893502693","description":"timestamp - Filter by date. If only startTime is provided, returns events from startTime to infinite. If no startTime is provided, returns all events (past ones too)","disabled":true},{"key":"artists","value":"black-coffee","description":"slug/uuid - Filter by artists separated by comma"},{"key":"venues","value":"the-sanctuary","description":"slug/uuid - Filter by venues separated by comma","type":"text","disabled":true},{"key":"offset","value":"0","description":"integer (default = 0) - Offset used for pagination"},{"key":"limit","value":"10","description":"integer (default = 10) - Max number of elements"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 11:09:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"CF-Ray","value":"97635bbc8b8bedbe-MXP"},{"key":"CF-Cache-Status","value":"MISS"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"public, s-maxage=15"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-API-KEY, X-SHARED-REPORT-TOKEN, X-Requested-With"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PATCH, DELETE"},{"key":"X-Robots-Tag","value":"noindex, nofollow"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n            \"legacyId\": 194931,\n            \"name\": \"Black Coffee - Every Saturday\",\n            \"slug\": \"black-coffee-every-saturday-3\",\n            \"startingTime\": 1818365400,\n            \"endingTime\": 1818388800,\n            \"coverUrl\": \"https://images.xceed.me/events/banners/black-coffee-every-saturday-01test-city-xceed-00ce.png\",\n            \"externalSalesUrl\": null,\n            \"venue\": {\n                \"id\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"legacyId\": 7092,\n                \"name\": \"The Sanctuary\",\n                \"slug\": \"the-sanctuary-1\",\n                \"types\": [\n                    \"CLUB\"\n                ],\n                \"logoUrl\": \"https://images.xceed.me/clubs/logos/the-music-sanctuary-club-01test-city-xceed-logo-5a3e.png\",\n                \"coverUrl\": \"https://images.xceed.me/clubs/covers/the-music-sanctuary-club-01test-city-xceed-0328.jpg\",\n                \"coordinates\": {\n                    \"latitude\": -37.8438609,\n                    \"longitude\": 144.9514536\n                },\n                \"city\": {\n                    \"id\": \"066b85d9-1035-11ea-b000-06b880e08c2c\",\n                    \"legacyId\": 66,\n                    \"name\": \"01Test City\",\n                    \"slug\": \"01test-city\",\n                    \"coverUrl\": \"https://images.xceed.me/cities/covers/01test-city-events-xceed-4ea4.png\",\n                    \"timezone\": \"Europe/Madrid\",\n                    \"currency\": \"EUR\",\n                    \"country\": {\n                        \"id\": \"0a75d5ef-1035-11ea-b000-06b880e08c2c\",\n                        \"legacyId\": 724,\n                        \"name\": \"Spain\",\n                        \"slug\": \"spain\",\n                        \"coverUrl\": \"https://images.xceed.me/countries/covers/spain-country-xceed226f.jpeg\",\n                        \"isoCode\": \"ES\"\n                    }\n                },\n                \"characteristics\": [\n                    {\n                        \"id\": \"311ec4ae-a0fb-11ea-bb37-0242ac130002\",\n                        \"name\": \"Large Venue\",\n                        \"slug\": \"large-venue\"\n                    },\n                    {\n                        \"id\": \"693ce890-a0f9-11ea-bb37-0242ac130002\",\n                        \"name\": \"Open-air\",\n                        \"slug\": \"open-air\"\n                    }\n                ]\n            },\n            \"lineup\": [\n                {\n                    \"id\": \"cde61706-480d-11ea-b954-06b880e08c2c\",\n                    \"legacyId\": 3263,\n                    \"name\": \"Black Coffee\",\n                    \"slug\": \"black-coffee\",\n                    \"coverUrl\": \"https://images.xceed.me/artists/covers/black-coffee-artist-xceed-cover-174a.jpg\",\n                    \"isGeneric\": false,\n                    \"tracks\": [\n                        {\n                            \"name\": \"Drive - Edit\",\n                            \"url\": \"https://p.scdn.co/mp3-preview/6988c92195ab34d63d26a3193511ef9a41419806?cid=26fa853e56704f3a820c6f7ec8d59212\"\n                        }\n                    ],\n                    \"musicGenres\": [\n                        {\n                            \"name\": \"afro house\"\n                        },\n                        {\n                            \"name\": \"deep house\"\n                        },\n                        {\n                            \"name\": \"south african house\"\n                        },\n                        {\n                            \"name\": \"south african pop dance\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"cde1b408-480d-11ea-b954-06b880e08c2c\",\n                    \"legacyId\": 304,\n                    \"name\": \"Richy Ahmed\",\n                    \"slug\": \"richy-ahmed\",\n                    \"coverUrl\": \"https://images.xceed.me/artists/covers/richy-ahmed-artist-xceed-cover-cdff.jpg\",\n                    \"isGeneric\": false,\n                    \"tracks\": [\n                        {\n                            \"name\": \"The Drums - Original Mix\",\n                            \"url\": \"https://p.scdn.co/mp3-preview/6c8ac7677b99a82203db16146ed7ac1d361130bc?cid=26fa853e56704f3a820c6f7ec8d59212\"\n                        }\n                    ],\n                    \"musicGenres\": [\n                        {\n                            \"name\": \"deep disco house\"\n                        },\n                        {\n                            \"name\": \"deep groove house\"\n                        },\n                        {\n                            \"name\": \"deep house\"\n                        },\n                        {\n                            \"name\": \"house\"\n                        },\n                        {\n                            \"name\": \"minimal tech house\"\n                        },\n                        {\n                            \"name\": \"tech house\"\n                        }\n                    ]\n                }\n            ],\n            \"musicGenres\": [\n                {\n                    \"id\": \"0bce0e9a-1035-11ea-b000-06b880e08c2c\",\n                    \"name\": \"Techno\",\n                    \"slug\": \"techno\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"a2926197-47c4-449c-86e5-bc4a0cb7f817","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{event-service-host}}/v1/events?channel=not-existing-channel","host":["{{event-service-host}}"],"path":["v1","events"],"query":[{"key":"channel","value":"not-existing-channel","description":"slug/uuid (required) - Filter by channel"},{"key":"startTime","value":"1756295893","description":"timestamp - Filter by date. If only startTime is provided, returns events from startTime to infinite. If no startTime is provided, returns all events (past ones too)","type":"text","disabled":true},{"key":"endTime","value":"","description":"timestamp - Filter by date. If only startTime is provided, returns events from startTime to infinite. If no startTime is provided, returns all events (past ones too)","type":"text","disabled":true},{"key":"artists","value":"black-coffee","description":"slug/uuid - Filter by artists separated by comma","type":"text","disabled":true},{"key":"venues","value":"the-sanctuary","description":"slug/uuid - Filter by venues separated by comma","type":"text","disabled":true},{"key":"offset","value":"0","description":"integer (default = 0) - Offset used for pagination","type":"text","disabled":true},{"key":"limit","value":"10","description":"integer (default = 10) - Max number of elements","type":"text","disabled":true}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Channel with Slug not-existing-channel does not exist.\",\n        \"code\": 2027\n    }\n}"}],"_postman_id":"6ff38b66-7bfd-4da6-abd5-5c0064d25228"},{"name":"Event Detail","id":"3202ae76-248e-4f63-82d5-1d883aa68a1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{event-service-host}}/v1/events/:eventId","description":"<p>This endpoint returns details and information of a specific event the channel has a relation with.</p>\n<p><strong>STAGING</strong>: <code>https:staging.xceed.me/v1/events/:eventId</code></p>\n<h2 id=\"response-attributes\"><strong>Response attributes:</strong></h2>\n<h3 id=\"root\"><strong>Root</strong></h3>\n<ul>\n<li><p>success: boolean — Whether the request was successful.</p>\n</li>\n<li><p>data: object — Event resource.</p>\n</li>\n</ul>\n<h3 id=\"data\"><strong>data</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the event.</p>\n</li>\n<li><p>legacyId: integer — Legacy numeric identifier of the event.</p>\n</li>\n<li><p>name: string — Event name.</p>\n</li>\n<li><p>about: string — Extended description or artist biography.</p>\n</li>\n<li><p>slug: string — URL-friendly identifier for the event.</p>\n</li>\n<li><p>startingTime: integer (UNIX timestamp, seconds) — Time when the event starts.</p>\n</li>\n<li><p>endingTime: integer (UNIX timestamp, seconds) — Time when the event ends.</p>\n</li>\n<li><p>doorsOpening: integer (UNIX timestamp, seconds) — Time when doors open.</p>\n</li>\n<li><p>coverUrl: string (URL) — Event banner or cover image.</p>\n</li>\n<li><p>isFestival: boolean — Whether the event is a festival.</p>\n</li>\n<li><p>settings: object — Event settings.</p>\n</li>\n<li><p>venue: object — Venue where the event takes place.</p>\n</li>\n<li><p>company: object — Organizer or company information.</p>\n</li>\n<li><p>musicGenres: array[object] — List of music genres associated with the event.</p>\n</li>\n<li><p>vibes: array[object] — List of vibes or atmosphere tags associated with the event.</p>\n</li>\n<li><p>dressCode: object — Dress code requirements for the event.</p>\n</li>\n<li><p>agePolicy: object — Age restriction policy for the event.</p>\n</li>\n<li><p>policyText: string | null — Free-text policy or additional notes.</p>\n</li>\n<li><p>externalSalesUrl: string | null — External ticket sales link, if used.</p>\n</li>\n<li><p>checkoutTerms: string | null — Custom checkout terms for purchases.</p>\n</li>\n<li><p>floorplanId: string (UUID) — Identifier of the seating/floorplan layout.</p>\n</li>\n<li><p>preregistrationAvailable: boolean — Whether preregistration is enabled.</p>\n</li>\n</ul>\n<h3 id=\"datasettings\"><strong>data.settings</strong></h3>\n<ul>\n<li><p>isPrivate: boolean — Whether the event is private.</p>\n</li>\n<li><p>tableManagementEnabled: boolean — Whether table management is enabled.</p>\n</li>\n</ul>\n<h3 id=\"datavenue\"><strong>data.venue</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the venue.</p>\n</li>\n<li><p>legacyId: integer — Legacy numeric identifier of the venue.</p>\n</li>\n<li><p>name: string — Venue name.</p>\n</li>\n<li><p>slug: string — URL-friendly identifier for the venue.</p>\n</li>\n<li><p>types: array[string] — Categories of the venue (e.g., CLUB).</p>\n</li>\n<li><p>logoUrl: string (URL) — Venue logo image.</p>\n</li>\n<li><p>coverUrl: string (URL) — Venue cover image.</p>\n</li>\n<li><p>coordinates: object — Geographic coordinates of the venue.</p>\n</li>\n<li><p>city: object — City information.</p>\n</li>\n<li><p>characteristics: array[object] — List of venue characteristics.</p>\n</li>\n</ul>\n<h3 id=\"datavenuecoordinates\"><strong>data.venue.coordinates</strong></h3>\n<ul>\n<li><p>latitude: number — Latitude of the venue.</p>\n</li>\n<li><p>longitude: number — Longitude of the venue.</p>\n</li>\n</ul>\n<h3 id=\"datavenuecity\"><strong>data.venue.city</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the city.</p>\n</li>\n<li><p>legacyId: integer — Legacy numeric identifier of the city.</p>\n</li>\n<li><p>name: string — City name.</p>\n</li>\n<li><p>slug: string — URL-friendly identifier of the city.</p>\n</li>\n<li><p>coverUrl: string (URL) — City cover image.</p>\n</li>\n<li><p>timezone: string — Timezone of the city (IANA format).</p>\n</li>\n<li><p>currency: string (ISO 4217) — Default currency for the city.</p>\n</li>\n<li><p>country: object — Country information.</p>\n</li>\n</ul>\n<h3 id=\"datavenuecitycountry\"><strong>data.venue.city.country</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the country.</p>\n</li>\n<li><p>legacyId: integer — Legacy numeric identifier of the country.</p>\n</li>\n<li><p>name: string — Country name.</p>\n</li>\n<li><p>slug: string — URL-friendly identifier of the country.</p>\n</li>\n<li><p>coverUrl: string (URL) — Country cover image.</p>\n</li>\n<li><p>isoCode: string (ISO 3166-1 alpha-2) — ISO code of the country (e.g., ES).</p>\n</li>\n</ul>\n<h3 id=\"datavenuecharacteristics\"><strong>data.venue.characteristics[]</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the characteristic.</p>\n</li>\n<li><p>name: string — Characteristic name (e.g., Open-air).</p>\n</li>\n<li><p>slug: string — URL-friendly identifier of the characteristic.</p>\n</li>\n</ul>\n<h3 id=\"datacompany\"><strong>data.company</strong></h3>\n<ul>\n<li><p>name: string — Name of the organizing company.</p>\n</li>\n<li><p>privacyPolicyUrl: string (URL) — Link to the company’s privacy policy.</p>\n</li>\n</ul>\n<h3 id=\"datamusicgenres\"><strong>data.musicGenres[]</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the music genre.</p>\n</li>\n<li><p>name: string — Music genre name (e.g., Techno).</p>\n</li>\n<li><p>slug: string — URL-friendly identifier of the genre.</p>\n</li>\n</ul>\n<h3 id=\"datavibes\"><strong>data.vibes[]</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the vibe.</p>\n</li>\n<li><p>name: string — Vibe name (e.g., International).</p>\n</li>\n<li><p>slug: string — URL-friendly identifier of the vibe.</p>\n</li>\n</ul>\n<h3 id=\"datadresscode\"><strong>data.dressCode</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the dress code.</p>\n</li>\n<li><p>name: string — Dress code name (e.g., Casual).</p>\n</li>\n</ul>\n<h3 id=\"dataagepolicy\"><strong>data.agePolicy</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the age policy.</p>\n</li>\n<li><p>name: string — Age policy name (e.g., 18+).</p>\n</li>\n<li><p>minimumAge: integer — Minimum required age.</p>\n</li>\n</ul>\n","urlObject":{"path":["v1","events",":eventId"],"host":["{{event-service-host}}"],"query":[{"disabled":true,"description":{"content":"<p>Channel unique identifier. string or UUID. [Required].</p>\n","type":"text/plain"},"key":"channel","value":"the-music-sanctuary"},{"disabled":true,"description":{"content":"<p>Optional. Return the content in the specified language (if available). Default is English.</p>\n","type":"text/plain"},"key":"lang","value":"es"}],"variable":[{"description":{"content":"<p>event id / uuid. [required]</p>\n","type":"text/plain"},"type":"any","value":"220398a8-500c-11f0-bcc9-0242ac11000d","key":"eventId"}]}},"response":[{"id":"5455b563-8261-463c-a018-5edb98d51d2e","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{event-service-host}}/v1/events/:eventId?channel=the-music-sanctuary","host":["{{event-service-host}}"],"path":["v1","events",":eventId"],"query":[{"key":"channel","value":"the-music-sanctuary","description":"slug/uuid [required] - Filter by channel"}],"variable":[{"key":"eventId","value":"220398a8-500c-11f0-bcc9-0242ac11000d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 27 Aug 2025 16:48:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"CF-Ray","value":"975d0f3a9b03d8be-BCN"},{"key":"CF-Cache-Status","value":"MISS"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"public, s-maxage=15"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-API-KEY, X-SHARED-REPORT-TOKEN, X-Requested-With"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PATCH, DELETE"},{"key":"X-Robots-Tag","value":"noindex, nofollow"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n        \"legacyId\": 194931,\n        \"name\": \"Black Coffee - Every Saturday\",\n        \"about\": \"South African house music DJ and producer Black Coffee built his career gradually over nearly two decades, riding the growing global interest in his home country's burgeoning dance music scene and eventually becoming arguably the biggest DJ in Africa.\",\n        \"slug\": \"black-coffee-every-saturday-3\",\n        \"startingTime\": 1786829400,\n        \"endingTime\": 1786852800,\n        \"doorsOpening\": 1681855258,\n        \"coverUrl\": \"https://images.xceed.me/events/banners/black-coffee-every-saturday-01test-city-xceed-00ce.png\",\n        \"isFestival\": false,\n        \"settings\": {\n            \"isPrivate\": false,\n            \"tableManagementEnabled\": false\n        },\n        \"venue\": {\n            \"id\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n            \"legacyId\": 7092,\n            \"name\": \"The Sanctuary\",\n            \"slug\": \"the-sanctuary-1\",\n            \"types\": [\n                \"CLUB\"\n            ],\n            \"logoUrl\": \"https://images.xceed.me/clubs/logos/the-music-sanctuary-club-01test-city-xceed-logo-5a3e.png\",\n            \"coverUrl\": \"https://images.xceed.me/clubs/covers/the-music-sanctuary-club-01test-city-xceed-0328.jpg\",\n            \"coordinates\": {\n                \"latitude\": -37.8438609,\n                \"longitude\": 144.9514536\n            },\n            \"city\": {\n                \"id\": \"066b85d9-1035-11ea-b000-06b880e08c2c\",\n                \"legacyId\": 66,\n                \"name\": \"01Test City\",\n                \"slug\": \"01test-city\",\n                \"coverUrl\": \"https://images.xceed.me/cities/covers/01test-city-events-xceed-4ea4.png\",\n                \"timezone\": \"Europe/Madrid\",\n                \"currency\": \"EUR\",\n                \"country\": {\n                    \"id\": \"0a75d5ef-1035-11ea-b000-06b880e08c2c\",\n                    \"legacyId\": 724,\n                    \"name\": \"Spain\",\n                    \"slug\": \"spain\",\n                    \"coverUrl\": \"https://images.xceed.me/countries/covers/spain-country-xceed226f.jpeg\",\n                    \"isoCode\": \"ES\"\n                }\n            },\n            \"characteristics\": [\n                {\n                    \"id\": \"311ec4ae-a0fb-11ea-bb37-0242ac130002\",\n                    \"name\": \"Large Venue\",\n                    \"slug\": \"large-venue\"\n                },\n                {\n                    \"id\": \"693ce890-a0f9-11ea-bb37-0242ac130002\",\n                    \"name\": \"Open-air\",\n                    \"slug\": \"open-air\"\n                }\n            ]\n        },\n        \"company\": {\n            \"name\": \"The Music Sanctuary\",\n            \"privacyPolicyUrl\": \"https://yourvenuepage.com/privacy-policy/\"\n        },\n        \"musicGenres\": [\n            {\n                \"id\": \"0bce0e9a-1035-11ea-b000-06b880e08c2c\",\n                \"name\": \"Techno\",\n                \"slug\": \"techno\"\n            }\n        ],\n        \"vibes\": [\n            {\n                \"id\": \"08ee6554-1035-11ea-b000-06b880e08c2c\",\n                \"name\": \"International\",\n                \"slug\": \"international\"\n            }\n        ],\n        \"dressCode\": {\n            \"id\": \"9276e028-1133-11ea-b000-06b880e08c2c\",\n            \"name\": \"Casual\"\n        },\n        \"agePolicy\": {\n            \"id\": \"96e5214c-1133-11ea-b000-06b880e08c2c\",\n            \"name\": \"18+\",\n            \"minimumAge\": 18\n        },\n        \"policyText\": null,\n        \"externalSalesUrl\": null,\n        \"checkoutTerms\": null,\n        \"floorplanId\": \"8de525e4-bf37-4df9-9877-7ed2f0255590\",\n        \"preregistrationAvailable\": false\n    }\n}"},{"id":"4d3a7cd1-a62e-458d-81ca-9f70e1c4b1a0","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{event-service-host}}/v1/events/:eventId?channel=the-music-sanctuary","host":["{{event-service-host}}"],"path":["v1","events",":eventId"],"query":[{"key":"channel","value":"the-music-sanctuary","description":"slug/uuid [required] - Filter by channel"}],"variable":[{"key":"eventId","value":"1100","description":"event id / uuid. [required]"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Event with ID 110011 does not exist.\",\n        \"code\": 2001\n    }\n}"}],"_postman_id":"3202ae76-248e-4f63-82d5-1d883aa68a1a"},{"name":"Event Line Up","id":"25bb232e-5586-4f64-9f61-dc970c1e1dbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{event-service-host}}/v1/events/:eventId/line-up","description":"<p>This endpoint returns the line-up and artirst details of an event by event ID. Channel is not required</p>\n<p><strong>STAGING:</strong> <code>https://staging.events.xceed.me/v1/events/:eventId</code></p>\n<h2 id=\"response-attributes\">Response Attributes:</h2>\n<h3 id=\"root\"><strong>Root</strong></h3>\n<ul>\n<li><p>success: boolean — Whether the request was successful.</p>\n</li>\n<li><p>data: array[object] — List of artists.</p>\n</li>\n</ul>\n<h3 id=\"data-artist\"><strong>data[] (Artist)</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the artist.</p>\n</li>\n<li><p>legacyId: integer — Legacy numeric identifier of the artist.</p>\n</li>\n<li><p>name: string — Artist name.</p>\n</li>\n<li><p>slug: string — URL-friendly identifier of the artist.</p>\n</li>\n<li><p>coverUrl: string (URL) — Artist cover image.</p>\n</li>\n<li><p>isGeneric: boolean — Whether the artist is a generic placeholder or an actual performer.</p>\n</li>\n<li><p>tracks: array[object] — Sample tracks for the artist.</p>\n</li>\n<li><p>musicGenres: array[object] — Music genres associated with the artist.</p>\n</li>\n</ul>\n<h3 id=\"datatracks\"><strong>data[].tracks[]</strong></h3>\n<ul>\n<li><p>name: string — Track name.</p>\n</li>\n<li><p>url: string (URL) — Preview URL of the track.</p>\n</li>\n</ul>\n<h3 id=\"datamusicgenres\"><strong>data[].musicGenres[]</strong></h3>\n<ul>\n<li>name: string — Genre name associated with the artist.</li>\n</ul>\n","urlObject":{"path":["v1","events",":eventId","line-up"],"host":["{{event-service-host}}"],"query":[],"variable":[{"description":{"content":"<p>event id / uuid. [required]</p>\n","type":"text/plain"},"type":"any","value":"220398a8-500c-11f0-bcc9-0242ac11000d","key":"eventId"}]}},"response":[{"id":"d72eb145-ed86-4f68-afa2-9d92ed9e33ca","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{event-service-host}}/v1/events/:eventId/line-up","host":["{{event-service-host}}"],"path":["v1","events",":eventId","line-up"],"variable":[{"key":"eventId","value":"220398a8-500c-11f0-bcc9-0242ac11000d","description":"event id / uuid. [required]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": \"cde61706-480d-11ea-b954-06b880e08c2c\",\n            \"legacyId\": 3263,\n            \"name\": \"Black Coffee\",\n            \"slug\": \"black-coffee\",\n            \"coverUrl\": \"https://images.xceed.me/artists/covers/black-coffee-artist-xceed-cover-174a.jpg\",\n            \"isGeneric\": false,\n            \"tracks\": [\n                {\n                    \"name\": \"Drive - Edit\",\n                    \"url\": \"https://p.scdn.co/mp3-preview/6988c92195ab34d63d26a3193511ef9a41419806?cid=26fa853e56704f3a820c6f7ec8d59212\"\n                }\n            ],\n            \"musicGenres\": [\n                {\n                    \"name\": \"afro house\"\n                },\n                {\n                    \"name\": \"deep house\"\n                },\n                {\n                    \"name\": \"south african house\"\n                },\n                {\n                    \"name\": \"south african pop dance\"\n                }\n            ]\n        },\n        {\n            \"id\": \"cde1b408-480d-11ea-b954-06b880e08c2c\",\n            \"legacyId\": 304,\n            \"name\": \"Richy Ahmed\",\n            \"slug\": \"richy-ahmed\",\n            \"coverUrl\": \"https://images.xceed.me/artists/covers/richy-ahmed-artist-xceed-cover-cdff.jpg\",\n            \"isGeneric\": false,\n            \"tracks\": [\n                {\n                    \"name\": \"The Drums - Original Mix\",\n                    \"url\": \"https://p.scdn.co/mp3-preview/6c8ac7677b99a82203db16146ed7ac1d361130bc?cid=26fa853e56704f3a820c6f7ec8d59212\"\n                }\n            ],\n            \"musicGenres\": [\n                {\n                    \"name\": \"deep disco house\"\n                },\n                {\n                    \"name\": \"deep groove house\"\n                },\n                {\n                    \"name\": \"deep house\"\n                },\n                {\n                    \"name\": \"house\"\n                },\n                {\n                    \"name\": \"minimal tech house\"\n                },\n                {\n                    \"name\": \"tech house\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"35418ba2-549c-4900-b7ff-48d76e011fe9","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{event-service-host}}/v1/events/:eventId/line-up","host":["{{event-service-host}}"],"path":["v1","events",":eventId","line-up"],"variable":[{"key":"eventId","value":"1100","description":"event id / uuid. [required]"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Event with ID 1100 does not exist.\",\n        \"code\": 2001\n    }\n}"}],"_postman_id":"25bb232e-5586-4f64-9f61-dc970c1e1dbf"},{"name":"Artist Detail","id":"2c2a2e66-1c1b-4ef3-a7bc-66f004458d70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{event-service-host}}/v1/artists/:artistId","description":"<p>This endpoint returns the details of an artist by their id.</p>\n<p><strong>STAGING:</strong> <code>https://staging.events.xceed.me/v1/artists/:artistId</code></p>\n<h2 id=\"response-attributes\">Response Attributes:</h2>\n<h3 id=\"root\"><strong>Root</strong></h3>\n<ul>\n<li><p><strong>success</strong>: boolean — Whether the request was successful.</p>\n</li>\n<li><p><strong>data</strong>: object — Artist details.</p>\n</li>\n</ul>\n<h3 id=\"data\"><strong>data</strong></h3>\n<ul>\n<li><p><strong>id</strong>: string (UUID) — Unique identifier of the artist.</p>\n</li>\n<li><p><strong>legacyId</strong>: integer — Legacy numeric identifier of the artist.</p>\n</li>\n<li><p><strong>name</strong>: string — Artist name.</p>\n</li>\n<li><p><strong>slug</strong>: string — URL-friendly identifier of the artist.</p>\n</li>\n<li><p><strong>description</strong>: string — Extended biography or description of the artist.</p>\n</li>\n<li><p><strong>coverUrl</strong>: string (URL) — Cover image of the artist.</p>\n</li>\n<li><p><strong>recordLabel</strong>: string | null — Record label associated with the artist, if any.</p>\n</li>\n<li><p><strong>followersCount</strong>: integer — Number of followers of the artist.</p>\n</li>\n<li><p><strong>isGeneric</strong>: boolean — Whether the artist is a generic placeholder or an actual performer.</p>\n</li>\n<li><p><strong>tracks</strong>: array[object] — Sample tracks by the artist.</p>\n</li>\n<li><p><strong>musicGenres</strong>: array[object] — Music genres associated with the artist.</p>\n</li>\n</ul>\n<h3 id=\"datatracks\"><strong>data.tracks[]</strong></h3>\n<ul>\n<li><p><strong>name</strong>: string — Track name.</p>\n</li>\n<li><p><strong>url</strong>: string (URL) — Preview URL of the track.</p>\n</li>\n</ul>\n<h3 id=\"datamusicgenres\"><strong>data.musicGenres[]</strong></h3>\n<ul>\n<li><strong>name</strong>: string — Music genre name associated with the artist.</li>\n</ul>\n","urlObject":{"path":["v1","artists",":artistId"],"host":["{{event-service-host}}"],"query":[{"disabled":true,"description":{"content":"<p>Return the content in the specified language (if available). Default is English [Optional]</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"description":{"content":"<p>Artist unique identifier [Required]</p>\n","type":"text/plain"},"type":"any","value":"cde61706-480d-11ea-b954-06b880e08c2c","key":"artistId"}]}},"response":[{"id":"4e865782-33fc-42be-b69d-a6e443fc4d56","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{event-service-host}}/v1/artists/:artistId","host":["{{event-service-host}}"],"path":["v1","artists",":artistId"],"query":[{"key":"lang","value":"en","description":"Return the content in the specified language (if available). Default is English [Optional]","disabled":true}],"variable":[{"key":"artistId","value":"cde61706-480d-11ea-b954-06b880e08c2c","description":"Artist unique identifier [Required]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 08:26:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"CF-Ray","value":"97626cb43b341498-MXP"},{"key":"CF-Cache-Status","value":"MISS"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"public, s-maxage=60"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-API-KEY, X-SHARED-REPORT-TOKEN, X-Requested-With"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PATCH, DELETE"},{"key":"X-Robots-Tag","value":"noindex, nofollow"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": \"cde61706-480d-11ea-b954-06b880e08c2c\",\n        \"legacyId\": 3263,\n        \"name\": \"Black Coffee\",\n        \"slug\": \"black-coffee\",\n        \"description\": \"Curiously, South Africa, as the Spanish island Ibiza or England’s ‘90s Manchester scene around club the Hacienda or Michigan’s Detroit scene, presents one of the few places in the world where genuine house music has taken root. One of its leading proponents is the reserved, studiously academic Black Coffee, whose inventive, imaginative and a boldly educated re-interpretation of classic South African music is radically at odds with the many flash-in-the-pan hit-chasers that populate the dance music genre.\\r\\n\\r\\n\\r\\nBlack Coffee, who is one-part member of the unfashionable urban soul trio Shana, is one of the few Club DJs in the country who genuinely understands the precise function of a music deejay: he does not simply re-mix songs; he re-interprets their previously unimagined musical possibilities and therefore quietly reclaims the composition as his own. When he debuted with his interpretation of Hugh Masekela’s rambunctious jazz hit Stimela (2005 original South African release; 2008 UK release), subsequently to be the lead single off the self-titled 12-track debut album, by re-featuring the old musician to guest vocal anew Black Coffee simply demonstrated how it was possible to re-work the South African canon music vault into club music, acceptable to both the youth and the adults, a feat not easily achievable in the instant festive hit-obsessed market that is South Africa: it requires a decidedly original-inclined, singular mind such as that of Black Coffee to be able to pursue an original music trajectory. \\r\\n\\r\\nDurban-born Nkosinathi Maphumulo has been on the music scene for over a decade but only got his break a few years ago. Nkosinathi, otherwise known as Black Coffee, is popular for his smash hit remixes, most of which have dominated the airwaves in the past couple of years. He studied music in Durban because he felt that as a producer, he had to deepen his overall musical knowledge, develop his listening skills and advance his knowledge of music theory. When asked who helped him achieve his goals, he said “I have Massive Respect for Christos and Oskido for taking me around and giving me slots on their gigs”. 2003 saw Black Coffee starting to put his first project together.\\r\\n\\r\\n\\r\\n\\r\\nHe revealed that his first album was created using very basic music-making software. “I don't know how to explain the production stages of my album because all I did was put down the basic ideas that I had, I didn't use any MIDI controllers everything was played with a Computer Mouse. He added that the use of live instruments in a song is also very important, giving a track that final magic touch and bringing it to life. Black Coffee is proof that if you have real skill when it comes to producing, it won't take much for you to achieve your goals. After all he's managed to penetrate the music industry with only a desktop computer, some music-making software and a lot of passion. His first big break was when his song “Happiness” was featured on the DJs at Work album. In 2006 he enjoyed international exposure when his song ‘Music' got signed in New York and was released by Keith Thompson on the album, ‘Worlds Collide'. He was chosen as one of two South African participants in the Red Bull Music Academy in 2003(www.redbullmusicacademy.com) which jump-started him into the South African DJ scene. He released Two EP’s with London’s Label Kronologik (www.kronologik.com), which was out on Vinyl in the UK Records Shops and was also played in some Radio Stations Abroad. He then released two tracks with Real Tone Records in Paris featuring the Record ”Even Though” now this introduce him to the World as this Record was released in Globally and on Established House Music Websites. In January 2009 he released a Single ”Turn Me On” with a German Label “GOGO Music”, with Remixes by Ralf Gum, this Single became Number One on www.traxsource.com for Two Weeks. Black Coffee started a Label in South Africa www.soulisticmusic.com with Artist Like “Tumelo” who’s featured on Franck Roger’s Free Fall and “Culoe de Song” (who’s taking the World by Storm) signed on this Label. He has featured since at various clubs locally and Internationally like Taboo(SA),Cafe de Flore(Swaziland),Djoon(Paris), Scala(London)Ambassador(Lyon), Café Mugambo (Swaziland’s New Year’s Eve Parties)2008&2009 Miami Winter Festival,2008 & 2009 Ultra Music Festival(Miami),Sutra (Cape Town),In Namibia, Botswana, Barcelona, Lesotho, Cannes, Stratford, Birmingham and recently New York to mention a few. However, Black Coffee’s talent has taken him over the lines into the scene making him a DJ and a producer that has put together two Albums. The 1st CD was released end of September 2005 and since then it has been rocking the SA dance floors and the World. He scooped a SAMA Award for best dance album. He is currently nominated for the 2009 SAMA for Record of the Year.\",\n        \"coverUrl\": \"https://images.xceed.me/artists/covers/black-coffee-artist-xceed-cover-174a.jpg\",\n        \"recordLabel\": null,\n        \"followersCount\": 38,\n        \"isGeneric\": false,\n        \"tracks\": [\n            {\n                \"name\": \"Drive - Edit\",\n                \"url\": \"https://p.scdn.co/mp3-preview/6988c92195ab34d63d26a3193511ef9a41419806?cid=26fa853e56704f3a820c6f7ec8d59212\"\n            }\n        ],\n        \"musicGenres\": [\n            {\n                \"name\": \"afro house\"\n            },\n            {\n                \"name\": \"deep house\"\n            },\n            {\n                \"name\": \"south african house\"\n            },\n            {\n                \"name\": \"south african pop dance\"\n            }\n        ]\n    }\n}"},{"id":"185966be-629a-47da-9eea-78588be061a2","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{event-service-host}}/v1/artists/:artistId","host":["{{event-service-host}}"],"path":["v1","artists",":artistId"],"query":[{"key":"lang","value":"en","description":"Return the content in the specified language (if available). Default is English [Optional]","type":"text","disabled":true}],"variable":[{"key":"artistId","value":"cde61706-480d-0000-b954-06b880e08c2c","description":"Artist unique identifier [Required]"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 08:34:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"CF-Ray","value":"9762783d6874ee85-MXP"},{"key":"CF-Cache-Status","value":"MISS"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Origin, Accept-Encoding"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Authorization, X-API-KEY, X-SHARED-REPORT-TOKEN, X-Requested-With"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, OPTIONS, PATCH, DELETE"},{"key":"X-Robots-Tag","value":"noindex, nofollow"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Artist with UUID cde61706-480d-0000-b954-06b880e08c2c does not exist.\",\n        \"code\": 2016\n    }\n}"}],"_postman_id":"2c2a2e66-1c1b-4ef3-a7bc-66f004458d70"},{"name":"Event Offers","id":"4c8ceb46-188a-4dea-b05f-540d8b75fd42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{offer-service-host}}/v1/events/:eventId/admissions","description":"<p>This endpoint returns the available products the channel can sell in an event, by event ID.</p>\n<p><strong>STAGING</strong>: <code>https://</code>offer.staging.xceed.me/v1/events/:eventId/admissions</p>\n<h2 id=\"response-attribute\">Response Attribute:</h2>\n<h3 id=\"root\"><strong>Root</strong></h3>\n<ul>\n<li><p>success: boolean — Whether the request was successful.</p>\n</li>\n<li><p>data: object — Admission categories and their items.</p>\n</li>\n</ul>\n<h3 id=\"data\"><strong>data</strong></h3>\n<ul>\n<li><p>bottleService: array[object] — List of bottle service admission options.</p>\n</li>\n<li><p>guestList: array[object] — List of guest list admission options.</p>\n</li>\n<li><p>ticket: array[object] — List of ticket admission options.</p>\n</li>\n</ul>\n<h3 id=\"databottleserviceguestlistticket-admission-item\"><strong>data.[bottleService|guestList|ticket][] (Admission Item)</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the admission item.</p>\n</li>\n<li><p>status: string — Current sales status (e.g., on_sale).</p>\n</li>\n<li><p>price: object — Pricing details.</p>\n</li>\n<li><p>onlinePaymentPercentage: integer — Percentage of the price to be paid online.</p>\n</li>\n<li><p>quantity: integer | null — Available quantity. Null means unlimited.</p>\n</li>\n<li><p>itemsPerTransaction: object — Min and max number of items per purchase.</p>\n</li>\n<li><p>salesTime: object — Time range when sales are available.</p>\n</li>\n<li><p>salesStatus: object — Sales availability status.</p>\n</li>\n<li><p>commissions: object — Commission fees.</p>\n</li>\n<li><p>name: string — Admission option name.</p>\n</li>\n<li><p>description: string — Description of what is included.</p>\n</li>\n<li><p>hasAccessCode: boolean — Whether an access code is required.</p>\n</li>\n<li><p>hasMandatoryAddOns: boolean — Whether add-ons are mandatory.</p>\n</li>\n<li><p>addOnChoiceMode: string — Selection mode for add-ons (e.g., multiple_choice).</p>\n</li>\n<li><p>images: array — Images related to the admission option.</p>\n</li>\n<li><p>bookingFormFields: array[object] — Required form fields at booking.</p>\n</li>\n<li><p>addOns: array[object] — Optional add-on items.</p>\n</li>\n<li><p>vatRate: number | null — VAT rate applied, if any.</p>\n</li>\n<li><p>admissionType: string — Admission type (bottleservice, guestlist, or ticket).</p>\n</li>\n<li><p>event: object — Event reference.</p>\n</li>\n<li><p>checkInTime: object — Validity period for check-in.</p>\n</li>\n<li><p>settings: object — Additional admission settings.</p>\n</li>\n<li><p>ticketHolderFormFields: array[object] — Form fields required for each ticket holder.</p>\n</li>\n<li><p>color: string | null — Hexadecimal color code.</p>\n</li>\n<li><p>floorplanId: string (UUID) | null — Floorplan identifier, if applicable.</p>\n</li>\n<li><p>drinksIncluded: integer — Number of drinks included.</p>\n</li>\n<li><p>guestCapacity: integer — Guest capacity (only for bottle service).</p>\n</li>\n<li><p>areas: array — Associated areas (only for bottle service).</p>\n</li>\n</ul>\n<h3 id=\"dataprice\"><strong>data.[].price</strong></h3>\n<ul>\n<li><p>amount: number — Price amount.</p>\n</li>\n<li><p>currency: string — Currency code (ISO 4217).</p>\n</li>\n<li><p>onlinePrice: number — Price if purchased online.</p>\n</li>\n<li><p>offlinePrice: number — Price if purchased offline.</p>\n</li>\n</ul>\n<h3 id=\"dataitemspertransaction\"><strong>data.[].itemsPerTransaction</strong></h3>\n<ul>\n<li><p>min: integer — Minimum items per transaction.</p>\n</li>\n<li><p>max: integer — Maximum items per transaction.</p>\n</li>\n</ul>\n<h3 id=\"datasalestime\"><strong>data.[].salesTime</strong></h3>\n<ul>\n<li><p>openingTime: integer (UNIX timestamp, seconds) — Time when sales open.</p>\n</li>\n<li><p>closingTime: integer (UNIX timestamp, seconds) — Time when sales close.</p>\n</li>\n</ul>\n<h3 id=\"datasalesstatus\"><strong>data.[].salesStatus</strong></h3>\n<ul>\n<li><p>isSalesClosed: boolean — Whether sales are closed.</p>\n</li>\n<li><p>isSoldOut: boolean — Whether sold out.</p>\n</li>\n</ul>\n<h3 id=\"datacommissions\"><strong>data.[].commissions</strong></h3>\n<ul>\n<li>transactionFee: number — Commission fee applied.</li>\n</ul>\n<h3 id=\"databookingformfields\"><strong>data.[].bookingFormFields[]</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the form field.</p>\n</li>\n<li><p>name: string — Display name of the form field.</p>\n</li>\n<li><p>slug: string — Field key.</p>\n</li>\n<li><p>dataType: string — Type of the data (e.g., text, email).</p>\n</li>\n<li><p>isRequired: boolean — Whether the field is required.</p>\n</li>\n<li><p>min: integer | null — Minimum length/constraint, if applicable.</p>\n</li>\n<li><p>max: integer | null — Maximum length/constraint, if applicable.</p>\n</li>\n</ul>\n<h3 id=\"dataaddons\"><strong>data.[].addOns[]</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the add-on.</p>\n</li>\n<li><p>type: string — Type of add-on (e.g., insurance, drinks, accommodation).</p>\n</li>\n<li><p>eventId: string (UUID) — ID of the event the add-on is tied to.</p>\n</li>\n<li><p>fixedPrice: object — Fixed price of the add-on.</p>\n</li>\n<li><p>quantity: integer | null — Quantity available.</p>\n</li>\n<li><p>name: string — Add-on name.</p>\n</li>\n<li><p>description: string — Description of the add-on.</p>\n</li>\n<li><p>availableItems: array | null — List of available variations, if any.</p>\n</li>\n</ul>\n<h3 id=\"dataaddonsfixedprice\"><strong>data.[].addOns[].fixedPrice</strong></h3>\n<ul>\n<li><p>amount: number — Price amount.</p>\n</li>\n<li><p>currency: string — Currency code (ISO 4217).</p>\n</li>\n</ul>\n<h3 id=\"dataevent\"><strong>data.[].event</strong></h3>\n<ul>\n<li>id: string (UUID) — Event identifier.</li>\n</ul>\n<h3 id=\"datacheckintime\"><strong>data.[].checkInTime</strong></h3>\n<ul>\n<li><p>validFrom: integer | null (UNIX timestamp, seconds) — When check-in becomes valid.</p>\n</li>\n<li><p>validUntil: integer | null (UNIX timestamp, seconds) — When check-in validity ends.</p>\n</li>\n</ul>\n<h3 id=\"datasettings\"><strong>data.[].settings</strong></h3>\n<ul>\n<li><p>isNominative: boolean — Whether admission is nominative (linked to a person).</p>\n</li>\n<li><p>italyRegulation: object | null — Italy-specific regulation settings.</p>\n</li>\n</ul>\n<h3 id=\"dataticketholderformfields\"><strong>data.[].ticketHolderFormFields[]</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the field.</p>\n</li>\n<li><p>name: string — Display name of the field.</p>\n</li>\n<li><p>slug: string — Field key.</p>\n</li>\n<li><p>dataType: string — Type of the data.</p>\n</li>\n<li><p>isRequired: boolean — Whether the field is mandatory.</p>\n</li>\n</ul>\n","urlObject":{"path":["v1","events",":eventId","admissions"],"host":["{{offer-service-host}}"],"query":[{"disabled":true,"description":{"content":"<p>Channel unique identifier. string or UUID. [Required].</p>\n","type":"text/plain"},"key":"channel","value":"the-music-sanctuary"},{"disabled":true,"description":{"content":"<p>Optional. Code the buyer must enter to view the related offer.</p>\n","type":"text/plain"},"key":"accessCode","value":"promoCode"},{"disabled":true,"description":{"content":"<p>Optional. Return the content in the specified language (if available). Default is English.</p>\n","type":"text/plain"},"key":"lang","value":"es"},{"disabled":true,"description":{"content":"<p>Optional. Sort field. Allowed values: position, price. Default: position.</p>\n","type":"text/plain"},"key":"orderBy","value":"position"},{"disabled":true,"description":{"content":"<p>Optional. Sort direction. Allowed values: ASC, DESC. Default: ASC</p>\n","type":"text/plain"},"key":"sort","value":"ASC"}],"variable":[{"type":"any","value":"220398a8-500c-11f0-bcc9-0242ac11000d","key":"eventId"}]}},"response":[{"id":"1fec1b4c-b905-481b-ab91-27551c51d297","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{offer-service-host}}/v1/events/:eventId/admissions?channel=the-music-sanctuary","host":["{{offer-service-host}}"],"path":["v1","events",":eventId","admissions"],"query":[{"key":"channel","value":"the-music-sanctuary","description":"string or UUID. Required."},{"key":"accessCode","value":"promoCode","description":"Optional. Code the buyer must enter to view the related offer.","type":"text","disabled":true},{"key":"lang","value":"es","description":"Optional. Translate response contents to this language (only if translations exist).","type":"text","disabled":true},{"key":"orderBy","value":"position","description":"Optional. Sort field. Allowed values: position, price. Default: position.","type":"text","disabled":true},{"key":"sort","value":"ASC","description":"Optional. Sort direction. Allowed values: ASC, DESC. Default: ASC","type":"text","disabled":true}],"variable":[{"key":"eventId","value":"220398a8-500c-11f0-bcc9-0242ac11000d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"bottleService\": [\n            {\n                \"id\": \"e2c34a34-9431-4d34-afe5-1cc90c929012\",\n                \"status\": \"on_sale\",\n                \"price\": {\n                    \"amount\": 5000,\n                    \"currency\": \"EUR\",\n                    \"onlinePrice\": 5000,\n                    \"offlinePrice\": 0\n                },\n                \"onlinePaymentPercentage\": 100,\n                \"quantity\": 15,\n                \"itemsPerTransaction\": {\n                    \"min\": 1,\n                    \"max\": 5\n                },\n                \"salesTime\": {\n                    \"openingTime\": 1750667350,\n                    \"closingTime\": 1786852800\n                },\n                \"salesStatus\": {\n                    \"isSalesClosed\": false,\n                    \"isSoldOut\": false\n                },\n                \"commissions\": {\n                    \"transactionFee\": 150\n                },\n                \"name\": \"Swimming Pool Area\",\n                \"description\": \"This payment represents the entry plus 100% the credit to consume the VIP menu.\",\n                \"hasAccessCode\": false,\n                \"hasMandatoryAddOns\": false,\n                \"addOnChoiceMode\": \"multiple_choice\",\n                \"images\": [],\n                \"bookingFormFields\": [\n                    {\n                        \"id\": \"08dfce6c-48fc-48d1-a505-c5d35d56a28b\",\n                        \"name\": \"First name\",\n                        \"slug\": \"firstName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"396b0bc5-8ea5-4c9b-acac-9b0730da59e9\",\n                        \"name\": \"Last name\",\n                        \"slug\": \"lastName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"aee525cc-0857-485f-a6da-d80575eb3d28\",\n                        \"name\": \"Email\",\n                        \"slug\": \"email\",\n                        \"dataType\": \"email\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    }\n                ],\n                \"addOns\": [\n                    {\n                        \"id\": \"248a6f63-4183-4f2f-ad49-3e6a2ff213d5\",\n                        \"type\": \"other\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 25,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Hookah in the Terrace Area\",\n                        \"description\": \"Includes Hookah/Shisha on the Terrace Area. Only valid until 2:00am. Flavors are chosen at the venue.\",\n                        \"availableItems\": null\n                    },\n                    {\n                        \"id\": \"e180c781-abf8-4b5b-99aa-d254a684fc9d\",\n                        \"type\": \"insurance\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 3,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Cancellation Insurance\",\n                        \"description\": \"If you cannot attend the event, this insurance will get you a full refund of the ticket price (the insurance cost is non-refundable).\\nTo make use of the insurance, you must request a refund 24 hours before the event begins by sending an email to info@tms.co\",\n                        \"availableItems\": null\n                    }\n                ],\n                \"vatRate\": null,\n                \"admissionType\": \"bottleservice\",\n                \"event\": {\n                    \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\"\n                },\n                \"checkInTime\": {\n                    \"validFrom\": null,\n                    \"validUntil\": null\n                },\n                \"settings\": {\n                    \"isNominative\": false,\n                    \"italyRegulation\": null\n                },\n                \"ticketHolderFormFields\": [],\n                \"color\": \"#cc9541\",\n                \"floorplanId\": \"8de525e4-bf37-4df9-9877-7ed2f0255590\",\n                \"drinksIncluded\": 0,\n                \"guestCapacity\": 5,\n                \"areas\": []\n            },\n            {\n                \"id\": \"f2c9405c-9431-4a4d-be9c-7b84fc389e1c\",\n                \"status\": \"on_sale\",\n                \"price\": {\n                    \"amount\": 7500,\n                    \"currency\": \"EUR\",\n                    \"onlinePrice\": 7500,\n                    \"offlinePrice\": 0\n                },\n                \"onlinePaymentPercentage\": 100,\n                \"quantity\": 5,\n                \"itemsPerTransaction\": {\n                    \"min\": 1,\n                    \"max\": 5\n                },\n                \"salesTime\": {\n                    \"openingTime\": 1750667350,\n                    \"closingTime\": 1786852800\n                },\n                \"salesStatus\": {\n                    \"isSalesClosed\": false,\n                    \"isSoldOut\": false\n                },\n                \"commissions\": {\n                    \"transactionFee\": 225\n                },\n                \"name\": \"Dancefloor \",\n                \"description\": \"This payment represents the entry plus 100% the credit to consume the VIP menu.\",\n                \"hasAccessCode\": false,\n                \"hasMandatoryAddOns\": false,\n                \"addOnChoiceMode\": \"multiple_choice\",\n                \"images\": [],\n                \"bookingFormFields\": [\n                    {\n                        \"id\": \"6a46a311-dba8-4fb9-b0e5-3dd1ea19dd2e\",\n                        \"name\": \"Email\",\n                        \"slug\": \"email\",\n                        \"dataType\": \"email\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"c82c1f15-5539-42ed-8d64-e96c9b6545e6\",\n                        \"name\": \"First name\",\n                        \"slug\": \"firstName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"da2d09e8-07e1-4769-9954-aca5cce1b3e4\",\n                        \"name\": \"Last name\",\n                        \"slug\": \"lastName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    }\n                ],\n                \"addOns\": [],\n                \"vatRate\": null,\n                \"admissionType\": \"bottleservice\",\n                \"event\": {\n                    \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\"\n                },\n                \"checkInTime\": {\n                    \"validFrom\": null,\n                    \"validUntil\": null\n                },\n                \"settings\": {\n                    \"isNominative\": false,\n                    \"italyRegulation\": null\n                },\n                \"ticketHolderFormFields\": [],\n                \"color\": \"#a7219c\",\n                \"floorplanId\": \"8de525e4-bf37-4df9-9877-7ed2f0255590\",\n                \"drinksIncluded\": 0,\n                \"guestCapacity\": 5,\n                \"areas\": []\n            },\n            {\n                \"id\": \"c2485f70-6189-49c2-a7b7-273f9c89576b\",\n                \"status\": \"on_sale\",\n                \"price\": {\n                    \"amount\": 10000,\n                    \"currency\": \"EUR\",\n                    \"onlinePrice\": 10000,\n                    \"offlinePrice\": 0\n                },\n                \"onlinePaymentPercentage\": 100,\n                \"quantity\": 2,\n                \"itemsPerTransaction\": {\n                    \"min\": 1,\n                    \"max\": 2\n                },\n                \"salesTime\": {\n                    \"openingTime\": 1750667351,\n                    \"closingTime\": 1786852800\n                },\n                \"salesStatus\": {\n                    \"isSalesClosed\": false,\n                    \"isSoldOut\": false\n                },\n                \"commissions\": {\n                    \"transactionFee\": 300\n                },\n                \"name\": \"DJ set\",\n                \"description\": \"This payment represents the entry plus 100% the credit to consume the VIP menu.\",\n                \"hasAccessCode\": false,\n                \"hasMandatoryAddOns\": false,\n                \"addOnChoiceMode\": \"multiple_choice\",\n                \"images\": [],\n                \"bookingFormFields\": [\n                    {\n                        \"id\": \"671c1f2e-cff1-4508-924a-76f5bf6256f8\",\n                        \"name\": \"First name\",\n                        \"slug\": \"firstName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"85475fc9-47e5-42c6-ab79-184170141d7a\",\n                        \"name\": \"Last name\",\n                        \"slug\": \"lastName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"cd3d5acd-ff12-4807-9b7d-27d0b99a2c50\",\n                        \"name\": \"Email\",\n                        \"slug\": \"email\",\n                        \"dataType\": \"email\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    }\n                ],\n                \"addOns\": [\n                    {\n                        \"id\": \"e180c781-abf8-4b5b-99aa-d254a684fc9d\",\n                        \"type\": \"insurance\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 3,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Cancellation Insurance\",\n                        \"description\": \"If you cannot attend the event, this insurance will get you a full refund of the ticket price (the insurance cost is non-refundable).\\nTo make use of the insurance, you must request a refund 24 hours before the event begins by sending an email to info@tms.co\",\n                        \"availableItems\": null\n                    },\n                    {\n                        \"id\": \"248a6f63-4183-4f2f-ad49-3e6a2ff213d5\",\n                        \"type\": \"other\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 25,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Hookah in the Terrace Area\",\n                        \"description\": \"Includes Hookah/Shisha on the Terrace Area. Only valid until 2:00am. Flavors are chosen at the venue.\",\n                        \"availableItems\": null\n                    }\n                ],\n                \"vatRate\": null,\n                \"admissionType\": \"bottleservice\",\n                \"event\": {\n                    \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\"\n                },\n                \"checkInTime\": {\n                    \"validFrom\": null,\n                    \"validUntil\": null\n                },\n                \"settings\": {\n                    \"isNominative\": false,\n                    \"italyRegulation\": null\n                },\n                \"ticketHolderFormFields\": [],\n                \"color\": \"#3cdae5\",\n                \"floorplanId\": \"8de525e4-bf37-4df9-9877-7ed2f0255590\",\n                \"drinksIncluded\": 0,\n                \"guestCapacity\": 4,\n                \"areas\": []\n            }\n        ],\n        \"guestList\": [\n            {\n                \"id\": \"eff5a581-15e4-4760-8ec6-3093d8863ec0\",\n                \"status\": \"on_sale\",\n                \"price\": {\n                    \"amount\": 0,\n                    \"currency\": \"EUR\"\n                },\n                \"onlinePaymentPercentage\": 0,\n                \"quantity\": 100,\n                \"itemsPerTransaction\": {\n                    \"min\": 1,\n                    \"max\": 10\n                },\n                \"salesTime\": {\n                    \"openingTime\": 1750667350,\n                    \"closingTime\": 1782855000\n                },\n                \"salesStatus\": {\n                    \"isSalesClosed\": false,\n                    \"isSoldOut\": false\n                },\n                \"commissions\": {\n                    \"transactionFee\": 0\n                },\n                \"name\": \"EXCLUSIVE ACCESS\",\n                \"description\": \"Get your entrance for Black Coffee! - Only valid until 1am!\",\n                \"hasAccessCode\": false,\n                \"hasMandatoryAddOns\": false,\n                \"addOnChoiceMode\": \"multiple_choice\",\n                \"images\": [],\n                \"bookingFormFields\": [\n                    {\n                        \"id\": \"aa399602-45c7-4821-9ade-d260f3d330f7\",\n                        \"name\": \"Last name\",\n                        \"slug\": \"lastName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"bf0e8000-e887-4f0c-9b87-79d73b9eef5f\",\n                        \"name\": \"First name\",\n                        \"slug\": \"firstName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"c23c85b1-18b7-4a81-bfd3-a2985ae09a82\",\n                        \"name\": \"Email\",\n                        \"slug\": \"email\",\n                        \"dataType\": \"email\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    }\n                ],\n                \"addOns\": [],\n                \"vatRate\": null,\n                \"admissionType\": \"guestlist\",\n                \"event\": {\n                    \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\"\n                },\n                \"checkInTime\": {\n                    \"validFrom\": null,\n                    \"validUntil\": 1786834800\n                },\n                \"settings\": {\n                    \"isNominative\": false,\n                    \"italyRegulation\": null\n                },\n                \"ticketHolderFormFields\": [],\n                \"color\": \"#0c0f13\",\n                \"floorplanId\": null,\n                \"drinksIncluded\": 0\n            }\n        ],\n        \"ticket\": [\n            {\n                \"id\": \"ab8120f1-543d-44f9-91af-b6e37596c316\",\n                \"status\": \"on_sale\",\n                \"price\": {\n                    \"amount\": 100,\n                    \"currency\": \"EUR\"\n                },\n                \"onlinePaymentPercentage\": 100,\n                \"quantity\": 100,\n                \"itemsPerTransaction\": {\n                    \"min\": 1,\n                    \"max\": 2\n                },\n                \"salesTime\": {\n                    \"openingTime\": 1750667350,\n                    \"closingTime\": 1786852800\n                },\n                \"salesStatus\": {\n                    \"isSalesClosed\": false,\n                    \"isSoldOut\": false\n                },\n                \"commissions\": {\n                    \"transactionFee\": 5.6\n                },\n                \"name\": \"VIP EXPEDITED ENTRY\",\n                \"description\": \"Separate Priority line with no queueing time. Individual ticket with drink, non-refundable.\",\n                \"hasAccessCode\": false,\n                \"hasMandatoryAddOns\": false,\n                \"addOnChoiceMode\": \"multiple_choice\",\n                \"images\": [],\n                \"bookingFormFields\": [\n                    {\n                        \"id\": \"0552b8d9-e7a2-47db-8225-8f28ea5d5496\",\n                        \"name\": \"Email\",\n                        \"slug\": \"email\",\n                        \"dataType\": \"email\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"41c6c54b-d551-4d5b-9e3c-b803eaf8aa17\",\n                        \"name\": \"Last name\",\n                        \"slug\": \"lastName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"cdde4205-560c-4ead-ab35-a68b6d2617b3\",\n                        \"name\": \"First name\",\n                        \"slug\": \"firstName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    }\n                ],\n                \"addOns\": [\n                    {\n                        \"id\": \"789bc493-a5df-4431-90ea-d9a22a69c2f0\",\n                        \"type\": \"transport\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 5,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Transport\",\n                        \"description\": \"Bus Service. Includes round trip from The Sanctuary to the center of the city.\",\n                        \"availableItems\": null\n                    },\n                    {\n                        \"id\": \"5eceda4f-5293-4a9e-8f50-63aaf2daa770\",\n                        \"type\": \"accommodation\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 110,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Accommodation\",\n                        \"description\": \"Lodging service. Valid for one night at Destino Ibiza hotel. Room with double bed. Check out at 11am.\",\n                        \"availableItems\": null\n                    },\n                    {\n                        \"id\": \"9d4a0f66-3e87-4987-993e-1be9e39f35de\",\n                        \"type\": \"drinks\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 15,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Welcome Drink\",\n                        \"description\": \"Get you Long Drink in advance. Valid only in the regular bars (No VIP area).\",\n                        \"availableItems\": null\n                    },\n                    {\n                        \"id\": \"e180c781-abf8-4b5b-99aa-d254a684fc9d\",\n                        \"type\": \"insurance\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 3,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Cancellation Insurance\",\n                        \"description\": \"If you cannot attend the event, this insurance will get you a full refund of the ticket price (the insurance cost is non-refundable).\\nTo make use of the insurance, you must request a refund 24 hours before the event begins by sending an email to info@tms.co\",\n                        \"availableItems\": null\n                    }\n                ],\n                \"vatRate\": null,\n                \"admissionType\": \"ticket\",\n                \"event\": {\n                    \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\"\n                },\n                \"checkInTime\": {\n                    \"validFrom\": null,\n                    \"validUntil\": null\n                },\n                \"settings\": {\n                    \"isNominative\": true,\n                    \"italyRegulation\": null\n                },\n                \"ticketHolderFormFields\": [\n                    {\n                        \"id\": \"fc02203d-b9a2-4ff2-871f-0b8605d4334c\",\n                        \"name\": \"First name\",\n                        \"slug\": \"firstName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true\n                    },\n                    {\n                        \"id\": \"72c084f4-faaa-4d13-8e43-09f079ade083\",\n                        \"name\": \"Last name\",\n                        \"slug\": \"lastName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true\n                    }\n                ],\n                \"color\": \"#c2ff85\",\n                \"floorplanId\": null,\n                \"drinksIncluded\": 0\n            },\n            {\n                \"id\": \"f03f65da-cbb3-4a84-af5d-b42c9fe90945\",\n                \"status\": \"on_sale\",\n                \"price\": {\n                    \"amount\": 30,\n                    \"currency\": \"EUR\"\n                },\n                \"onlinePaymentPercentage\": 100,\n                \"quantity\": null,\n                \"itemsPerTransaction\": {\n                    \"min\": 1,\n                    \"max\": 5\n                },\n                \"salesTime\": {\n                    \"openingTime\": 1750667351,\n                    \"closingTime\": 1786829400\n                },\n                \"salesStatus\": {\n                    \"isSalesClosed\": false,\n                    \"isSoldOut\": false\n                },\n                \"commissions\": {\n                    \"transactionFee\": 2.1\n                },\n                \"name\": \"Early Bird\",\n                \"description\": \"Limited availabilty.\",\n                \"hasAccessCode\": false,\n                \"hasMandatoryAddOns\": false,\n                \"addOnChoiceMode\": \"multiple_choice\",\n                \"images\": [],\n                \"bookingFormFields\": [\n                    {\n                        \"id\": \"137b89e7-ced7-4b3b-bbde-96bd0e3134de\",\n                        \"name\": \"First name\",\n                        \"slug\": \"firstName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"4b1c3b52-d592-4049-b2cf-a7e30ffe2077\",\n                        \"name\": \"Email\",\n                        \"slug\": \"email\",\n                        \"dataType\": \"email\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"ba709ff0-e3af-4425-9925-71e148c126f1\",\n                        \"name\": \"Last name\",\n                        \"slug\": \"lastName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    }\n                ],\n                \"addOns\": [\n                    {\n                        \"id\": \"789bc493-a5df-4431-90ea-d9a22a69c2f0\",\n                        \"type\": \"transport\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 5,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Transport\",\n                        \"description\": \"Bus Service. Includes round trip from The Sanctuary to the center of the city.\",\n                        \"availableItems\": null\n                    },\n                    {\n                        \"id\": \"5eceda4f-5293-4a9e-8f50-63aaf2daa770\",\n                        \"type\": \"accommodation\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 110,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Accommodation\",\n                        \"description\": \"Lodging service. Valid for one night at Destino Ibiza hotel. Room with double bed. Check out at 11am.\",\n                        \"availableItems\": null\n                    },\n                    {\n                        \"id\": \"9d4a0f66-3e87-4987-993e-1be9e39f35de\",\n                        \"type\": \"drinks\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 15,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Welcome Drink\",\n                        \"description\": \"Get you Long Drink in advance. Valid only in the regular bars (No VIP area).\",\n                        \"availableItems\": null\n                    },\n                    {\n                        \"id\": \"e180c781-abf8-4b5b-99aa-d254a684fc9d\",\n                        \"type\": \"insurance\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 3,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Cancellation Insurance\",\n                        \"description\": \"If you cannot attend the event, this insurance will get you a full refund of the ticket price (the insurance cost is non-refundable).\\nTo make use of the insurance, you must request a refund 24 hours before the event begins by sending an email to info@tms.co\",\n                        \"availableItems\": null\n                    },\n                    {\n                        \"id\": \"73008def-dc58-4056-8f67-b567aa70a94c\",\n                        \"type\": \"donation\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 5,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Donation\",\n                        \"description\": \"NGO Campaign - Donation to the food bank.\",\n                        \"availableItems\": null\n                    }\n                ],\n                \"vatRate\": null,\n                \"admissionType\": \"ticket\",\n                \"event\": {\n                    \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\"\n                },\n                \"checkInTime\": {\n                    \"validFrom\": null,\n                    \"validUntil\": null\n                },\n                \"settings\": {\n                    \"isNominative\": false,\n                    \"italyRegulation\": null\n                },\n                \"ticketHolderFormFields\": [],\n                \"color\": null,\n                \"floorplanId\": null,\n                \"drinksIncluded\": 0\n            },\n            {\n                \"id\": \"38258baa-654f-45f0-bd5c-8b6ad91e74f5\",\n                \"status\": \"on_sale\",\n                \"price\": {\n                    \"amount\": 50,\n                    \"currency\": \"EUR\"\n                },\n                \"onlinePaymentPercentage\": 100,\n                \"quantity\": 100,\n                \"itemsPerTransaction\": {\n                    \"min\": 1,\n                    \"max\": 5\n                },\n                \"salesTime\": {\n                    \"openingTime\": 1750667350,\n                    \"closingTime\": 1786852800\n                },\n                \"salesStatus\": {\n                    \"isSalesClosed\": false,\n                    \"isSoldOut\": false\n                },\n                \"commissions\": {\n                    \"transactionFee\": 3.1\n                },\n                \"name\": \"GENERAL ADMISSION\",\n                \"description\": \"Individual ticket with drink, non-refundable.\",\n                \"hasAccessCode\": false,\n                \"hasMandatoryAddOns\": false,\n                \"addOnChoiceMode\": \"multiple_choice\",\n                \"images\": [],\n                \"bookingFormFields\": [\n                    {\n                        \"id\": \"bd5683d1-15c1-4015-9b4e-38ecb7e39842\",\n                        \"name\": \"Last name\",\n                        \"slug\": \"lastName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"dd3667c0-8178-4aa4-ba0b-352c3364c716\",\n                        \"name\": \"Email\",\n                        \"slug\": \"email\",\n                        \"dataType\": \"email\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    },\n                    {\n                        \"id\": \"f45d0e15-eb68-4f4b-a58c-ff87751104da\",\n                        \"name\": \"First name\",\n                        \"slug\": \"firstName\",\n                        \"dataType\": \"text\",\n                        \"isRequired\": true,\n                        \"min\": null,\n                        \"max\": null\n                    }\n                ],\n                \"addOns\": [\n                    {\n                        \"id\": \"789bc493-a5df-4431-90ea-d9a22a69c2f0\",\n                        \"type\": \"transport\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 5,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Transport\",\n                        \"description\": \"Bus Service. Includes round trip from The Sanctuary to the center of the city.\",\n                        \"availableItems\": null\n                    },\n                    {\n                        \"id\": \"5eceda4f-5293-4a9e-8f50-63aaf2daa770\",\n                        \"type\": \"accommodation\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 110,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Accommodation\",\n                        \"description\": \"Lodging service. Valid for one night at Destino Ibiza hotel. Room with double bed. Check out at 11am.\",\n                        \"availableItems\": null\n                    },\n                    {\n                        \"id\": \"9d4a0f66-3e87-4987-993e-1be9e39f35de\",\n                        \"type\": \"drinks\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 15,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Welcome Drink\",\n                        \"description\": \"Get you Long Drink in advance. Valid only in the regular bars (No VIP area).\",\n                        \"availableItems\": null\n                    },\n                    {\n                        \"id\": \"73008def-dc58-4056-8f67-b567aa70a94c\",\n                        \"type\": \"donation\",\n                        \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                        \"fixedPrice\": {\n                            \"amount\": 5,\n                            \"currency\": \"EUR\"\n                        },\n                        \"quantity\": null,\n                        \"name\": \"Donation\",\n                        \"description\": \"NGO Campaign - Donation to the food bank.\",\n                        \"availableItems\": null\n                    }\n                ],\n                \"vatRate\": null,\n                \"admissionType\": \"ticket\",\n                \"event\": {\n                    \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\"\n                },\n                \"checkInTime\": {\n                    \"validFrom\": null,\n                    \"validUntil\": null\n                },\n                \"settings\": {\n                    \"isNominative\": false,\n                    \"italyRegulation\": null\n                },\n                \"ticketHolderFormFields\": [],\n                \"color\": \"#e3fad6\",\n                \"floorplanId\": null,\n                \"drinksIncluded\": 0\n            }\n        ]\n    }\n}"},{"id":"d95a8093-9512-4ef7-89eb-4ef60b07c825","name":"400 Bad Request","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{offer-service-host}}/v1/events/:eventId/admissions","host":["{{offer-service-host}}"],"path":["v1","events",":eventId","admissions"],"query":[{"key":"channel","value":"the-music-sanctuary","description":"string or UUID. Required.","type":"text","disabled":true},{"key":"accessCode","value":"promoCode","description":"Optional. Code the buyer must enter to view the related offer.","type":"text","disabled":true},{"key":"lang","value":"es","description":"Optional. Translate response contents to this language (only if translations exist).","type":"text","disabled":true},{"key":"orderBy","value":"position","description":"Optional. Sort field. Allowed values: position, price. Default: position.","type":"text","disabled":true},{"key":"sort","value":"ASC","description":"Optional. Sort direction. Allowed values: ASC, DESC. Default: ASC","type":"text","disabled":true}],"variable":[{"key":"eventId","value":"1100"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Event ID is not a UUID.\",\n        \"code\": 10051\n    }\n}"},{"id":"f2e66fc5-df1d-4754-b099-2b3b6ee406c6","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{offer-service-host}}/v1/events/:eventId/admissions","host":["{{offer-service-host}}"],"path":["v1","events",":eventId","admissions"],"query":[{"key":"channel","value":"the-music-sanctuary","description":"string or UUID. Required.","type":"text","disabled":true},{"key":"accessCode","value":"promoCode","description":"Optional. Code the buyer must enter to view the related offer.","type":"text","disabled":true},{"key":"lang","value":"es","description":"Optional. Translate response contents to this language (only if translations exist).","type":"text","disabled":true},{"key":"orderBy","value":"position","description":"Optional. Sort field. Allowed values: position, price. Default: position.","type":"text","disabled":true},{"key":"sort","value":"ASC","description":"Optional. Sort direction. Allowed values: ASC, DESC. Default: ASC","type":"text","disabled":true}],"variable":[{"key":"eventId","value":"220398a8-0000-11f0-bcc9-0242ac11000d"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Event with ID 220398a8-0000-11f0-bcc9-0242ac11000d does not exist.\",\n        \"code\": 10050\n    }\n}"}],"_postman_id":"4c8ceb46-188a-4dea-b05f-540d8b75fd42"},{"name":"Offer Detail","id":"270517ce-d5b7-43b5-abf8-400d69f985e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{offer-service-host}}/v1/admissions/:offerId","description":"<p>This endpoint returns admission details for a specific offer identified by <code>offerId</code>. It provides comprehensive information about the admission, including its pricing, availability, and associated add-ons.</p>\n<p>The fields required for a booking are grouped in the formfields array. The bookingFormFields are always mandatory and these are the data inputs that should be required to the user to do a booking: email, first name, and last name at least.</p>\n<p>If the offer was set as nominative by the organizert, that means that every ticket purchased within the transaction has a defined ticket holder, for whom the required input data for each ticket will be returned in the ticketHolderFormFields array (first name and last name at least).<br />If the offer is not nominative this array will be empty.</p>\n<p><strong>STAGING</strong>: <code>https://offer.staging.xceed.me/v1/admissions/:offerId</code></p>\n<h2 id=\"response-structure\">Response Structure</h2>\n<h3 id=\"root\"><strong>Root</strong></h3>\n<ul>\n<li><p>success: boolean — Whether the request was successful.</p>\n</li>\n<li><p>data: object — Admission item details.</p>\n</li>\n</ul>\n<h3 id=\"data\"><strong>data</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the admission item.</p>\n</li>\n<li><p>status: string — Current sales status (e.g., on_sale).</p>\n</li>\n<li><p>price: object — Pricing details.</p>\n</li>\n<li><p>onlinePaymentPercentage: integer — Percentage of the price to be paid online.</p>\n</li>\n<li><p>quantity: integer | null — Available quantity. Null means unlimited.</p>\n</li>\n<li><p>itemsPerTransaction: object — Minimum and maximum number of items per transaction.</p>\n</li>\n<li><p>salesTime: object — Time window when sales are open.</p>\n</li>\n<li><p>salesStatus: object — Current sales availability.</p>\n</li>\n<li><p>commissions: object — Commission fees applied.</p>\n</li>\n<li><p>name: string — Admission item name.</p>\n</li>\n<li><p>description: string — Description of the admission item.</p>\n</li>\n<li><p>hasAccessCode: boolean — Whether an access code is required.</p>\n</li>\n<li><p>hasMandatoryAddOns: boolean — Whether add-ons are mandatory.</p>\n</li>\n<li><p>addOnChoiceMode: string — Mode for choosing add-ons (e.g., multiple_choice).</p>\n</li>\n<li><p>images: array — Related images.</p>\n</li>\n<li><p>bookingFormFields: array[object] — Required form fields at booking.</p>\n</li>\n<li><p>addOns: array[object] — Optional add-on items available.</p>\n</li>\n<li><p>vatRate: number | null — VAT rate applied.</p>\n</li>\n<li><p>admissionType: string — Type of admission (e.g., ticket).</p>\n</li>\n<li><p>event: object — Reference to the event.</p>\n</li>\n<li><p>checkInTime: object — Validity period for check-in.</p>\n</li>\n<li><p>settings: object — Admission settings.</p>\n</li>\n<li><p>ticketHolderFormFields: array[object] — Fields required for each ticket holder.</p>\n</li>\n<li><p>color: string | null — Color associated with the admission item.</p>\n</li>\n<li><p>floorplanId: string (UUID) | null — Identifier of the floorplan, if any.</p>\n</li>\n<li><p>drinksIncluded: integer — Number of drinks included.</p>\n</li>\n</ul>\n<h3 id=\"dataprice\"><strong>data.price</strong></h3>\n<ul>\n<li><p>amount: number — Price amount.</p>\n</li>\n<li><p>currency: string — Currency code (ISO 4217).</p>\n</li>\n</ul>\n<h3 id=\"dataitemspertransaction\"><strong>data.itemsPerTransaction</strong></h3>\n<ul>\n<li><p>min: integer — Minimum items per transaction.</p>\n</li>\n<li><p>max: integer — Maximum items per transaction.</p>\n</li>\n</ul>\n<h3 id=\"datasalestime\"><strong>data.salesTime</strong></h3>\n<ul>\n<li><p>openingTime: integer (UNIX timestamp, seconds) — Time when sales open.</p>\n</li>\n<li><p>closingTime: integer (UNIX timestamp, seconds) — Time when sales close.</p>\n</li>\n</ul>\n<h3 id=\"datasalesstatus\"><strong>data.salesStatus</strong></h3>\n<ul>\n<li><p>isSalesClosed: boolean — Whether sales are closed.</p>\n</li>\n<li><p>isSoldOut: boolean — Whether sold out.</p>\n</li>\n</ul>\n<h3 id=\"datacommissions\"><strong>data.commissions</strong></h3>\n<ul>\n<li>transactionFee: number — Transaction fee applied.</li>\n</ul>\n<h3 id=\"databookingformfields\"><strong>data.bookingFormFields[]</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the field.</p>\n</li>\n<li><p>name: string — Field display name.</p>\n</li>\n<li><p>slug: string — Field key.</p>\n</li>\n<li><p>dataType: string — Type of field (e.g., text, email).</p>\n</li>\n<li><p>isRequired: boolean — Whether the field is mandatory.</p>\n</li>\n<li><p>min: integer | null — Minimum constraint, if applicable.</p>\n</li>\n<li><p>max: integer | null — Maximum constraint, if applicable.</p>\n</li>\n</ul>\n<h3 id=\"dataaddons\"><strong>data.addOns[]</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the add-on.</p>\n</li>\n<li><p>type: string — Type of add-on (e.g., transport, accommodation, drinks, insurance, donation).</p>\n</li>\n<li><p>eventId: string (UUID) — Event identifier the add-on belongs to.</p>\n</li>\n<li><p>fixedPrice: object — Fixed price details of the add-on.</p>\n</li>\n<li><p>quantity: integer | null — Quantity available.</p>\n</li>\n<li><p>name: string — Add-on name.</p>\n</li>\n<li><p>description: string — Description of the add-on.</p>\n</li>\n<li><p>availableItems: array | null — Available variations, if any.</p>\n</li>\n</ul>\n<h3 id=\"dataaddonsfixedprice\"><strong>data.addOns[].fixedPrice</strong></h3>\n<ul>\n<li><p>amount: number — Price amount.</p>\n</li>\n<li><p>currency: string — Currency code (ISO 4217).</p>\n</li>\n</ul>\n<h3 id=\"dataevent\"><strong>data.event</strong></h3>\n<ul>\n<li>id: string (UUID) — Event identifier.</li>\n</ul>\n<h3 id=\"datacheckintime\"><strong>data.checkInTime</strong></h3>\n<ul>\n<li><p>validFrom: integer | null (UNIX timestamp, seconds) — Start of check-in validity.</p>\n</li>\n<li><p>validUntil: integer | null (UNIX timestamp, seconds) — End of check-in validity.</p>\n</li>\n</ul>\n<h3 id=\"datasettings\"><strong>data.settings</strong></h3>\n<ul>\n<li><p>isNominative: boolean — Whether the admission is nominative (linked to the attendee).</p>\n</li>\n<li><p>italyRegulation: object | null — Italy-specific regulation settings.</p>\n</li>\n</ul>\n<h3 id=\"dataticketholderformfields\"><strong>data.ticketHolderFormFields[]</strong></h3>\n<ul>\n<li><p>id: string (UUID) — Unique identifier of the ticket holder field.</p>\n</li>\n<li><p>name: string — Field display name.</p>\n</li>\n<li><p>slug: string — Field key.</p>\n</li>\n<li><p>dataType: string — Type of field.</p>\n</li>\n<li><p>isRequired: boolean — Whether the field is mandatory.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure to provide a valid <code>offerId</code> to retrieve the correct admission details.</p>\n</li>\n<li><p>The response will vary based on the offer's availability and configuration.</p>\n</li>\n</ul>\n","urlObject":{"path":["v1","admissions",":offerId"],"host":["{{offer-service-host}}"],"query":[{"disabled":true,"description":{"content":"<p>Channel unique identifier. string or UUID. [Required].</p>\n","type":"text/plain"},"key":"channel","value":"the-music-sanctuary"},{"disabled":true,"key":"lang","value":"es"}],"variable":[{"description":{"content":"<p>unique identifier of the offer. [Required].</p>\n","type":"text/plain"},"type":"any","value":"f03f65da-cbb3-4a84-af5d-b42c9fe90945","key":"offerId"}]}},"response":[{"id":"e08d67fd-6e9a-47fb-9ce2-b4dc6b1b2a33","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{offer-service-host}}/v1/admissions/:offerId?channel=the-music-sanctuary","host":["{{offer-service-host}}"],"path":["v1","admissions",":offerId"],"query":[{"key":"channel","value":"the-music-sanctuary","description":"Channel unique identifier. string or UUID. [Required]."},{"key":"lang","value":"en","description":"Optional. Translate response contents to this language (only if translations exist).","type":"text","disabled":true}],"variable":[{"key":"offerId","value":"f03f65da-cbb3-4a84-af5d-b42c9fe90945"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 28 Aug 2025 08:41:36 GMT"},{"key":"Cache-Control","value":"public, s-maxage=2"},{"key":"Server","value":"nginx/1.27.5"},{"key":"Vary","value":"Origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ab916244e3e9d10fbf3e1be44f298d38.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAD53-P2"},{"key":"X-Amz-Cf-Id","value":"APnTSpH5T3v0j3Guj4BUwG2AZAq5a-2zKuDqVSp_8k6ImwScnqeCuw=="}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": \"f03f65da-cbb3-4a84-af5d-b42c9fe90945\",\n        \"status\": \"on_sale\",\n        \"price\": {\n            \"amount\": 30,\n            \"currency\": \"EUR\"\n        },\n        \"onlinePaymentPercentage\": 100,\n        \"quantity\": null,\n        \"itemsPerTransaction\": {\n            \"min\": 1,\n            \"max\": 5\n        },\n        \"salesTime\": {\n            \"openingTime\": 1750667351,\n            \"closingTime\": 1786829400\n        },\n        \"salesStatus\": {\n            \"isSalesClosed\": false,\n            \"isSoldOut\": false\n        },\n        \"commissions\": {\n            \"transactionFee\": 2.1\n        },\n        \"name\": \"Early Bird\",\n        \"description\": \"Limited availabilty.\",\n        \"hasAccessCode\": false,\n        \"hasMandatoryAddOns\": false,\n        \"addOnChoiceMode\": \"multiple_choice\",\n        \"images\": [],\n        \"bookingFormFields\": [\n            {\n                \"id\": \"137b89e7-ced7-4b3b-bbde-96bd0e3134de\",\n                \"name\": \"First name\",\n                \"slug\": \"firstName\",\n                \"dataType\": \"text\",\n                \"isRequired\": true,\n                \"min\": null,\n                \"max\": null\n            },\n            {\n                \"id\": \"4b1c3b52-d592-4049-b2cf-a7e30ffe2077\",\n                \"name\": \"Email\",\n                \"slug\": \"email\",\n                \"dataType\": \"email\",\n                \"isRequired\": true,\n                \"min\": null,\n                \"max\": null\n            },\n            {\n                \"id\": \"ba709ff0-e3af-4425-9925-71e148c126f1\",\n                \"name\": \"Last name\",\n                \"slug\": \"lastName\",\n                \"dataType\": \"text\",\n                \"isRequired\": true,\n                \"min\": null,\n                \"max\": null\n            }\n        ],\n        \"addOns\": [\n            {\n                \"id\": \"789bc493-a5df-4431-90ea-d9a22a69c2f0\",\n                \"type\": \"transport\",\n                \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                \"fixedPrice\": {\n                    \"amount\": 5,\n                    \"currency\": \"EUR\"\n                },\n                \"quantity\": null,\n                \"name\": \"Transport\",\n                \"description\": \"Bus Service. Includes round trip from The Sanctuary to the center of the city.\",\n                \"availableItems\": null\n            },\n            {\n                \"id\": \"5eceda4f-5293-4a9e-8f50-63aaf2daa770\",\n                \"type\": \"accommodation\",\n                \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                \"fixedPrice\": {\n                    \"amount\": 110,\n                    \"currency\": \"EUR\"\n                },\n                \"quantity\": null,\n                \"name\": \"Accommodation\",\n                \"description\": \"Lodging service. Valid for one night at Destino Ibiza hotel. Room with double bed. Check out at 11am.\",\n                \"availableItems\": null\n            },\n            {\n                \"id\": \"9d4a0f66-3e87-4987-993e-1be9e39f35de\",\n                \"type\": \"drinks\",\n                \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                \"fixedPrice\": {\n                    \"amount\": 15,\n                    \"currency\": \"EUR\"\n                },\n                \"quantity\": null,\n                \"name\": \"Welcome Drink\",\n                \"description\": \"Get you Long Drink in advance. Valid only in the regular bars (No VIP area).\",\n                \"availableItems\": null\n            },\n            {\n                \"id\": \"e180c781-abf8-4b5b-99aa-d254a684fc9d\",\n                \"type\": \"insurance\",\n                \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                \"fixedPrice\": {\n                    \"amount\": 3,\n                    \"currency\": \"EUR\"\n                },\n                \"quantity\": null,\n                \"name\": \"Cancellation Insurance\",\n                \"description\": \"If you cannot attend the event, this insurance will get you a full refund of the ticket price (the insurance cost is non-refundable).\\nTo make use of the insurance, you must request a refund 24 hours before the event begins by sending an email to info@tms.co\",\n                \"availableItems\": null\n            },\n            {\n                \"id\": \"73008def-dc58-4056-8f67-b567aa70a94c\",\n                \"type\": \"donation\",\n                \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                \"fixedPrice\": {\n                    \"amount\": 5,\n                    \"currency\": \"EUR\"\n                },\n                \"quantity\": null,\n                \"name\": \"Donation\",\n                \"description\": \"NGO Campaign - Donation to the food bank.\",\n                \"availableItems\": null\n            }\n        ],\n        \"vatRate\": null,\n        \"admissionType\": \"ticket\",\n        \"event\": {\n            \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\"\n        },\n        \"checkInTime\": {\n            \"validFrom\": null,\n            \"validUntil\": null\n        },\n        \"settings\": {\n            \"isNominative\": false,\n            \"italyRegulation\": null\n        },\n        \"ticketHolderFormFields\": [],\n        \"color\": null,\n        \"floorplanId\": null,\n        \"drinksIncluded\": 0\n    }\n}"},{"id":"4d167517-a827-425a-a3cb-e3fccd3d46c7","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{offer-service-host}}/v1/admissions/:offerId","host":["{{offer-service-host}}"],"path":["v1","admissions",":offerId"],"query":[{"key":"channel","value":"the-music-sanctuary","type":"text","disabled":true},{"key":"lang","value":"es","type":"text","disabled":true}],"variable":[{"key":"offerId","value":"f03f65da-cbb3-4a84-af5d-b42c9fe90945"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 28 Aug 2025 08:42:10 GMT"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"nginx/1.27.5"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 ab916244e3e9d10fbf3e1be44f298d38.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAD53-P2"},{"key":"X-Amz-Cf-Id","value":"VvGQNbnr_wwfAzUa17vh-kvIl96bmiE3I2lP5-tu3giZD1L7B0mbig=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Event with UUID 220398a8-500c-11f0-bcc9-0242ac11000d does not have a Channel with UUID fb04f5bc-1034-11ea-b000-06b880e08c2c\",\n        \"code\": 0\n    }\n}"}],"_postman_id":"270517ce-d5b7-43b5-abf8-400d69f985e1"},{"name":"Generate Booking Attempt","id":"4708f160-2ab7-44ba-9766-8fa985efa0ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"bookingFormFields\": [\n        {\n            \"name\": \"firstName\",\n            \"value\": \"John\"\n        },\n        {\n            \"name\": \"lastName\",\n            \"value\": \"Doo\"\n        },\n        {\n            \"name\": \"email\",\n            \"value\": \"johndoo@xceed.me\"\n        },\n        {\n            \"name\": \"emailConfirm\",\n            \"value\": \"johndoo@xceed.me\"\n        }\n    ],\n    \"offerId\": \"f03f65da-cbb3-4a84-af5d-b42c9fe90945\",\n    \"source\": \"partner_np\", // always use partner_np \n    \"numTickets\": 1,\n    \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n    \"channelSlug\": \"the-music-sanctuary\",\n    \"marketingConditionsAccepted\": false, // user consent to receive marketing communications \n    \"addOns\": [],\n    \"areaId\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{booking-service-host}}/b2c/v4/booking-attempt?lang=en","description":"<p>This endpoint is used to create an inactive booking previous to payment, once the payment is successful a booking will be generated from this booking attempt.</p>\n<p>To complete the booking, access to the Partner Ticket API is required.</p>\n<p><strong>STAGING</strong><a href=\"https://api.staging.xceed.me/b2c/v4/booking-attempt\">: <code>https://api.staging.xceed.me/b2c/v4/booking-attempt</code></a></p>\n<h2 id=\"response-attributes\">Response Attributes:</h2>\n<h3 id=\"root\"><strong>Root</strong></h3>\n<ul>\n<li><p><strong>success</strong>: boolean — Whether the request was successful.</p>\n</li>\n<li><p><strong>data</strong>: object — Booking details.</p>\n</li>\n</ul>\n<h3 id=\"data\"><strong>data</strong></h3>\n<ul>\n<li><strong>bookingId</strong>: string (UUID) — Unique identifier of the booking. This same bookingId will need to be used to generate the booking via the Partner Ticket API.</li>\n</ul>\n","urlObject":{"path":["b2c","v4","booking-attempt"],"host":["{{booking-service-host}}"],"query":[{"description":{"content":"<p>string. Language of buyer. Booking confirmation email and ticket will be generated accordingly. Language must be in ISO 639-1 format. Default: en. [optional]</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[]}},"response":[{"id":"ee102acf-96ad-42ab-a58e-1abc137bc10b","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"bookingFormFields\": [\n        {\n            \"name\": \"firstName\",\n            \"value\": \"George\"\n        },\n        {\n            \"name\": \"lastName\",\n            \"value\": \"Best\"\n        },\n        {\n            \"name\": \"email\",\n            \"value\": \"gb@xceed.me\"\n        },\n        {\n            \"name\": \"emailConfirm\",\n            \"value\": \"gb@xceed.me\"\n        }\n    ],\n    \"offerId\": \"f03f65da-cbb3-4a84-af5d-b42c9fe90945\",\n    \"source\": \"partner_np\", // always use partner_np \n    \"numTickets\": 1,\n    \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n    \"channelSlug\": \"the-music-sanctuary\",\n    \"marketingConditionsAccepted\": false, // user consent to receive marketing communications \n    \"addOns\": [],\n    \"areaId\": null\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{booking-service-host}}/b2c/v4/booking-attempt?lang=en","host":["{{booking-service-host}}"],"path":["b2c","v4","booking-attempt"],"query":[{"key":"lang","value":"en","description":"string. Language of buyer. Booking confirmation email and ticket will be generated accordingly. Language must be in ISO 639-1 format. Default: en. [optional]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 16:23:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Set-Cookie","value":"XCEEDSESSION=rnspi8dmc785tq1e3i594tibka; path=/an-unmatchable-path; domain=xceed.me; secure; HttpOnly; SameSite=none"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Thu, 28 Aug 2025 16:23:49 GMT"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Cache-Control, Content-Type, DNT, If-Modified-Since, Keep-Alive,Origin, User-Agent,X-Requested-With, credentials, Content-Disposition, Responsetype"},{"key":"Access-Control-Expose-Headers","value":"Content-Disposition"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"bookingId\": \"4ea95454-22b4-4724-9cd6-55bf35bc6392\"\n    }\n}"}],"_postman_id":"4708f160-2ab7-44ba-9766-8fa985efa0ad"}],"id":"f499ec5b-a167-4968-b564-4c3e7c068f64","description":"<h2 id=\"api-version-130\">API version: 1.3.0</h2>\n<p>The <strong>Open Event API</strong> is a powerful and flexible interface designed to provide seamless access to events and offer details. It enables partners to retrieve comprehensive event data and integrate it into their platforms effortlessly.<br />Whether you're building dynamic event pages or managing streamlined checkout processes, the Open Event API offers all the tools you need to create a robust and engaging user experience.</p>\n<h2 id=\"authentication\">Authentication:</h2>\n<p>As an Open API, no authentication is required for access. However, please use the API responsibly to avoid overuse or misuse. Excessive or abusive requests may result in temporary or permanent suspension of access.</p>\n<h2 id=\"testing\">Testing:</h2>\n<p>Developers can use the sandbox domain <code>staging.xceed.me</code> to test their integrations without impacting production data.</p>\n<h2 id=\"changelog\">Changelog</h2>\n<h3 id=\"130--2025-08-05\">[1.3.0 — 2025-08-05]</h3>\n<ul>\n<li><p><strong>Deprecated</strong>: <code>/v1/events/:eventId/rsvps</code> , replaced by <code>/v1/events/:eventId/admissions</code></p>\n</li>\n<li><p><strong>Added:</strong> <code>/v1/admissions/:offerId</code> endpoint, to retrieve all details an offer</p>\n</li>\n<li><p><strong>Deprecated</strong>: <code>/cms/rsvp/:rsvpUUID</code> endpoint, replaced by <code>/v1/events/:eventId/admissions</code></p>\n</li>\n</ul>\n<h3 id=\"121--2024-02-10\">[1.2.1 — 2024-02-10]</h3>\n<ul>\n<li><strong>Added</strong>: <code>/v1/artists/:artistId</code> endpoint, to retrive details of an artist</li>\n</ul>\n<h3 id=\"120--2023-11-17\">[1.2.0 — 2023-11-17]</h3>\n<ul>\n<li><strong>Added:</strong> <code>/v1/events/:eventId/admissions</code> endpoint, to retrieve offers of an event assigned to the provided channel</li>\n</ul>\n","_postman_id":"f499ec5b-a167-4968-b564-4c3e7c068f64"},{"name":"Partner Tickets API","item":[{"name":"Events","id":"f563055a-24d8-4ff5-9afb-8745d9929fa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":"{{partner.xceed.me}}/v1/events?offset=0&limit=50&startingTime=1767262135","description":"<p>This endpoint allows you to retrieve a list of events from the Xceed platform that you can access with the provided API-Key.</p>\n<h3 id=\"staging\">Staging:</h3>\n<p><code>https://partner.staging.xceed.me/v1/events</code></p>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the API will return a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>success</strong> (boolean): Indicates whether the request was successful.</p>\n</li>\n<li><p><strong>data</strong> (array): Contains a list of event objects, each with the following properties:</p>\n<ul>\n<li><p><strong>id</strong> (integer): Unique identifier for the event.</p>\n</li>\n<li><p><strong>uuid</strong> (string): Universally unique identifier for the event.</p>\n</li>\n<li><p><strong>name</strong> (string): Name of the event.</p>\n</li>\n<li><p><strong>startingTime</strong> (integer): Timestamp representing when the event starts.</p>\n</li>\n<li><p><strong>endingTime</strong> (integer): Timestamp representing when the event ends.</p>\n</li>\n<li><p><strong>venue</strong> (object): Contains details about the venue:</p>\n<ul>\n<li><p><strong>uuid</strong> (string): Universally unique identifier for the venue.</p>\n</li>\n<li><p><strong>name</strong> (string): Name of the venue.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>ticketsSold</strong> (integer): Number of tickets sold for the event.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that you have the necessary permissions to access this endpoint.</p>\n</li>\n<li><p>The timestamps provided in the response are in Unix format.</p>\n</li>\n<li><p>If no events are available, the <code>data</code> array will be empty, but <code>success</code> will still be <code>true</code>.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","name":"Partner Tickets API","type":"folder"}},"urlObject":{"path":["v1","events"],"host":["{{partner.xceed.me}}"],"query":[{"description":{"content":"<p>integer (default = 0) - Offset used for pagination</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"<p>integer (default = 50) - Max number of elements</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"disabled":true,"description":{"content":"<p>timestamp - Filter by date. \nWhen only an End Date is provided, it returns all events that ended before that date. Useful for showing \"past events up until this date.\"</p>\n<p>When both dates are provided (date range), it returns all events that overlap with the selected period in any way (Events that start during the period, Events that end during the period, Events that span the entire period (started before and end after)</p>\n","type":"text/plain"},"key":"endTime","value":"1893502693"},{"disabled":true,"description":{"content":"<p>slug/uuid - Filter by venues separated by comma</p>\n","type":"text/plain"},"key":"venues","value":"the-sanctuary"},{"key":"startingTime","value":"1767262135"}],"variable":[]}},"response":[{"id":"90947acc-b5bd-439c-9d7f-93449ff3b263","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":{"raw":"{{partner.xceed.me}}/v1/events?offset=0&limit=50&startingTime=1767262135","host":["{{partner.xceed.me}}"],"path":["v1","events"],"query":[{"key":"offset","value":"0","description":"integer (default = 0) - Offset used for pagination"},{"key":"limit","value":"50","description":"integer (default = 50) - Max number of elements"},{"key":"startingTime","value":"1767262135","description":"timestamp - Filter by date. If only startTime is provided, returns events from startTime to infinite. If no startTime is provided, returns all events (past ones too)"},{"key":"endingTime","value":"1893502693","description":"timestamp - Filter by date. If only startTime is provided, returns events from startTime to infinite. If no startTime is provided, returns all events (past ones too)","disabled":true},{"key":"venues","value":"the-sanctuary","description":"slug/uuid - Filter by venues separated by comma","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 11:10:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Thu, 28 Aug 2025 11:10:40 GMT"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Cache-Control, Content-Type, DNT, If-Modified-Since, Keep-Alive,Origin, User-Agent,X-Requested-With, credentials, Content-Disposition, Responsetype"},{"key":"Access-Control-Expose-Headers","value":"Content-Disposition"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": 138380,\n            \"uuid\": \"e51fcc78-62bd-11ee-88d4-0242ac110017\",\n            \"name\": \"Keinemusik + Carlita + Blondish Halloween 2023\",\n            \"startingTime\": 1698793140,\n            \"endingTime\": 1698814800,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 92\n        },\n        {\n            \"id\": 146157,\n            \"uuid\": \"a51dbbaa-b07c-11ee-b554-0242ac110012\",\n            \"name\": \"Linked Techno\",\n            \"startingTime\": 1704999600,\n            \"endingTime\": 1705028400,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 24\n        },\n        {\n            \"id\": 146363,\n            \"uuid\": \"321c570e-b3c1-11ee-ba95-0242ac110012\",\n            \"name\": \"MUUD\",\n            \"startingTime\": 1705694400,\n            \"endingTime\": 1705717800,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 22\n        },\n        {\n            \"id\": 146490,\n            \"uuid\": \"0622c170-b532-11ee-908d-0242ac11000a\",\n            \"name\": \"Marco Carola\",\n            \"startingTime\": 1706738400,\n            \"endingTime\": 1706763600,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 25\n        },\n        {\n            \"id\": 155841,\n            \"uuid\": \"0488886a-0189-11ef-990c-0242ac110008\",\n            \"name\": \"Summer oppening\",\n            \"startingTime\": 1714082340,\n            \"endingTime\": 1714098600,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 24\n        },\n        {\n            \"id\": 153801,\n            \"uuid\": \"0cb34598-f0f4-11ee-8761-0242ac110021\",\n            \"name\": \"Tanz in den Mai / Micro Festival\",\n            \"startingTime\": 1714485600,\n            \"endingTime\": 1714593600,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 28\n        },\n        {\n            \"id\": 157319,\n            \"uuid\": \"4c94f55a-0d35-11ef-8ac3-0242ac11001a\",\n            \"name\": \"Closing Party\",\n            \"startingTime\": 1715202000,\n            \"endingTime\": 1715212800,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 21\n        },\n        {\n            \"id\": 157462,\n            \"uuid\": \"1a8e687c-0eb9-11ef-acd2-0242ac110002\",\n            \"name\": \"Peggy Gou @ HERE \",\n            \"startingTime\": 1715976000,\n            \"endingTime\": 1715997600,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 30\n        },\n        {\n            \"id\": 134185,\n            \"uuid\": \"7bb60400-313a-11ee-a87c-0242ac11000e\",\n            \"name\": \"Pavoia Festival 2024\",\n            \"startingTime\": 1715979600,\n            \"endingTime\": 1716411600,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 23\n        },\n        {\n            \"id\": 158287,\n            \"uuid\": \"e83a8afa-175e-11ef-ac1a-0242ac110022\",\n            \"name\": \"Test Event - Brutal\",\n            \"startingTime\": 1716328740,\n            \"endingTime\": 1716350400,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 21\n        },\n        {\n            \"id\": 157275,\n            \"uuid\": \"bad9c2a4-0d1f-11ef-be4f-0242ac11000e\",\n            \"name\": \"The Moment (Festival)\",\n            \"startingTime\": 1716667200,\n            \"endingTime\": 1716710400,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 25\n        },\n        {\n            \"id\": 160202,\n            \"uuid\": \"7be1eba0-27cb-11ef-9acb-0242ac110002\",\n            \"name\": \"Freddy K Presents :: The All Night Long\",\n            \"startingTime\": 1718096400,\n            \"endingTime\": 1718100000,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 30\n        },\n        {\n            \"id\": 160657,\n            \"uuid\": \"e9fb62a8-2cab-11ef-907d-0242ac110018\",\n            \"name\": \"Closing Party\",\n            \"startingTime\": 1718659800,\n            \"endingTime\": 1718668800,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 21\n        },\n        {\n            \"id\": 160823,\n            \"uuid\": \"d571c7de-2d85-11ef-bfec-0242ac11001d\",\n            \"name\": \"Kollektiv Schieflage \",\n            \"startingTime\": 1719003600,\n            \"endingTime\": 1719028800,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 24\n        },\n        {\n            \"id\": 161575,\n            \"uuid\": \"37737c0c-33a3-11ef-933f-0242ac110008\",\n            \"name\": \"Closing Party\",\n            \"startingTime\": 1719435600,\n            \"endingTime\": 1719446400,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 21\n        },\n        {\n            \"id\": 159711,\n            \"uuid\": \"64fd97c2-232a-11ef-9ca1-0242ac110005\",\n            \"name\": \"Freddy K Presents :: The All Night Long\",\n            \"startingTime\": 1719604800,\n            \"endingTime\": 1719655200,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 38\n        },\n        {\n            \"id\": 159991,\n            \"uuid\": \"33820fce-24d4-11ef-b0d2-0242ac110012\",\n            \"name\": \"Kilowatt Berlin\",\n            \"startingTime\": 1719698340,\n            \"endingTime\": 1719741600,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 30\n        },\n        {\n            \"id\": 160661,\n            \"uuid\": \"5c69d2e4-2cb0-11ef-96ed-0242ac11000b\",\n            \"name\": \"Multisex\",\n            \"startingTime\": 1719784740,\n            \"endingTime\": 1719871140,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 26\n        },\n        {\n            \"id\": 163303,\n            \"uuid\": \"36cfb2d6-4373-11ef-b0f1-0242ac110003\",\n            \"name\": \"Vibrancy \",\n            \"startingTime\": 1721397600,\n            \"endingTime\": 1721419200,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 23\n        },\n        {\n            \"id\": 163434,\n            \"uuid\": \"c1ed788a-44f4-11ef-b053-0242ac110009\",\n            \"name\": \"Feat Frankfurt\",\n            \"startingTime\": 1721404800,\n            \"endingTime\": 1721422800,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 26\n        },\n        {\n            \"id\": 163949,\n            \"uuid\": \"985ed09e-4996-11ef-98ff-0242ac11001a\",\n            \"name\": \"demo test\",\n            \"startingTime\": 1721858340,\n            \"endingTime\": 1721878200,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 21\n        },\n        {\n            \"id\": 163677,\n            \"uuid\": \"a975a630-4817-11ef-8050-0242ac110006\",\n            \"name\": \"Secret Session \",\n            \"startingTime\": 1722024000,\n            \"endingTime\": 1722045600,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 26\n        },\n        {\n            \"id\": 164690,\n            \"uuid\": \"75d10420-50bc-11ef-892a-0242ac110012\",\n            \"name\": \"Afrofeels\",\n            \"startingTime\": 1722614400,\n            \"endingTime\": 1722634200,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 23\n        },\n        {\n            \"id\": 164278,\n            \"uuid\": \"3533770c-4d99-11ef-b7f3-0242ac11002c\",\n            \"name\": \"Test\",\n            \"startingTime\": 1722634200,\n            \"endingTime\": 1722722340,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 21\n        },\n        {\n            \"id\": 166990,\n            \"uuid\": \"29d4bf6a-6a9a-11ef-b1b3-0242ac110006\",\n            \"name\": \"Closing Party\",\n            \"startingTime\": 1725474600,\n            \"endingTime\": 1725492600,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 21\n        },\n        {\n            \"id\": 167582,\n            \"uuid\": \"751a73ee-70ed-11ef-8551-0242ac11000a\",\n            \"name\": \"Closing Party\",\n            \"startingTime\": 1726174800,\n            \"endingTime\": 1726182000,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 22\n        },\n        {\n            \"id\": 167846,\n            \"uuid\": \"8d053b4a-7432-11ef-86d3-0242ac110004\",\n            \"name\": \"Closing Party\",\n            \"startingTime\": 1726518600,\n            \"endingTime\": 1726538400,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 21\n        },\n        {\n            \"id\": 163396,\n            \"uuid\": \"6fd7e15e-4452-11ef-b9ed-0242ac11001a\",\n            \"name\": \"Les Amis secret sessions\",\n            \"startingTime\": 1726825200,\n            \"endingTime\": 1726867800,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 1273\n        },\n        {\n            \"id\": 168699,\n            \"uuid\": \"826dada4-7bf1-11ef-9f6b-0242ac110002\",\n            \"name\": \"Closing Party\",\n            \"startingTime\": 1727386200,\n            \"endingTime\": 1727397000,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 22\n        },\n        {\n            \"id\": 169042,\n            \"uuid\": \"63993568-7f04-11ef-b691-0242ac110015\",\n            \"name\": \"Closing Party\",\n            \"startingTime\": 1727731800,\n            \"endingTime\": 1727742600,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 21\n        },\n        {\n            \"id\": 169162,\n            \"uuid\": \"1b44cdde-7fce-11ef-a49e-0242ac110010\",\n            \"name\": \"Closing Party\",\n            \"startingTime\": 1727816400,\n            \"endingTime\": 1727856000,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 39\n        },\n        {\n            \"id\": 169231,\n            \"uuid\": \"507404e4-809f-11ef-8b24-0242ac110010\",\n            \"name\": \"Closing Party\",\n            \"startingTime\": 1727897400,\n            \"endingTime\": 1727919000,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 21\n        },\n        {\n            \"id\": 173878,\n            \"uuid\": \"f45c324a-a64f-11ef-819f-0242ac110002\",\n            \"name\": \"DDC Test\",\n            \"startingTime\": 1732141800,\n            \"endingTime\": 1732165200,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 21\n        },\n        {\n            \"id\": 176631,\n            \"uuid\": \"087420d2-bddc-11ef-8d2a-0242ac110007\",\n            \"name\": \"Zakes Presents Abantu\",\n            \"startingTime\": 1737198000,\n            \"endingTime\": 1737241140,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 35\n        },\n        {\n            \"id\": 177656,\n            \"uuid\": \"86a446cc-cc2c-11ef-a1fe-0242ac110003\",\n            \"name\": \"RSO Presents Xiorro\",\n            \"startingTime\": 1737845940,\n            \"endingTime\": 1737954000,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 23\n        },\n        {\n            \"id\": 170034,\n            \"uuid\": \"ec001af6-87de-11ef-85e4-0242ac110008\",\n            \"name\": \"Black Coffee - Every Saturday\",\n            \"startingTime\": 1739658600,\n            \"endingTime\": 1739682000,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 33\n        },\n        {\n            \"id\": 141024,\n            \"uuid\": \"bc226260-7ca6-11ee-8110-0242ac11000c\",\n            \"name\": \"Resurrection presents Carl Cox\",\n            \"startingTime\": 1745271000,\n            \"endingTime\": 1745294400,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 50\n        },\n        {\n            \"id\": 125677,\n            \"uuid\": \"787be5ca-dd34-11ed-a2a7-0242ac110004\",\n            \"name\": \"Resurrection presents Hernan Cattaneo & Anna Tur\",\n            \"startingTime\": 1745875800,\n            \"endingTime\": 1745899200,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 279\n        },\n        {\n            \"id\": 170035,\n            \"uuid\": \"1a551834-87df-11ef-b545-0242ac110003\",\n            \"name\": \"Black Coffee All Night Long \",\n            \"startingTime\": 1746912600,\n            \"endingTime\": 1746936000,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 52\n        },\n        {\n            \"id\": 125675,\n            \"uuid\": \"1a2f25cc-dd34-11ed-a7ce-0242ac110004\",\n            \"name\": \"Secret Sessions #4\",\n            \"startingTime\": 1748640600,\n            \"endingTime\": 1748664000,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 353\n        },\n        {\n            \"id\": 125672,\n            \"uuid\": \"a9da509e-dd33-11ed-b8ad-0242ac110003\",\n            \"name\": \"Desolat with Loco Dice\",\n            \"startingTime\": 1749936600,\n            \"endingTime\": 1749960000,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 81\n        },\n        {\n            \"id\": 193557,\n            \"uuid\": \"afc9ff44-42db-11f0-8fca-0242ac110012\",\n            \"name\": \"Desolat with Loco Dice\",\n            \"startingTime\": 1750282200,\n            \"endingTime\": 1750305600,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 25\n        },\n        {\n            \"id\": 125674,\n            \"uuid\": \"e768f1b8-dd33-11ed-b933-0242ac110006\",\n            \"name\": \"Black Coffee - Every Saturday\",\n            \"startingTime\": 1750627800,\n            \"endingTime\": 1750651200,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 325\n        },\n        {\n            \"id\": 194934,\n            \"uuid\": \"bc5fbf76-500c-11f0-9e3e-0242ac110012\",\n            \"name\": \"Secret Sessions #4\",\n            \"startingTime\": 1752269400,\n            \"endingTime\": 1752292800,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 27\n        },\n        {\n            \"id\": 194940,\n            \"uuid\": \"3c262ee6-500f-11f0-96f5-0242ac11000e\",\n            \"name\": \"Zakes Presents Abantu\",\n            \"startingTime\": 1753524000,\n            \"endingTime\": 1753653540,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 37\n        },\n        {\n            \"id\": 198388,\n            \"uuid\": \"ce46ecae-68a4-11f0-b516-0242ac110006\",\n            \"name\": \"Desolat with Loco Dice\",\n            \"startingTime\": 1753997400,\n            \"endingTime\": 1754020800,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 20\n        },\n        {\n            \"id\": 194935,\n            \"uuid\": \"1bb5fabc-500d-11f0-80d8-0242ac11000e\",\n            \"name\": \"Desolat with Loco Dice\",\n            \"startingTime\": 1755293400,\n            \"endingTime\": 1755316800,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 26\n        },\n        {\n            \"id\": 194943,\n            \"uuid\": \"ea860736-500f-11f0-9d58-0242ac11000e\",\n            \"name\": \"Resurrection presents Hernan Cattaneo & Anna Tur\",\n            \"startingTime\": 1756503000,\n            \"endingTime\": 1756526400,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 27\n        },\n        {\n            \"id\": 194936,\n            \"uuid\": \"6a6ac2e6-500d-11f0-914a-0242ac11000e\",\n            \"name\": \"Closing Party\",\n            \"startingTime\": 1757710800,\n            \"endingTime\": 1757750400,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 20\n        },\n        {\n            \"id\": 194942,\n            \"uuid\": \"b11805f8-500f-11f0-b4f5-0242ac11000e\",\n            \"name\": \"Secret Sessions #4\",\n            \"startingTime\": 1758922200,\n            \"endingTime\": 1758945600,\n            \"venue\": {\n                \"uuid\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"name\": \"The Sanctuary\"\n            },\n            \"ticketsSold\": 20\n        }\n    ]\n}"},{"id":"6251c62f-727f-4473-84de-8f9b3f81eac6","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"X-API-Key","value":"wrong-value","type":"text"}],"url":{"raw":"{{partner.xceed.me}}/v1/events?offset=0&limit=50&startingTime=1767262135","host":["{{partner.xceed.me}}"],"path":["v1","events"],"query":[{"key":"offset","value":"0","description":"integer (default = 0) - Offset used for pagination"},{"key":"limit","value":"50","description":"integer (default = 50) - Max number of elements"},{"key":"startingTime","value":"1767262135","description":"timestamp - Filter by date. If only startTime is provided, returns events from startTime to infinite. If no startTime is provided, returns all events (past ones too)"},{"key":"endingTime","value":"1893502693","description":"timestamp - Filter by date. If only startTime is provided, returns events from startTime to infinite. If no startTime is provided, returns all events (past ones too)","disabled":true},{"key":"venues","value":"the-sanctuary","description":"slug/uuid - Filter by venues separated by comma","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 11:12:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Thu, 28 Aug 2025 11:12:12 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Unauthorized API private key\",\n        \"code\": 0\n    }\n}"}],"_postman_id":"f563055a-24d8-4ff5-9afb-8745d9929fa4"},{"name":"Event Offers by Channel (v2)","id":"83b398e7-4b69-40d0-b071-47345711bb17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":"{{partner.xceed.me}}/v2/events/:eventId/offers?channel=the-music-sanctuary","description":"<p>This endpoint allows you to retrieve a list of offers (tickets, bottle service, guestlists, etc.) for a specific event from the Xceed platform using the provided <code>eventId</code> and <code>channel</code>.</p>\n<h3 id=\"purpose\">Purpose</h3>\n<p>The primary purpose of this request is to obtain detailed offer information for a particular event, including ticketing, bottle service, and other available options.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>URL</strong>: <code>{{partner.xceed.me}}/v2/events/:eventId/offers?channel=:channel</code></p>\n</li>\n<li><p><strong>Method</strong>: GET</p>\n</li>\n<li><p><strong>Path Parameter</strong>:</p>\n<ul>\n<li><code>eventId</code> [Required] (string): The unique identifier of the event.</li>\n</ul>\n</li>\n<li><p><strong>Query Parameter</strong>:</p>\n<ul>\n<li><code>channel [Optional]</code> (string): The sales channel to filter offers.</li>\n</ul>\n</li>\n<li><p><strong>Headers</strong>:</p>\n<ul>\n<li><code>X-API-Key</code> [Required] (string): API key for authentication.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the API will return a JSON object structured as follows:</p>\n<ul>\n<li><p><strong>success</strong> (boolean): Indicates whether the request was successful.</p>\n</li>\n<li><p><strong>data</strong> (object): Contains different categories of offers, each represented as an array:</p>\n<ul>\n<li><p><strong>bottleservice</strong></p>\n</li>\n<li><p><strong>ticket</strong></p>\n</li>\n<li><p><strong>guestlist</strong></p>\n</li>\n<li><p><strong>invitation</strong></p>\n</li>\n<li><p><strong>season_pass</strong></p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Each offer object contains:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier of the offer.</p>\n</li>\n<li><p><strong>status</strong> (string): Current status of the offer (e.g., <code>active</code>, <code>hidden</code>).</p>\n</li>\n<li><p><strong>priceAmount</strong> (integer): Total price.</p>\n</li>\n<li><p><strong>onlinePrice</strong> (integer): Price for online purchases.</p>\n</li>\n<li><p><strong>offlinePrice</strong> (integer): Price for offline purchases.</p>\n</li>\n<li><p><strong>priceCurrency</strong> (string): Currency code (e.g., <code>EUR</code>, <code>USD</code>).</p>\n</li>\n<li><p><strong>quantity</strong> (integer or null): Total available quantity.</p>\n</li>\n<li><p><strong>soldItems</strong> (integer): Number of items sold.</p>\n</li>\n<li><p><strong>minItemsPerTransaction</strong> (integer): Minimum purchase per transaction.</p>\n</li>\n<li><p><strong>maxItemsPerTransaction</strong> (integer): Maximum purchase per transaction.</p>\n</li>\n<li><p><strong>guestCapacity</strong> (integer or null): Maximum guests allowed.</p>\n</li>\n<li><p><strong>isSalesClosed</strong> (boolean): If sales are closed.</p>\n</li>\n<li><p><strong>isSoldOut</strong> (boolean): If sold out.</p>\n</li>\n<li><p><strong>isHidden</strong> (boolean): If hidden from public.</p>\n</li>\n<li><p><strong>isPrivate</strong> (boolean): If offer is private.</p>\n</li>\n<li><p><strong>isNominative</strong> (boolean): If nominative.</p>\n</li>\n<li><p><strong>name</strong> (object): Localized name (by language code).</p>\n</li>\n<li><p><strong>description</strong> (object): Localized description (by language code).</p>\n</li>\n<li><p><strong>bookingFormFields</strong> (array): List of extra fields required at booking.</p>\n</li>\n<li><p><strong>ticketHolderFormFields</strong> (array): List of fields required for each ticket holder.</p>\n</li>\n<li><p><strong>eventId</strong> (string): Identifier of the related event.</p>\n</li>\n<li><p><strong>updatedAt</strong> (integer): Unix timestamp of the last update.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that you include a valid <code>X-API-Key</code> header.</p>\n</li>\n<li><p>The timestamps provided in the response are in Unix format.</p>\n</li>\n<li><p>If no offers are available, the arrays inside <code>data</code> will be empty, but <code>success</code> will still be <code>true</code>.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","name":"Partner Tickets API","type":"folder"}},"urlObject":{"path":["v2","events",":eventId","offers"],"host":["{{partner.xceed.me}}"],"query":[{"description":{"content":"<p>Uuid or slug of the channel [Optional]</p>\n","type":"text/plain"},"key":"channel","value":"the-music-sanctuary"}],"variable":[{"type":"any","value":"220398a8-500c-11f0-bcc9-0242ac11000d","key":"eventId"}]}},"response":[{"id":"b36fd518-2514-4a1b-a513-677d02ca4ed5","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":{"raw":"{{partner.xceed.me}}/v2/events/:eventId/offers?channel=the-music-sanctuary","host":["{{partner.xceed.me}}"],"path":["v2","events",":eventId","offers"],"query":[{"key":"channel","value":"the-music-sanctuary","description":"Uuid or slug of the channel [Optional]"}],"variable":[{"key":"eventId","value":"220398a8-500c-11f0-bcc9-0242ac11000d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"bottleservice\": [\n            {\n                \"id\": \"11111111-aaaa-4bbb-cccc-222222222222\",\n                \"status\": \"active\",\n                \"priceAmount\": 300,\n                \"onlinePrice\": 300,\n                \"offlinePrice\": 0,\n                \"priceCurrency\": \"EUR\",\n                \"quantity\": null,\n                \"soldItems\": 2,\n                \"minItemsPerTransaction\": 1,\n                \"maxItemsPerTransaction\": 5,\n                \"guestCapacity\": 6,\n                \"isSalesClosed\": false,\n                \"isSoldOut\": false,\n                \"isHidden\": false,\n                \"isPrivate\": false,\n                \"isNominative\": false,\n                \"name\": {\n                    \"en\": null\n                },\n                \"description\": {\n                    \"en\": null\n                },\n                \"bookingFormFields\": [],\n                \"ticketHolderFormFields\": [],\n                \"eventId\": \"abcd1234-5678-90ef-ghij-987654321000\",\n                \"updatedAt\": 1758000000\n            }\n        ],\n        \"ticket\": [\n            {\n                \"id\": \"22222222-bbbb-4ccc-dddd-333333333333\",\n                \"status\": \"active\",\n                \"priceAmount\": 25,\n                \"onlinePrice\": 20,\n                \"offlinePrice\": 25,\n                \"priceCurrency\": \"EUR\",\n                \"quantity\": 100,\n                \"soldItems\": 45,\n                \"minItemsPerTransaction\": 1,\n                \"maxItemsPerTransaction\": 10,\n                \"guestCapacity\": null,\n                \"isSalesClosed\": false,\n                \"isSoldOut\": false,\n                \"isHidden\": false,\n                \"isPrivate\": false,\n                \"isNominative\": false,\n                \"name\": {\n                    \"en\": null\n                },\n                \"description\": {\n                    \"en\": null\n                },\n                \"bookingFormFields\": [],\n                \"ticketHolderFormFields\": [],\n                \"eventId\": \"abcd1234-5678-90ef-ghij-987654321000\",\n                \"updatedAt\": 1758000001\n            }\n        ],\n        \"guestlist\": [\n            {\n                \"id\": \"33333333-cccc-4ddd-eeee-444444444444\",\n                \"status\": \"active\",\n                \"priceAmount\": 0,\n                \"onlinePrice\": 0,\n                \"offlinePrice\": 0,\n                \"priceCurrency\": \"EUR\",\n                \"quantity\": 50,\n                \"soldItems\": 10,\n                \"minItemsPerTransaction\": 1,\n                \"maxItemsPerTransaction\": 1,\n                \"guestCapacity\": 1,\n                \"isSalesClosed\": false,\n                \"isSoldOut\": false,\n                \"isHidden\": false,\n                \"isPrivate\": false,\n                \"isNominative\": true,\n                \"name\": {\n                    \"en\": null\n                },\n                \"description\": {\n                    \"en\": null\n                },\n                \"bookingFormFields\": [],\n                \"ticketHolderFormFields\": [],\n                \"eventId\": \"abcd1234-5678-90ef-ghij-987654321000\",\n                \"updatedAt\": 1758000002\n            }\n        ],\n        \"invitation\": [\n            {\n                \"id\": \"44444444-dddd-4eee-ffff-555555555555\",\n                \"status\": \"hidden\",\n                \"priceAmount\": 0,\n                \"onlinePrice\": 0,\n                \"offlinePrice\": 0,\n                \"priceCurrency\": \"EUR\",\n                \"quantity\": 10,\n                \"soldItems\": 3,\n                \"minItemsPerTransaction\": 1,\n                \"maxItemsPerTransaction\": 1,\n                \"guestCapacity\": 2,\n                \"isSalesClosed\": false,\n                \"isSoldOut\": false,\n                \"isHidden\": true,\n                \"isPrivate\": true,\n                \"isNominative\": true,\n                \"name\": {\n                    \"en\": null\n                },\n                \"description\": {\n                    \"en\": null\n                },\n                \"bookingFormFields\": [],\n                \"ticketHolderFormFields\": [],\n                \"eventId\": \"abcd1234-5678-90ef-ghij-987654321000\",\n                \"updatedAt\": 1758000003\n            }\n        ],\n        \"season_pass\": [\n            {\n                \"id\": \"55555555-eeee-4fff-aaaa-666666666666\",\n                \"status\": \"active\",\n                \"priceAmount\": 120,\n                \"onlinePrice\": 100,\n                \"offlinePrice\": 120,\n                \"priceCurrency\": \"EUR\",\n                \"quantity\": 200,\n                \"soldItems\": 50,\n                \"minItemsPerTransaction\": 1,\n                \"maxItemsPerTransaction\": 2,\n                \"guestCapacity\": null,\n                \"isSalesClosed\": false,\n                \"isSoldOut\": false,\n                \"isHidden\": false,\n                \"isPrivate\": false,\n                \"isNominative\": false,\n                \"name\": {\n                    \"en\": null\n                },\n                \"description\": {\n                    \"en\": null\n                },\n                \"bookingFormFields\": [],\n                \"ticketHolderFormFields\": [],\n                \"eventId\": \"abcd1234-5678-90ef-ghij-987654321000\",\n                \"updatedAt\": 1758000004\n            }\n        ]\n    }\n}"},{"id":"ef3867e5-40c7-40bf-8bb2-27bac522e77d","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":{"raw":"{{partner.xceed.me}}/v2/events/:eventId/offers?channel=the-music-sanctuary","host":["{{partner.xceed.me}}"],"path":["v2","events",":eventId","offers"],"query":[{"key":"channel","value":"the-music-sanctuary","description":"Uuid or slug of the channel [Optional]"}],"variable":[{"key":"eventId","value":"220398a8-500c-11f0-bcc9-0242ac11000d"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Unauthorized API private key\",\n        \"code\": 0\n    }\n}"}],"_postman_id":"83b398e7-4b69-40d0-b071-47345711bb17"},{"name":"Tickets","id":"8cf86505-be86-4606-bf77-e5e2143eab25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":"{{partner.xceed.me}}/v1/tickets?offset=0&limit=50&updatedAtFrom=1770193974&events={eventId}","description":"<p>This endpoint allows you to retrieve a list of tickets for a specific event from the Xceed platform using the provided API-Key.</p>\n<p>Unlike <code>v1/booking</code>, where tickets are nested under a single booking resource, in this endpoint tickets are returned as separate objects, one per ticket, allowing direct access to ticket-level data.</p>\n<p><strong>Recommended use</strong>: Ideal for <strong>access control</strong> and <strong>cashless</strong></p>\n<h3 id=\"staging\"><strong>Staging</strong>:</h3>\n<p><code>https://partner.staging.xceed.me/v1/tickets</code></p>\n<h3 id=\"response-attributes\">Response Attributes</h3>\n<p>Upon a successful request, the API will return a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>success</strong> (boolean): Indicates whether the request was successful.</p>\n</li>\n<li><p><strong>data</strong> (array): Contains a list of ticket objects, each with the following properties:</p>\n<ul>\n<li><p><strong>qrCode</strong> (string): The QR code associated with the ticket.</p>\n</li>\n<li><p><strong>firstName</strong> (string): The first name of the ticket holder.</p>\n</li>\n<li><p><strong>lastName</strong> (string): The last name of the ticket holder.</p>\n</li>\n<li><p><strong>email</strong> (string|null): The email of the ticket holder, if provided.</p>\n</li>\n<li><p><strong>phone</strong> (string|null): The phone number of the ticket holder, if provided.</p>\n</li>\n<li><p><strong>drinksIncluded</strong> (integer): The number of drinks included with the ticket.</p>\n</li>\n<li><p><strong>customFields</strong> (array): An array of custom fields associated with the ticket.</p>\n</li>\n<li><p><strong>hasCheckedIn</strong> (boolean): Indicates if the ticket holder has checked in.</p>\n</li>\n<li><p><strong>checkedInTime</strong> (integer|null): The timestamp of when the ticket holder checked in, if applicable.</p>\n</li>\n<li><p><strong>isActive</strong> (boolean): Indicates if the ticket is still active.</p>\n</li>\n<li><p><strong>offer</strong> (object): Contains details about the offer associated with the ticket:</p>\n<ul>\n<li><p><strong>id</strong> (integer): Unique identifier for the offer.</p>\n</li>\n<li><p><strong>uuid</strong> (string): Universally unique identifier for the offer.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of the offer.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the offer.</p>\n</li>\n<li><p><strong>description</strong> (string): A description of the offer.</p>\n</li>\n<li><p><strong>price</strong> (object): Contains pricing details:</p>\n<ul>\n<li><p><strong>amount</strong> (string): The total amount for the offer.</p>\n</li>\n<li><p><strong>onlinePrice</strong> (integer): The online price for the offer.</p>\n</li>\n<li><p><strong>offlinePrice</strong> (integer): The offline price for the offer.</p>\n</li>\n<li><p><strong>currency</strong> (string): The currency of the prices.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>guestCapacity</strong> (integer|null): The maximum number of guests allowed.</p>\n</li>\n<li><p><strong>tableLabel</strong> (string|null): The label for the table associated with the offer.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>booking</strong> (object): Contains details about the booking:</p>\n<ul>\n<li><p><strong>bookingId</strong> (integer): Unique identifier for the booking.</p>\n</li>\n<li><p><strong>bookingUuid</strong> (string): Universally unique identifier for the booking.</p>\n</li>\n<li><p><strong>purchasedAt</strong> (integer): Timestamp of when the booking was made.</p>\n</li>\n<li><p><strong>updatedAt</strong> (integer): Timestamp of when the booking was last updated.</p>\n</li>\n<li><p><strong>createdBy</strong> (string): Identifier of the user who created the booking.</p>\n</li>\n<li><p><strong>paymentId</strong> (string|null): The payment identifier, if applicable.</p>\n</li>\n<li><p><strong>firstName</strong> (string): The first name of the person who made the booking.</p>\n</li>\n<li><p><strong>lastName</strong> (string): The last name of the person who made the booking.</p>\n</li>\n<li><p><strong>email</strong> (string|null): The email of the person who made the booking, if provided.</p>\n</li>\n<li><p><strong>phone</strong> (string|null): The phone number of the person who made the booking, if provided.</p>\n</li>\n<li><p><strong>confirmed</strong> (boolean): Indicates if the booking is confirmed.</p>\n</li>\n<li><p><strong>language</strong> (string): The preferred language of the booking.</p>\n</li>\n<li><p><strong>nationality</strong> (string|null): The nationality of the person who made the booking, if provided.</p>\n</li>\n<li><p><strong>geolocation</strong> (object): Contains geolocation details:</p>\n<ul>\n<li><p><strong>country</strong> (string): The country of the ticket holder.</p>\n</li>\n<li><p><strong>region</strong> (string): The region of the ticket holder.</p>\n</li>\n<li><p><strong>city</strong> (string): The city of the ticket holder.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>customFields</strong> (array): An array of custom fields associated with the booking.</p>\n</li>\n<li><p><strong>channel</strong> (object): Contains details about the booking channel:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the channel.</p>\n</li>\n<li><p><strong>legacyId</strong> (integer): Legacy identifier for the channel.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the channel.</p>\n</li>\n<li><p><strong>slug</strong> (string): The slug associated with the channel.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>addOns</strong> (array): Contains details about any add-ons associated with the ticket:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the add-on.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of the add-on.</p>\n</li>\n<li><p><strong>eventId</strong> (string): The event identifier associated with the add-on.</p>\n</li>\n<li><p><strong>fixedPrice</strong> (object): Contains pricing details for the add-on:</p>\n<ul>\n<li><p><strong>amount</strong> (integer): The fixed price of the add-on.</p>\n</li>\n<li><p><strong>currency</strong> (string): The currency of the price.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>isRefundable</strong> (boolean): Indicates if the add-on is refundable.</p>\n</li>\n<li><p><strong>quantity</strong> (integer|null): The quantity of the add-on.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the add-on.</p>\n</li>\n<li><p><strong>description</strong> (string): A description of the add-on.</p>\n</li>\n<li><p><strong>itemsIncluded</strong> (integer): The number of items included with the add-on.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that you have the necessary permissions to access this endpoint.</p>\n</li>\n<li><p>If no tickets are available for the specified event, the <code>data</code> array will be empty, but <code>success</code> will still be <code>true</code>.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","name":"Partner Tickets API","type":"folder"}},"urlObject":{"path":["v1","tickets"],"host":["{{partner.xceed.me}}"],"query":[{"description":{"content":"<p>integer (default = 0) - Offset used for pagination [Required]</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"<p>integer (default = 10, max = 100) - Max number of elements [Required]</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"disabled":true,"description":{"content":"<p>timestamp - Filter by event date. If only startTime is provided, returns tickets for events from startTime to infinite. If no startTime is provided, returns tickets to all events (past ones too). [Optional]</p>\n","type":"text/plain"},"key":"startTime","value":"1767262135"},{"disabled":true,"description":{"content":"<p>timestamp - Filter by event date. if only endTime is provided it will return tickets from past events to endTime.</p>\n","type":"text/plain"},"key":"endTime","value":"1893502693"},{"disabled":true,"description":{"content":"<p>timestamp - Filter by booking date. If only createdAtFrom is provided it will return tickets from createdAtFrom to infinite. [Optional]</p>\n","type":"text/plain"},"key":"createdAtFrom","value":"1756380556"},{"disabled":true,"description":{"content":"<p>timestamp - Filter by booking date. If only createdAtFrom is provided it will return tickets from past to createdAtTo. [Optional]</p>\n","type":"text/plain"},"key":"createdAtTo","value":"1893502693"},{"disabled":true,"description":{"content":"<p>timestamp - Return tickets updated before value received. [Optional] </p>\n","type":"text/plain"},"key":"updatedAtFrom","value":"1756380556"},{"disabled":true,"description":{"content":"<p>slug/uuid - Filter by venues separated by comma. [Optional]</p>\n","type":"text/plain"},"key":"venues","value":"the-sanctuary"},{"disabled":true,"description":{"content":"<p>boolean - If it’s set to true it will also return the canceled tickets. Default: false. [Optional]</p>\n","type":"text/plain"},"key":"includeCancelledTickets","value":"true"},{"disabled":true,"description":{"content":"<p>string - returns tickets associated with the provided email. [Optional]</p>\n","type":"text/plain"},"key":"email","value":"johndoo@xceed.me"},{"disabled":true,"description":{"content":"<p>Order by event date. To be combined with sort [Optional]</p>\n","type":"text/plain"},"key":"orderBy","value":"date"},{"disabled":true,"description":{"content":"<p>string - Default: DESC. [Optional]</p>\n","type":"text/plain"},"key":"sort","value":"DESC"},{"key":"updatedAtFrom","value":"1770193974"},{"key":"events","value":"{eventId}"}],"variable":[]}},"response":[{"id":"a664f247-9549-452e-8134-a62dd70b435e","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":{"raw":"{{partner.xceed.me}}/v1/tickets?offset=0&limit=50&events=220398a8-500c-11f0-bcc9-0242ac11000d&updatedAtFrom=1770193974","host":["{{partner.xceed.me}}"],"path":["v1","tickets"],"query":[{"key":"offset","value":"0","description":"integer (default = 0) - Offset used for pagination [Required]"},{"key":"limit","value":"50","description":"integer (default = 50) - Max number of elements [Required]"},{"key":"events","value":"220398a8-500c-11f0-bcc9-0242ac11000d","description":"string. event unique indentifier. [Optional]"},{"key":"startTime","value":"1767262135","description":"timestamp - Filter by event date. If only startTime is provided, returns tickets for events from startTime to infinite. If no startTime is provided, returns tickets to all events (past ones too). [Optional]","disabled":true},{"key":"endTime","value":"1893502693","description":"timestamp - Filter by event date. if only endTime is provided it will return tickets from past events to endTime.","disabled":true},{"key":"venues","value":"the-sanctuary","description":"slug/uuid - Filter by venues separated by comma. [Optional]","disabled":true},{"key":"createdAtFrom","value":"1756380556","description":"timestamp - Filter by booking date. If only createdAtFrom is provided it will return tickets from createdAtFrom to infinite. [Optional]","type":"text","disabled":true},{"key":"createdAtTo","value":"1893502693","description":"timestamp - Filter by booking date. If only createdAtFrom is provided it will return tickets from past to createdAtTo. [Optional]","type":"text","disabled":true},{"key":"includeCancelledTickets","value":"true","description":"boolean - If it’s set to true it will also return the canceled tickets. Default: false. [Optional]","disabled":true},{"key":"updatedAtFrom","value":"1770193974"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 11:41:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Thu, 28 Aug 2025 11:41:29 GMT"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Cache-Control, Content-Type, DNT, If-Modified-Since, Keep-Alive,Origin, User-Agent,X-Requested-With, credentials, Content-Disposition, Responsetype"},{"key":"Access-Control-Expose-Headers","value":"Content-Disposition"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"qrCode\": \"30c6dd7bc78dedd08ba722a56ac719\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Doo\",\n            \"email\": null,\n            \"phone\": null,\n            \"drinksIncluded\": 0,\n            \"customFields\": [],\n            \"hasCheckedIn\": false,\n            \"checkedInTime\": null,\n            \"isActive\": true,\n            \"offer\": {\n                \"id\": 930577,\n                \"uuid\": \"f03f65da-cbb3-4a84-af5d-b42c9fe90945\",\n                \"type\": \"ticket\",\n                \"name\": \"Early Bird\",\n                \"description\": \"Limited availabilty.\",\n                \"price\": {\n                    \"amount\": \"30.00\",\n                    \"onlinePrice\": 30,\n                    \"offlinePrice\": 0,\n                    \"currency\": \"EUR\"\n                },\n                \"guestCapacity\": null,\n                \"tableLabel\": null\n            },\n            \"booking\": {\n                \"bookingId\": 17511684,\n                \"bookingUuid\": \"8532038f-f543-4ce5-be49-ed1dee66c072\",\n                \"purchasedAt\": 1756380788,\n                \"updatedAt\": 1756380788,\n                \"createdBy\": \"luca@xceed.me\",\n                \"paymentId\": null,\n                \"firstName\": \"John\",\n                \"lastName\": \"Doo\",\n                \"email\": \"johndoo@xceed.me\",\n                \"phone\": null,\n                \"confirmed\": true,\n                \"language\": \"en\",\n                \"nationality\": null,\n                \"geolocation\": {\n                    \"country\": \"Germany\",\n                    \"region\": \"Hesse\",\n                    \"city\": \"Frankfurt\"\n                },\n                \"customFields\": [],\n                \"channel\": {\n                    \"id\": \"0230ed12-dd2e-11ed-bff4-0ac1b97f4b58\",\n                    \"legacyId\": 68404,\n                    \"name\": \"The Music Sanctuary\",\n                    \"slug\": \"the-music-sanctuary\"\n                }\n            },\n            \"addOns\": [\n                {\n                    \"id\": \"5eceda4f-5293-4a9e-8f50-63aaf2daa770\",\n                    \"type\": \"accommodation\",\n                    \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                    \"fixedPrice\": {\n                        \"amount\": 110,\n                        \"currency\": \"EUR\"\n                    },\n                    \"isRefundable\": true,\n                    \"quantity\": null,\n                    \"name\": \"Accommodation\",\n                    \"description\": \"Lodging service. Valid for one night at Destino Ibiza hotel. Room with double bed. Check out at 11am.\",\n                    \"itemsIncluded\": 0\n                }\n            ]\n        },\n        {\n            \"qrCode\": \"bcd438295d56589fae80d02a3ffaf2\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Doo\",\n            \"email\": null,\n            \"phone\": null,\n            \"drinksIncluded\": 0,\n            \"customFields\": [],\n            \"hasCheckedIn\": false,\n            \"checkedInTime\": null,\n            \"isActive\": true,\n            \"offer\": {\n                \"id\": 930577,\n                \"uuid\": \"f03f65da-cbb3-4a84-af5d-b42c9fe90945\",\n                \"type\": \"ticket\",\n                \"name\": \"Early Bird\",\n                \"description\": \"Limited availabilty.\",\n                \"price\": {\n                    \"amount\": \"30.00\",\n                    \"onlinePrice\": 30,\n                    \"offlinePrice\": 0,\n                    \"currency\": \"EUR\"\n                },\n                \"guestCapacity\": null,\n                \"tableLabel\": null\n            },\n            \"booking\": {\n                \"bookingId\": 17511684,\n                \"bookingUuid\": \"8532038f-f543-4ce5-be49-ed1dee66c072\",\n                \"purchasedAt\": 1756380788,\n                \"updatedAt\": 1756380788,\n                \"createdBy\": \"luca@xceed.me\",\n                \"paymentId\": null,\n                \"firstName\": \"John\",\n                \"lastName\": \"Doo\",\n                \"email\": \"johndoo@xceed.me\",\n                \"phone\": null,\n                \"confirmed\": true,\n                \"language\": \"en\",\n                \"nationality\": null,\n                \"geolocation\": {\n                    \"country\": \"Germany\",\n                    \"region\": \"Hesse\",\n                    \"city\": \"Frankfurt\"\n                },\n                \"customFields\": [],\n                \"channel\": {\n                    \"id\": \"0230ed12-dd2e-11ed-bff4-0ac1b97f4b58\",\n                    \"legacyId\": 68404,\n                    \"name\": \"The Music Sanctuary\",\n                    \"slug\": \"the-music-sanctuary\"\n                }\n            },\n            \"addOns\": [\n                {\n                    \"id\": \"5eceda4f-5293-4a9e-8f50-63aaf2daa770\",\n                    \"type\": \"accommodation\",\n                    \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                    \"fixedPrice\": {\n                        \"amount\": 110,\n                        \"currency\": \"EUR\"\n                    },\n                    \"isRefundable\": true,\n                    \"quantity\": null,\n                    \"name\": \"Accommodation\",\n                    \"description\": \"Lodging service. Valid for one night at Destino Ibiza hotel. Room with double bed. Check out at 11am.\",\n                    \"itemsIncluded\": 0\n                }\n            ]\n        },\n        {\n            \"qrCode\": \"964dceb35c29cd467ae87cc3f0099c\",\n            \"firstName\": \"Juan\",\n            \"lastName\": \"Riquelme\",\n            \"email\": null,\n            \"phone\": null,\n            \"drinksIncluded\": 0,\n            \"customFields\": [],\n            \"hasCheckedIn\": false,\n            \"checkedInTime\": null,\n            \"isActive\": true,\n            \"offer\": {\n                \"id\": 930576,\n                \"uuid\": \"ab8120f1-543d-44f9-91af-b6e37596c316\",\n                \"type\": \"ticket\",\n                \"name\": \"VIP EXPEDITED ENTRY\",\n                \"description\": \"Separate Priority line with no queueing time. Individual ticket with drink, non-refundable.\",\n                \"price\": {\n                    \"amount\": \"100.00\",\n                    \"onlinePrice\": 100,\n                    \"offlinePrice\": 0,\n                    \"currency\": \"EUR\"\n                },\n                \"guestCapacity\": null,\n                \"tableLabel\": null\n            },\n            \"booking\": {\n                \"bookingId\": 17511789,\n                \"bookingUuid\": \"c4573c3d-2dcb-41a2-b0b0-213ba0109f79\",\n                \"purchasedAt\": 1756381269,\n                \"updatedAt\": 1756381270,\n                \"createdBy\": \"luca@xceed.me\",\n                \"paymentId\": null,\n                \"firstName\": \"Juan\",\n                \"lastName\": \"Riquelme\",\n                \"email\": \"jr@xceed.me\",\n                \"phone\": null,\n                \"confirmed\": true,\n                \"language\": \"en\",\n                \"nationality\": null,\n                \"geolocation\": {\n                    \"country\": \"Germany\",\n                    \"region\": \"Hesse\",\n                    \"city\": \"Frankfurt\"\n                },\n                \"customFields\": [],\n                \"channel\": {\n                    \"id\": \"0230ed12-dd2e-11ed-bff4-0ac1b97f4b58\",\n                    \"legacyId\": 68404,\n                    \"name\": \"The Music Sanctuary\",\n                    \"slug\": \"the-music-sanctuary\"\n                }\n            },\n            \"addOns\": [\n                {\n                    \"id\": \"789bc493-a5df-4431-90ea-d9a22a69c2f0\",\n                    \"type\": \"transport\",\n                    \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                    \"fixedPrice\": {\n                        \"amount\": 5,\n                        \"currency\": \"EUR\"\n                    },\n                    \"isRefundable\": true,\n                    \"quantity\": null,\n                    \"name\": \"Transport\",\n                    \"description\": \"Bus Service. Includes round trip from The Sanctuary to the center of the city.\",\n                    \"itemsIncluded\": 0\n                }\n            ]\n        },\n        {\n            \"qrCode\": \"01e1713a33694afab7dc35679e67c2\",\n            \"firstName\": \"Anna\",\n            \"lastName\": \"Savona\",\n            \"email\": null,\n            \"phone\": null,\n            \"drinksIncluded\": 0,\n            \"customFields\": [],\n            \"hasCheckedIn\": false,\n            \"checkedInTime\": null,\n            \"isActive\": true,\n            \"offer\": {\n                \"id\": 930576,\n                \"uuid\": \"ab8120f1-543d-44f9-91af-b6e37596c316\",\n                \"type\": \"ticket\",\n                \"name\": \"VIP EXPEDITED ENTRY\",\n                \"description\": \"Separate Priority line with no queueing time. Individual ticket with drink, non-refundable.\",\n                \"price\": {\n                    \"amount\": \"100.00\",\n                    \"onlinePrice\": 100,\n                    \"offlinePrice\": 0,\n                    \"currency\": \"EUR\"\n                },\n                \"guestCapacity\": null,\n                \"tableLabel\": null\n            },\n            \"booking\": {\n                \"bookingId\": 17511789,\n                \"bookingUuid\": \"c4573c3d-2dcb-41a2-b0b0-213ba0109f79\",\n                \"purchasedAt\": 1756381269,\n                \"updatedAt\": 1756381270,\n                \"createdBy\": \"luca@xceed.me\",\n                \"paymentId\": null,\n                \"firstName\": \"Juan\",\n                \"lastName\": \"Riquelme\",\n                \"email\": \"jr@xceed.me\",\n                \"phone\": null,\n                \"confirmed\": true,\n                \"language\": \"en\",\n                \"nationality\": null,\n                \"geolocation\": {\n                    \"country\": \"Germany\",\n                    \"region\": \"Hesse\",\n                    \"city\": \"Frankfurt\"\n                },\n                \"customFields\": [],\n                \"channel\": {\n                    \"id\": \"0230ed12-dd2e-11ed-bff4-0ac1b97f4b58\",\n                    \"legacyId\": 68404,\n                    \"name\": \"The Music Sanctuary\",\n                    \"slug\": \"the-music-sanctuary\"\n                }\n            },\n            \"addOns\": [\n                {\n                    \"id\": \"789bc493-a5df-4431-90ea-d9a22a69c2f0\",\n                    \"type\": \"transport\",\n                    \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                    \"fixedPrice\": {\n                        \"amount\": 5,\n                        \"currency\": \"EUR\"\n                    },\n                    \"isRefundable\": true,\n                    \"quantity\": null,\n                    \"name\": \"Transport\",\n                    \"description\": \"Bus Service. Includes round trip from The Sanctuary to the center of the city.\",\n                    \"itemsIncluded\": 0\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"8cf86505-be86-4606-bf77-e5e2143eab25"},{"name":"Bookings","id":"68ef9c5c-1fca-4cc9-a3e0-41826358a4b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":"{{partner.xceed.me}}/v1/bookings","description":"<p>This endpoint allows you to retrieve a <strong>list of bookings</strong> (and all the details of the tickets within them) for a specific event from the Xceed platform using the provided API-Key.</p>\n<p>In <code>/v1/bookings</code>, <strong>tickets are nested under a single booking resource</strong>. All tickets for a booking are grouped together inside the booking object, rather than being returned as separate ticket-level objects.</p>\n<p><strong>Recommended use</strong>: Ideal for <strong>statistics and reporting</strong> (aggregated booking-level data).</p>\n<h3 id=\"staging\">Staging:</h3>\n<p><code>https://partner.staging.xceed.me}}/v1/bookings</code></p>\n<h3 id=\"response-attributes\">Response Attributes:</h3>\n<p>Upon a successful request, the API will return a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>success</strong> (boolean): Indicates whether the request was successful.</p>\n</li>\n<li><p><strong>data</strong> (array): Contains a list of booking objects, each with the following properties:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the booking.</p>\n</li>\n<li><p><strong>legacyId</strong> (integer): Legacy identifier for the booking.</p>\n</li>\n<li><p><strong>buyer</strong> (object): Contains details about the buyer:</p>\n<ul>\n<li><p><strong>firstName</strong> (string): The first name of the buyer.</p>\n</li>\n<li><p><strong>lastName</strong> (string): The last name of the buyer.</p>\n</li>\n<li><p><strong>email</strong> (string|null): The email of the buyer, if provided.</p>\n</li>\n<li><p><strong>phone</strong> (string|null): The phone number of the buyer, if provided.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>quantity</strong> (integer): The quantity of tickets booked.</p>\n</li>\n<li><p><strong>passes</strong> (array): Contains details about the passes associated with the booking:</p>\n<ul>\n<li><p><strong>qrCode</strong> (string): The QR code associated with the pass.</p>\n</li>\n<li><p><strong>firstName</strong> (string): The first name of the pass holder.</p>\n</li>\n<li><p><strong>lastName</strong> (string): The last name of the pass holder.</p>\n</li>\n<li><p><strong>email</strong> (string|null): The email of the pass holder, if provided.</p>\n</li>\n<li><p><strong>phone</strong> (string|null): The phone number of the pass holder, if provided.</p>\n</li>\n<li><p><strong>drinksIncluded</strong> (integer): The number of drinks included with the pass.</p>\n</li>\n<li><p><strong>customFields</strong> (array): An array of custom fields associated with the pass.</p>\n</li>\n<li><p><strong>hasCheckedIn</strong> (boolean): Indicates if the pass holder has checked in.</p>\n</li>\n<li><p><strong>checkedInTime</strong> (integer|null): The timestamp of when the pass holder checked in, if applicable.</p>\n</li>\n<li><p><strong>isActive</strong> (boolean): Indicates if the pass is still active.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>event</strong> (object): Contains details about the event associated with the booking:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the event.</p>\n</li>\n<li><p><strong>legacyId</strong> (integer): Legacy identifier for the event.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the event.</p>\n</li>\n<li><p><strong>slug</strong> (string): The slug associated with the event.</p>\n</li>\n<li><p><strong>startingTime</strong> (integer): The starting time of the event.</p>\n</li>\n<li><p><strong>endingTime</strong> (integer): The ending time of the event.</p>\n</li>\n<li><p><strong>coverUrl</strong> (string): URL for the cover image of the event.</p>\n</li>\n<li><p><strong>venue</strong> (object): Contains details about the venue:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the venue.</p>\n</li>\n<li><p><strong>legacyId</strong> (integer): Legacy identifier for the venue.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the venue.</p>\n</li>\n<li><p><strong>slug</strong> (string): The slug associated with the venue.</p>\n</li>\n<li><p><strong>coverUrl</strong> (string): URL for the cover image of the venue.</p>\n</li>\n<li><p><strong>logoUrl</strong> (string): URL for the logo of the venue.</p>\n</li>\n<li><p><strong>coordinates</strong> (object): Contains latitude and longitude of the venue.</p>\n</li>\n<li><p><strong>city</strong> (object): Contains details about the city:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the city.</p>\n</li>\n<li><p><strong>legacyId</strong> (integer): Legacy identifier for the city.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the city.</p>\n</li>\n<li><p><strong>slug</strong> (string): The slug associated with the city.</p>\n</li>\n<li><p><strong>coverUrl</strong> (string): URL for the cover image of the city.</p>\n</li>\n<li><p><strong>timezone</strong> (string): The timezone of the city.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>offer</strong> (object): Contains details about the offer associated with the booking:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the offer.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of the offer.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the offer.</p>\n</li>\n<li><p><strong>description</strong> (string): A description of the offer.</p>\n</li>\n<li><p><strong>price</strong> (object): Contains pricing details:</p>\n<ul>\n<li><p><strong>amount</strong> (string): The total amount for the offer.</p>\n</li>\n<li><p><strong>onlinePrice</strong> (integer): The online price for the offer.</p>\n</li>\n<li><p><strong>offlinePrice</strong> (integer): The offline price for the offer.</p>\n</li>\n<li><p><strong>currency</strong> (string): The currency of the prices.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>guestCapacity</strong> (integer|null): The maximum number of guests allowed.</p>\n</li>\n<li><p><strong>tableLabel</strong> (string|null): The label for the table associated with the offer.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>channel</strong> (object): Contains details about the booking channel:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the channel.</p>\n</li>\n<li><p><strong>legacyId</strong> (integer): Legacy identifier for the channel.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the channel.</p>\n</li>\n<li><p><strong>slug</strong> (string): The slug associated with the channel.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>purchasedAt</strong> (integer): Timestamp of when the booking was made.</p>\n</li>\n<li><p><strong>paymentId</strong> (string|null): The payment identifier, if applicable.</p>\n</li>\n<li><p><strong>confirmed</strong> (boolean): Indicates if the booking is confirmed.</p>\n</li>\n<li><p><strong>isOfflinePaid</strong> (boolean): Indicates if the booking was paid offline.</p>\n</li>\n<li><p><strong>createdBy</strong> (string): Identifier of the user who created the booking.</p>\n</li>\n<li><p><strong>language</strong> (string): The preferred language of the booking.</p>\n</li>\n<li><p><strong>nationality</strong> (string|null): The nationality of the person who made the booking, if provided.</p>\n</li>\n<li><p><strong>geolocation</strong> (object): Contains geolocation details:</p>\n<ul>\n<li><p><strong>country</strong> (string): The country of the ticket holder.</p>\n</li>\n<li><p><strong>region</strong> (string): The region of the ticket holder.</p>\n</li>\n<li><p><strong>city</strong> (string): The city of the ticket holder.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>marketingConditionsAccepted</strong> (boolean): Indicates if the marketing conditions were accepted.</p>\n</li>\n<li><p><strong>customFields</strong> (array): An array of custom fields associated with the booking.</p>\n</li>\n<li><p><strong>addOns</strong> (array): Contains details about any add-ons associated with the booking:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the add-on.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of the add-on.</p>\n</li>\n<li><p><strong>eventId</strong> (string): The event identifier associated with the add-on.</p>\n</li>\n<li><p><strong>fixedPrice</strong> (object): Contains pricing details for the add-on:</p>\n<ul>\n<li><p><strong>amount</strong> (integer): The fixed price of the add-on.</p>\n</li>\n<li><p><strong>currency</strong> (string): The currency of the price.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>isRefundable</strong> (boolean): Indicates if the add-on is refundable.</p>\n</li>\n<li><p><strong>quantity</strong> (integer|null): The quantity of the add-on.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the add-on.</p>\n</li>\n<li><p><strong>description</strong> (string): A description of the add-on.</p>\n</li>\n<li><p><strong>itemsIncluded</strong> (integer): The number of items included with the add-on.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that you have the necessary permissions to access this endpoint.</p>\n</li>\n<li><p>If no bookings are available for the specified event, the <code>data</code> array will be empty, but <code>success</code> will still be <code>true</code>.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","name":"Partner Tickets API","type":"folder"}},"urlObject":{"path":["v1","bookings"],"host":["{{partner.xceed.me}}"],"query":[{"disabled":true,"description":{"content":"<p>integer (default = 0) - Offset used for pagination [Required]</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>integer (default = 10, max = 100) - Max number of elements [Required]</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"disabled":true,"description":{"content":"<p>timestamp - Filter by event date. If only startTime is provided, returns tickets for events from startTime to infinite. If no startTime is provided, returns tickets to all events (past ones too). [Optional]</p>\n","type":"text/plain"},"key":"startTime","value":"1767262135"},{"disabled":true,"description":{"content":"<p>timestamp - Filter by event date. if only endTime is provided it will return tickets from past events to endTime.</p>\n","type":"text/plain"},"key":"endTime","value":"1893502693"},{"disabled":true,"description":{"content":"<p>timestamp - Filter by booking date. If only createdAtFrom is provided it will return tickets from createdAtFrom to infinite. [Optional]</p>\n","type":"text/plain"},"key":"createdAtFrom","value":"1756380556"},{"disabled":true,"description":{"content":"<p>timestamp - Filter by booking date. If only createdAtFrom is provided it will return tickets from past to createdAtTo. [Optional]</p>\n","type":"text/plain"},"key":"createdAtTo","value":"1893502693"},{"disabled":true,"description":{"content":"<p>timestamp - Return tickets updated before value received. [Optional] </p>\n","type":"text/plain"},"key":"updatedAtFrom","value":"1756380556"},{"disabled":true,"description":{"content":"<p>slug/uuid - Filter by venues separated by comma. [Optional]</p>\n","type":"text/plain"},"key":"venues","value":"the-sanctuary"},{"disabled":true,"description":{"content":"<p>string. event unique indentifier. [Optional]</p>\n","type":"text/plain"},"key":"events","value":"220398a8-500c-11f0-bcc9-0242ac11000d"},{"disabled":true,"description":{"content":"<p>boolean - If it’s set to true it will also return the canceled tickets. Default: false. [Optional]</p>\n","type":"text/plain"},"key":"includeCancelledTickets","value":"true"},{"disabled":true,"description":{"content":"<p>string - returns tickets associated with the provided email. [Optional]</p>\n","type":"text/plain"},"key":"email","value":"johndoo@xceed.me"},{"disabled":true,"description":{"content":"<p>Order by event date. To be combined with sort [Optional]</p>\n","type":"text/plain"},"key":"orderBy","value":"date"},{"disabled":true,"description":{"content":"<p>string - Default: DESC. [Optional]</p>\n","type":"text/plain"},"key":"sort","value":"DESC"}],"variable":[]}},"response":[{"id":"073686b3-a190-4308-a67b-7fae8771388f","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":{"raw":"{{partner.xceed.me}}/v1/bookings?offset=0&limit=50&events=220398a8-500c-11f0-bcc9-0242ac11000d","host":["{{partner.xceed.me}}"],"path":["v1","bookings"],"query":[{"key":"offset","value":"0","description":"integer (default = 0) - Offset used for pagination [Required]"},{"key":"limit","value":"50","description":"integer (default = 10, max = 100) - Max number of elements [Required]"},{"key":"startTime","value":"1767262135","description":"timestamp - Filter by event date. If only startTime is provided, returns tickets for events from startTime to infinite. If no startTime is provided, returns tickets to all events (past ones too). [Optional]","disabled":true},{"key":"endTime","value":"1893502693","description":"timestamp - Filter by event date. if only endTime is provided it will return tickets from past events to endTime.","disabled":true},{"key":"createdAtFrom","value":"1756380556","description":"timestamp - Filter by booking date. If only createdAtFrom is provided it will return tickets from createdAtFrom to infinite. [Optional]","type":"text","disabled":true},{"key":"createdAtTo","value":"1893502693","description":"timestamp - Filter by booking date. If only createdAtFrom is provided it will return tickets from past to createdAtTo. [Optional]","type":"text","disabled":true},{"key":"updatedAtFrom","value":"1756380556","description":"timestamp - Return tickets updated before value received. [Optional] ","disabled":true},{"key":"venues","value":"the-sanctuary","description":"slug/uuid - Filter by venues separated by comma. [Optional]","disabled":true},{"key":"events","value":"220398a8-500c-11f0-bcc9-0242ac11000d","description":"string. event unique indentifier. [Optional]"},{"key":"includeCancelledTickets","value":"true","description":"boolean - If it’s set to true it will also return the canceled tickets. Default: false. [Optional]","disabled":true},{"key":"email","value":"johndoo@xceed.me","description":"string - returns tickets associated with the provided email. [Optional]","type":"text","disabled":true},{"key":"orderBy","value":"date","description":"Order by event date. To be combined with sort [Optional]","disabled":true},{"key":"sort","value":"DESC","description":"string - Default: DESC. [Optional]","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 15:59:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Thu, 28 Aug 2025 15:59:49 GMT"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Cache-Control, Content-Type, DNT, If-Modified-Since, Keep-Alive,Origin, User-Agent,X-Requested-With, credentials, Content-Disposition, Responsetype"},{"key":"Access-Control-Expose-Headers","value":"Content-Disposition"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"id\": \"8532038f-f543-4ce5-be49-ed1dee66c072\",\n            \"legacyId\": 17511684,\n            \"buyer\": {\n                \"firstName\": \"John\",\n                \"lastName\": \"Doo\",\n                \"email\": \"johndoo@xceed.me\",\n                \"phone\": null\n            },\n            \"quantity\": 2,\n            \"passes\": [\n                {\n                    \"qrCode\": \"30c6dd7bc78dedd08ba722a56ac719\",\n                    \"firstName\": \"John\",\n                    \"lastName\": \"Doo\",\n                    \"email\": null,\n                    \"phone\": null,\n                    \"drinksIncluded\": 0,\n                    \"customFields\": [],\n                    \"hasCheckedIn\": false,\n                    \"checkedInTime\": null,\n                    \"isActive\": true\n                },\n                {\n                    \"qrCode\": \"bcd438295d56589fae80d02a3ffaf2\",\n                    \"firstName\": \"John\",\n                    \"lastName\": \"Doo\",\n                    \"email\": null,\n                    \"phone\": null,\n                    \"drinksIncluded\": 0,\n                    \"customFields\": [],\n                    \"hasCheckedIn\": false,\n                    \"checkedInTime\": null,\n                    \"isActive\": true\n                }\n            ],\n            \"event\": {\n                \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                \"legacyId\": 194931,\n                \"name\": \"Black Coffee - Every Saturday [don't touch]\",\n                \"slug\": \"black-coffee-every-saturday-dont-touch\",\n                \"startingTime\": 1818365400,\n                \"endingTime\": 1818388800,\n                \"coverUrl\": \"https://images.xceed.me/events/banners/black-coffee-every-saturday-01test-city-xceed-00ce.png\",\n                \"venue\": {\n                    \"id\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                    \"legacyId\": 7092,\n                    \"name\": \"The Sanctuary\",\n                    \"slug\": \"the-sanctuary-1\",\n                    \"coverUrl\": \"https://images.xceed.me/clubs/covers/the-music-sanctuary-club-01test-city-xceed-0328.jpg\",\n                    \"logoUrl\": \"https://images.xceed.me/clubs/logos/the-music-sanctuary-club-01test-city-xceed-logo-5a3e.png\",\n                    \"coordinates\": {\n                        \"latitude\": -37.8438609,\n                        \"longitude\": 144.9514536\n                    },\n                    \"city\": {\n                        \"id\": \"066b85d9-1035-11ea-b000-06b880e08c2c\",\n                        \"legacyId\": 66,\n                        \"name\": \"01Test City\",\n                        \"slug\": \"01test-city\",\n                        \"coverUrl\": \"https://images.xceed.me/cities/covers/01test-city-events-xceed-4ea4.png\",\n                        \"timezone\": \"Europe/Madrid\"\n                    }\n                }\n            },\n            \"offer\": {\n                \"id\": \"f03f65da-cbb3-4a84-af5d-b42c9fe90945\",\n                \"type\": \"ticket\",\n                \"name\": \"Early Bird\",\n                \"description\": \"Limited availabilty.\",\n                \"price\": {\n                    \"amount\": \"30.00\",\n                    \"onlinePrice\": 30,\n                    \"offlinePrice\": 0,\n                    \"currency\": \"EUR\"\n                },\n                \"guestCapacity\": null,\n                \"tableLabel\": null\n            },\n            \"channel\": {\n                \"id\": \"0230ed12-dd2e-11ed-bff4-0ac1b97f4b58\",\n                \"legacyId\": 68404,\n                \"name\": \"The Music Sanctuary\",\n                \"slug\": \"the-music-sanctuary\"\n            },\n            \"purchasedAt\": 1756380788,\n            \"paymentId\": null,\n            \"confirmed\": true,\n            \"isOfflinePaid\": false,\n            \"createdBy\": \"luca@xceed.me\",\n            \"language\": \"en\",\n            \"nationality\": null,\n            \"geolocation\": {\n                \"country\": \"Germany\",\n                \"region\": \"Hesse\",\n                \"city\": \"Frankfurt\"\n            },\n            \"marketingConditionsAccepted\": false,\n            \"customFields\": [],\n            \"addOns\": [\n                {\n                    \"id\": \"5eceda4f-5293-4a9e-8f50-63aaf2daa770\",\n                    \"type\": \"accommodation\",\n                    \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                    \"fixedPrice\": {\n                        \"amount\": 110,\n                        \"currency\": \"EUR\"\n                    },\n                    \"isRefundable\": true,\n                    \"quantity\": null,\n                    \"name\": \"Accommodation\",\n                    \"description\": \"Lodging service. Valid for one night at Destino Ibiza hotel. Room with double bed. Check out at 11am.\",\n                    \"itemsIncluded\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"c4573c3d-2dcb-41a2-b0b0-213ba0109f79\",\n            \"legacyId\": 17511789,\n            \"buyer\": {\n                \"firstName\": \"Juan\",\n                \"lastName\": \"Riquelme\",\n                \"email\": \"jr@xceed.me\",\n                \"phone\": null\n            },\n            \"quantity\": 2,\n            \"passes\": [\n                {\n                    \"qrCode\": \"964dceb35c29cd467ae87cc3f0099c\",\n                    \"firstName\": \"Juan\",\n                    \"lastName\": \"Riquelme\",\n                    \"email\": null,\n                    \"phone\": null,\n                    \"drinksIncluded\": 0,\n                    \"customFields\": [],\n                    \"hasCheckedIn\": false,\n                    \"checkedInTime\": null,\n                    \"isActive\": true\n                },\n                {\n                    \"qrCode\": \"01e1713a33694afab7dc35679e67c2\",\n                    \"firstName\": \"Anna\",\n                    \"lastName\": \"Savona\",\n                    \"email\": null,\n                    \"phone\": null,\n                    \"drinksIncluded\": 0,\n                    \"customFields\": [],\n                    \"hasCheckedIn\": false,\n                    \"checkedInTime\": null,\n                    \"isActive\": true\n                }\n            ],\n            \"event\": {\n                \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                \"legacyId\": 194931,\n                \"name\": \"Black Coffee - Every Saturday [don't touch]\",\n                \"slug\": \"black-coffee-every-saturday-dont-touch\",\n                \"startingTime\": 1818365400,\n                \"endingTime\": 1818388800,\n                \"coverUrl\": \"https://images.xceed.me/events/banners/black-coffee-every-saturday-01test-city-xceed-00ce.png\",\n                \"venue\": {\n                    \"id\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                    \"legacyId\": 7092,\n                    \"name\": \"The Sanctuary\",\n                    \"slug\": \"the-sanctuary-1\",\n                    \"coverUrl\": \"https://images.xceed.me/clubs/covers/the-music-sanctuary-club-01test-city-xceed-0328.jpg\",\n                    \"logoUrl\": \"https://images.xceed.me/clubs/logos/the-music-sanctuary-club-01test-city-xceed-logo-5a3e.png\",\n                    \"coordinates\": {\n                        \"latitude\": -37.8438609,\n                        \"longitude\": 144.9514536\n                    },\n                    \"city\": {\n                        \"id\": \"066b85d9-1035-11ea-b000-06b880e08c2c\",\n                        \"legacyId\": 66,\n                        \"name\": \"01Test City\",\n                        \"slug\": \"01test-city\",\n                        \"coverUrl\": \"https://images.xceed.me/cities/covers/01test-city-events-xceed-4ea4.png\",\n                        \"timezone\": \"Europe/Madrid\"\n                    }\n                }\n            },\n            \"offer\": {\n                \"id\": \"ab8120f1-543d-44f9-91af-b6e37596c316\",\n                \"type\": \"ticket\",\n                \"name\": \"VIP EXPEDITED ENTRY\",\n                \"description\": \"Separate Priority line with no queueing time. Individual ticket with drink, non-refundable.\",\n                \"price\": {\n                    \"amount\": \"100.00\",\n                    \"onlinePrice\": 100,\n                    \"offlinePrice\": 0,\n                    \"currency\": \"EUR\"\n                },\n                \"guestCapacity\": null,\n                \"tableLabel\": null\n            },\n            \"channel\": {\n                \"id\": \"0230ed12-dd2e-11ed-bff4-0ac1b97f4b58\",\n                \"legacyId\": 68404,\n                \"name\": \"The Music Sanctuary\",\n                \"slug\": \"the-music-sanctuary\"\n            },\n            \"purchasedAt\": 1756381269,\n            \"paymentId\": null,\n            \"confirmed\": true,\n            \"isOfflinePaid\": false,\n            \"createdBy\": \"luca@xceed.me\",\n            \"language\": \"en\",\n            \"nationality\": null,\n            \"geolocation\": {\n                \"country\": \"Germany\",\n                \"region\": \"Hesse\",\n                \"city\": \"Frankfurt\"\n            },\n            \"marketingConditionsAccepted\": false,\n            \"customFields\": [],\n            \"addOns\": [\n                {\n                    \"id\": \"789bc493-a5df-4431-90ea-d9a22a69c2f0\",\n                    \"type\": \"transport\",\n                    \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                    \"fixedPrice\": {\n                        \"amount\": 5,\n                        \"currency\": \"EUR\"\n                    },\n                    \"isRefundable\": true,\n                    \"quantity\": null,\n                    \"name\": \"Transport\",\n                    \"description\": \"Bus Service. Includes round trip from The Sanctuary to the center of the city.\",\n                    \"itemsIncluded\": 0\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"68ef9c5c-1fca-4cc9-a3e0-41826358a4b7"},{"name":"Get Booking by ID","id":"8e234087-d04a-41e7-bfe4-e5e5d75ecc19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":"{{partner.xceed.me}}/v1/bookings/:bookingId","description":"<p>This endpoint retrieves detailed information about a specific booking using its unique <code>bookingId</code>. The response includes comprehensive details about the booking, such as buyer information, event details, offer specifics, and additional attributes related to the booking.</p>\n<h3 id=\"staging\">Staging:</h3>\n<p><code>http://partner.staging.xceed.me}}/v1/bookings/:bookingId</code></p>\n<h2 id=\"response-attributes\"><strong>Response Attributes</strong></h2>\n<p>Upon a successful request, the API will return a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>success</strong> (boolean): Indicates whether the request was successful.</p>\n</li>\n<li><p><strong>data</strong> (object): Contains the booking object with the following properties:</p>\n</li>\n</ul>\n<h3 id=\"booking-object\"><strong>Booking Object</strong></h3>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the booking.</p>\n</li>\n<li><p><strong>legacyId</strong> (integer): Legacy identifier for the booking.</p>\n</li>\n</ul>\n<h4 id=\"buyer\"><strong>Buyer</strong></h4>\n<ul>\n<li><p><strong>buyer</strong> (object): Contains details about the buyer:</p>\n<ul>\n<li><p><strong>firstName</strong> (string): The first name of the buyer.</p>\n</li>\n<li><p><strong>lastName</strong> (string): The last name of the buyer.</p>\n</li>\n<li><p><strong>email</strong> (string|null): The email of the buyer, if provided.</p>\n</li>\n<li><p><strong>phone</strong> (string|null): The phone number of the buyer, if provided.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"booking-details\"><strong>Booking Details</strong></h4>\n<ul>\n<li><p><strong>quantity</strong> (integer): The quantity of tickets booked.</p>\n</li>\n<li><p><strong>passes</strong> (array): Contains details about the passes associated with the booking:</p>\n<ul>\n<li><p><strong>qrCode</strong> (string): The QR code associated with the pass.</p>\n</li>\n<li><p><strong>firstName</strong> (string): The first name of the pass holder.</p>\n</li>\n<li><p><strong>lastName</strong> (string): The last name of the pass holder.</p>\n</li>\n<li><p><strong>email</strong> (string|null): The email of the pass holder, if provided.</p>\n</li>\n<li><p><strong>phone</strong> (string|null): The phone number of the pass holder, if provided.</p>\n</li>\n<li><p><strong>drinksIncluded</strong> (integer): The number of drinks included with the pass.</p>\n</li>\n<li><p><strong>customFields</strong> (array): Custom fields associated with the pass.</p>\n</li>\n<li><p><strong>hasCheckedIn</strong> (boolean): Indicates if the pass holder has checked in.</p>\n</li>\n<li><p><strong>checkedInTime</strong> (integer|null): The timestamp of when the pass holder checked in, if applicable.</p>\n</li>\n<li><p><strong>isActive</strong> (boolean): Indicates if the pass is still active.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"event\"><strong>Event</strong></h4>\n<ul>\n<li><p><strong>event</strong> (object): Contains details about the event associated with the booking:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the event.</p>\n</li>\n<li><p><strong>legacyId</strong> (integer): Legacy identifier for the event.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the event.</p>\n</li>\n<li><p><strong>slug</strong> (string): The slug associated with the event.</p>\n</li>\n<li><p><strong>startingTime</strong> (integer): The starting time of the event.</p>\n</li>\n<li><p><strong>endingTime</strong> (integer): The ending time of the event.</p>\n</li>\n<li><p><strong>coverUrl</strong> (string): URL for the cover image of the event.</p>\n</li>\n<li><p><strong>venue</strong> (object): Venue details:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the venue.</p>\n</li>\n<li><p><strong>legacyId</strong> (integer): Legacy identifier for the venue.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the venue.</p>\n</li>\n<li><p><strong>slug</strong> (string): The slug of the venue.</p>\n</li>\n<li><p><strong>coverUrl</strong> (string): Cover image URL of the venue.</p>\n</li>\n<li><p><strong>logoUrl</strong> (string): Logo URL of the venue.</p>\n</li>\n<li><p><strong>coordinates</strong> (object): Latitude and longitude of the venue.</p>\n</li>\n<li><p><strong>city</strong> (object): City details:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier of the city.</p>\n</li>\n<li><p><strong>legacyId</strong> (integer): Legacy identifier of the city.</p>\n</li>\n<li><p><strong>name</strong> (string): Name of the city.</p>\n</li>\n<li><p><strong>slug</strong> (string): Slug of the city.</p>\n</li>\n<li><p><strong>coverUrl</strong> (string): Cover image URL of the city.</p>\n</li>\n<li><p><strong>timezone</strong> (string): Timezone of the city.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"offer\"><strong>Offer</strong></h4>\n<ul>\n<li><p><strong>offer</strong> (object): Contains details about the offer associated with the booking:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the offer.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of the offer.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the offer.</p>\n</li>\n<li><p><strong>description</strong> (string): A description of the offer.</p>\n</li>\n<li><p><strong>price</strong> (object): Pricing details:</p>\n<ul>\n<li><p><strong>amount</strong> (string): The total amount for the offer.</p>\n</li>\n<li><p><strong>onlinePrice</strong> (integer): The online price for the offer.</p>\n</li>\n<li><p><strong>offlinePrice</strong> (integer): The offline price for the offer.</p>\n</li>\n<li><p><strong>currency</strong> (string): Currency code.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>guestCapacity</strong> (integer|null): Maximum number of guests allowed.</p>\n</li>\n<li><p><strong>tableLabel</strong> (string|null): Label for the table, if applicable.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"channel\"><strong>Channel</strong></h4>\n<ul>\n<li><p><strong>channel</strong> (object): Contains details about the booking channel:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the channel.</p>\n</li>\n<li><p><strong>legacyId</strong> (integer): Legacy identifier for the channel.</p>\n</li>\n<li><p><strong>name</strong> (string): The name of the channel.</p>\n</li>\n<li><p><strong>slug</strong> (string): The slug of the channel.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"additional-attributes\"><strong>Additional Attributes</strong></h4>\n<ul>\n<li><p><strong>purchasedAt</strong> (integer): Timestamp of when the booking was made.</p>\n</li>\n<li><p><strong>paymentId</strong> (string|null): Payment identifier, if applicable.</p>\n</li>\n<li><p><strong>confirmed</strong> (boolean): Indicates if the booking is confirmed.</p>\n</li>\n<li><p><strong>isOfflinePaid</strong> (boolean): Indicates if the booking was paid offline.</p>\n</li>\n<li><p><strong>createdBy</strong> (string): Identifier (email) of the user who created the booking.</p>\n</li>\n<li><p><strong>language</strong> (string): Preferred language of the booking.</p>\n</li>\n<li><p><strong>nationality</strong> (string|null): Nationality of the person who made the booking.</p>\n</li>\n<li><p><strong>geolocation</strong> (object): Geolocation details:</p>\n<ul>\n<li><p><strong>country</strong> (string): Country of the ticket holder.</p>\n</li>\n<li><p><strong>region</strong> (string): Region of the ticket holder.</p>\n</li>\n<li><p><strong>city</strong> (string): City of the ticket holder.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>marketingConditionsAccepted</strong> (boolean): Indicates if marketing conditions were accepted.</p>\n</li>\n<li><p><strong>customFields</strong> (array): Custom fields associated with the booking.</p>\n</li>\n</ul>\n<h4 id=\"add-ons\"><strong>Add-ons</strong></h4>\n<ul>\n<li><p><strong>addOns</strong> (array): Contains details about any add-ons linked to the booking:</p>\n<ul>\n<li><p><strong>id</strong> (string): Unique identifier for the add-on.</p>\n</li>\n<li><p><strong>type</strong> (string): The type of the add-on.</p>\n</li>\n<li><p><strong>eventId</strong> (string): Event identifier associated with the add-on.</p>\n</li>\n<li><p><strong>fixedPrice</strong> (object): Pricing details for the add-on:</p>\n<ul>\n<li><p><strong>amount</strong> (integer): Fixed price of the add-on.</p>\n</li>\n<li><p><strong>currency</strong> (string): Currency code.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>isRefundable</strong> (boolean): Whether the add-on is refundable.</p>\n</li>\n<li><p><strong>quantity</strong> (integer|null): Quantity of the add-on.</p>\n</li>\n<li><p><strong>name</strong> (string): Name of the add-on.</p>\n</li>\n<li><p><strong>description</strong> (string): Description of the add-on.</p>\n</li>\n<li><p><strong>itemsIncluded</strong> (integer): Number of items included with the add-on.</p>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","name":"Partner Tickets API","type":"folder"}},"urlObject":{"path":["v1","bookings",":bookingId"],"host":["{{partner.xceed.me}}"],"query":[],"variable":[{"description":{"content":"<p>string. Unique identifcator of a booking in UUID format.</p>\n","type":"text/plain"},"type":"any","value":"8532038f-f543-4ce5-be49-ed1dee66c072","key":"bookingId"}]}},"response":[{"id":"b66ba785-ac0c-4f78-b300-ca21caaf017d","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":{"raw":"{{partner.xceed.me}}/v1/bookings/:bookingId","host":["{{partner.xceed.me}}"],"path":["v1","bookings",":bookingId"],"variable":[{"key":"bookingId","value":"8532038f-f543-4ce5-be49-ed1dee66c072","description":"string. Unique identifcator of a booking in UUID format."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 16:17:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Thu, 28 Aug 2025 16:17:10 GMT"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Cache-Control, Content-Type, DNT, If-Modified-Since, Keep-Alive,Origin, User-Agent,X-Requested-With, credentials, Content-Disposition, Responsetype"},{"key":"Access-Control-Expose-Headers","value":"Content-Disposition"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": \"8532038f-f543-4ce5-be49-ed1dee66c072\",\n        \"legacyId\": 17511684,\n        \"buyer\": {\n            \"firstName\": \"John\",\n            \"lastName\": \"Doo\",\n            \"email\": \"johndoo@xceed.me\",\n            \"phone\": null\n        },\n        \"quantity\": 2,\n        \"passes\": [\n            {\n                \"qrCode\": \"30c6dd7bc78dedd08ba722a56ac719\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Doo\",\n                \"email\": null,\n                \"phone\": null,\n                \"drinksIncluded\": 0,\n                \"customFields\": [],\n                \"hasCheckedIn\": false,\n                \"checkedInTime\": null,\n                \"isActive\": true\n            },\n            {\n                \"qrCode\": \"bcd438295d56589fae80d02a3ffaf2\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Doo\",\n                \"email\": null,\n                \"phone\": null,\n                \"drinksIncluded\": 0,\n                \"customFields\": [],\n                \"hasCheckedIn\": false,\n                \"checkedInTime\": null,\n                \"isActive\": true\n            }\n        ],\n        \"event\": {\n            \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n            \"legacyId\": 194931,\n            \"name\": \"Black Coffee - Every Saturday [don't touch]\",\n            \"slug\": \"black-coffee-every-saturday-dont-touch\",\n            \"startingTime\": 1818365400,\n            \"endingTime\": 1818388800,\n            \"coverUrl\": \"https://images.xceed.me/events/banners/black-coffee-every-saturday-01test-city-xceed-00ce.png\",\n            \"venue\": {\n                \"id\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"legacyId\": 7092,\n                \"name\": \"The Sanctuary\",\n                \"slug\": \"the-sanctuary-1\",\n                \"coverUrl\": \"https://images.xceed.me/clubs/covers/the-music-sanctuary-club-01test-city-xceed-0328.jpg\",\n                \"logoUrl\": \"https://images.xceed.me/clubs/logos/the-music-sanctuary-club-01test-city-xceed-logo-5a3e.png\",\n                \"coordinates\": {\n                    \"latitude\": -37.8438609,\n                    \"longitude\": 144.9514536\n                },\n                \"city\": {\n                    \"id\": \"066b85d9-1035-11ea-b000-06b880e08c2c\",\n                    \"legacyId\": 66,\n                    \"name\": \"01Test City\",\n                    \"slug\": \"01test-city\",\n                    \"coverUrl\": \"https://images.xceed.me/cities/covers/01test-city-events-xceed-4ea4.png\",\n                    \"timezone\": \"Europe/Madrid\"\n                }\n            }\n        },\n        \"offer\": {\n            \"id\": \"f03f65da-cbb3-4a84-af5d-b42c9fe90945\",\n            \"type\": \"ticket\",\n            \"name\": \"Early Bird\",\n            \"description\": \"Limited availabilty.\",\n            \"price\": {\n                \"amount\": \"30.00\",\n                \"onlinePrice\": 30,\n                \"offlinePrice\": 0,\n                \"currency\": \"EUR\"\n            },\n            \"guestCapacity\": null,\n            \"tableLabel\": null\n        },\n        \"channel\": {\n            \"id\": \"0230ed12-dd2e-11ed-bff4-0ac1b97f4b58\",\n            \"legacyId\": 68404,\n            \"name\": \"The Music Sanctuary\",\n            \"slug\": \"the-music-sanctuary\"\n        },\n        \"purchasedAt\": 1756380788,\n        \"paymentId\": null,\n        \"confirmed\": true,\n        \"isOfflinePaid\": false,\n        \"createdBy\": \"luca@xceed.me\",\n        \"language\": \"en\",\n        \"nationality\": null,\n        \"geolocation\": {\n            \"country\": \"Germany\",\n            \"region\": \"Hesse\",\n            \"city\": \"Frankfurt\"\n        },\n        \"marketingConditionsAccepted\": false,\n        \"customFields\": [],\n        \"addOns\": [\n            {\n                \"id\": \"5eceda4f-5293-4a9e-8f50-63aaf2daa770\",\n                \"type\": \"accommodation\",\n                \"eventId\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n                \"fixedPrice\": {\n                    \"amount\": 110,\n                    \"currency\": \"EUR\"\n                },\n                \"isRefundable\": true,\n                \"quantity\": null,\n                \"name\": \"Accommodation\",\n                \"description\": \"Lodging service. Valid for one night at Destino Ibiza hotel. Room with double bed. Check out at 11am.\",\n                \"itemsIncluded\": 0\n            }\n        ]\n    }\n}"}],"_postman_id":"8e234087-d04a-41e7-bfe4-e5e5d75ecc19"},{"name":"Generate Booking","id":"efcc205e-5f59-49e7-9774-4e1c33cf0049","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"bookingId\": \"4ea95454-22b4-4724-9cd6-55bf35bc6392\",\n    \"channelSlug\": \"the-music-sanctuary\"\n}"},"url":"{{booking-service-host}}/v1/bookings","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","name":"Partner Tickets API","type":"folder"}},"urlObject":{"path":["v1","bookings"],"host":["{{booking-service-host}}"],"query":[],"variable":[]}},"response":[{"id":"ccc0b81f-f904-4a21-a9a5-60a6a8fe8c5f","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"bookingId\": \"4ea95454-22b4-4724-9cd6-55bf35bc6392\",\n    \"channelSlug\": \"the-music-sanctuary\"\n}","options":{"raw":{"language":"json"}}},"url":"{{booking-service-host}}/v1/bookings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 16:30:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Thu, 28 Aug 2025 16:30:01 GMT"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Cache-Control, Content-Type, DNT, If-Modified-Since, Keep-Alive,Origin, User-Agent,X-Requested-With, credentials, Content-Disposition, Responsetype"},{"key":"Access-Control-Expose-Headers","value":"Content-Disposition"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"id\": \"4ea95454-22b4-4724-9cd6-55bf35bc6392\",\n        \"legacyId\": 17519590,\n        \"buyer\": {\n            \"firstName\": \"George\",\n            \"lastName\": \"Best\",\n            \"email\": \"gb@xceed.me\",\n            \"phone\": null\n        },\n        \"quantity\": 1,\n        \"passes\": [\n            {\n                \"qrCode\": \"a6251a4fbb819f0bf1ab6bf53b9bfd\",\n                \"firstName\": \"George\",\n                \"lastName\": \"Best\",\n                \"email\": null,\n                \"phone\": null,\n                \"drinksIncluded\": 0,\n                \"customFields\": [],\n                \"hasCheckedIn\": false,\n                \"checkedInTime\": null,\n                \"isActive\": true\n            }\n        ],\n        \"event\": {\n            \"id\": \"220398a8-500c-11f0-bcc9-0242ac11000d\",\n            \"legacyId\": 194931,\n            \"name\": \"Black Coffee - Every Saturday [don't touch]\",\n            \"slug\": \"black-coffee-every-saturday-dont-touch\",\n            \"startingTime\": 1818365400,\n            \"endingTime\": 1818388800,\n            \"coverUrl\": \"https://images.xceed.me/events/banners/black-coffee-every-saturday-01test-city-xceed-00ce.png\",\n            \"venue\": {\n                \"id\": \"9bd91aa7-f747-4ae9-a83c-a425721caf31\",\n                \"legacyId\": 7092,\n                \"name\": \"The Sanctuary\",\n                \"slug\": \"the-sanctuary-1\",\n                \"coverUrl\": \"https://images.xceed.me/clubs/covers/the-music-sanctuary-club-01test-city-xceed-0328.jpg\",\n                \"logoUrl\": \"https://images.xceed.me/clubs/logos/the-music-sanctuary-club-01test-city-xceed-logo-5a3e.png\",\n                \"coordinates\": {\n                    \"latitude\": -37.8438609,\n                    \"longitude\": 144.9514536\n                },\n                \"city\": {\n                    \"id\": \"066b85d9-1035-11ea-b000-06b880e08c2c\",\n                    \"legacyId\": 66,\n                    \"name\": \"01Test City\",\n                    \"slug\": \"01test-city\",\n                    \"coverUrl\": \"https://images.xceed.me/cities/covers/01test-city-events-xceed-4ea4.png\",\n                    \"timezone\": \"Europe/Madrid\"\n                }\n            }\n        },\n        \"offer\": {\n            \"id\": \"f03f65da-cbb3-4a84-af5d-b42c9fe90945\",\n            \"type\": \"ticket\",\n            \"name\": \"Early Bird\",\n            \"description\": \"Limited availabilty.\",\n            \"price\": {\n                \"amount\": \"30.00\",\n                \"onlinePrice\": 30,\n                \"offlinePrice\": 0,\n                \"currency\": \"EUR\"\n            },\n            \"guestCapacity\": null,\n            \"tableLabel\": null\n        },\n        \"channel\": {\n            \"id\": \"0230ed12-dd2e-11ed-bff4-0ac1b97f4b58\",\n            \"legacyId\": 68404,\n            \"name\": \"The Music Sanctuary\",\n            \"slug\": \"the-music-sanctuary\"\n        },\n        \"purchasedAt\": 1756398601,\n        \"paymentId\": null,\n        \"confirmed\": true,\n        \"isOfflinePaid\": false,\n        \"createdBy\": \"The Music Sanctuary\",\n        \"language\": \"en\",\n        \"nationality\": null,\n        \"geolocation\": null,\n        \"marketingConditionsAccepted\": false,\n        \"customFields\": [\n            {\n                \"name\": \"emailConfirm\",\n                \"value\": \"gb@xceed.me\"\n            }\n        ],\n        \"addOns\": []\n    }\n}"},{"id":"5ea8ac3f-36d8-4a3b-81c9-f28e2faa1c42","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"bookingId\": \"4ea95454-22b4-4724-9cd6-55bf35bc6392\",\n    \"channelSlug\": \"the-music-sanctuary\"\n}"},"url":"{{booking-service-host}}/v1/bookings"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 16:43:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Thu, 28 Aug 2025 16:43:57 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Booking attempt with ID 4ea95454-22b4-4724-9cd6-55bf35bc6392 has been already succesfully processed\",\n        \"code\": 0\n    }\n}"},{"id":"636e7623-496a-4070-b476-7453ef679374","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"bookingId\": \"4ea95454-22b4-0000-9cd6-55bf35bc6392\",\n    \"channelSlug\": \"the-music-sanctuary\"\n}"},"url":"{{booking-service-host}}/v1/bookings"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 16:45:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Thu, 28 Aug 2025 16:45:17 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Booking Attempt with ID 4ea95454-22b4-0000-9cd6-55bf35bc6392 not found\",\n        \"code\": 0\n    }\n}"},{"id":"693f8273-5c29-4313-9654-ab1eb501785d","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"bookingId\": \"4ea95454-22b4-4724-9cd6-55bf35bc6392\",\n    \"channelSlug\": \"wrong-channel\"\n}","options":{"raw":{"language":"json"}}},"url":"{{booking-service-host}}/v1/bookings"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 16:44:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Thu, 28 Aug 2025 16:44:32 GMT"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Channel wrong-channel not found.\",\n        \"code\": 0\n    }\n}"}],"_postman_id":"efcc205e-5f59-49e7-9774-4e1c33cf0049"},{"name":"Cancel Booking","id":"3b18620a-6e7f-418b-b75b-cbdc784624bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":"{{partner.xceed.me}}/v1/bookings/:bookingUUID/cancel","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","name":"Partner Tickets API","type":"folder"}},"urlObject":{"path":["v1","bookings",":bookingUUID","cancel"],"host":["{{partner.xceed.me}}"],"query":[],"variable":[{"type":"any","value":"4ea95454-22b4-4724-9cd6-55bf35bc6392","key":"bookingUUID"}]}},"response":[{"id":"6daeb7e2-dd23-42d4-b84b-e3440d7209bd","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":{"raw":"{{partner.xceed.me}}/v1/bookings/:bookingUUID/cancel","host":["{{partner.xceed.me}}"],"path":["v1","bookings",":bookingUUID","cancel"],"variable":[{"key":"bookingUUID","value":"4ea95454-22b4-4724-9cd6-55bf35bc6392"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Aug 2025 16:33:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.18.0"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Thu, 28 Aug 2025 16:33:26 GMT"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, PATCH, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Accept, Authorization, Cache-Control, Content-Type, DNT, If-Modified-Since, Keep-Alive,Origin, User-Agent,X-Requested-With, credentials, Content-Disposition, Responsetype"},{"key":"Access-Control-Expose-Headers","value":"Content-Disposition"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        \"OK\"\n    ]\n}"},{"id":"9eca07bc-bd12-4c7b-9cf2-693d4e70db6b","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"X-API-Key","value":"{{API_KEY}}","type":"text"}],"url":{"raw":"{{partner.xceed.me}}/v1/bookings/:bookingUUID/cancel","host":["{{partner.xceed.me}}"],"path":["v1","bookings",":bookingUUID","cancel"],"variable":[{"key":"bookingUUID","value":"4ea95454-22b4-000-9cd6-55bf35bc6392"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3b18620a-6e7f-418b-b75b-cbdc784624bc"}],"id":"92269363-d9f5-4c2b-a7c0-3b272b363a75","description":"<h2 id=\"api-version-241\">API version: 2.4.1</h2>\n<p>The <strong>Xceed Partner Tickets API</strong> enables seamless integration for ticketing companies, access control systems, and event organizers to manage and process bookings for events.<br />This private API provides endpoints to retrieve event and ticket details, manage bookings, and enhance the event experience with accurate data and automation.</p>\n<h4 id=\"key-features\">Key Features:</h4>\n<ul>\n<li><p><strong>Real-Time Data Access</strong>: Retrieve up-to-date event details, ticket sales, and booking information.</p>\n</li>\n<li><p><strong>Efficient Booking Management</strong>: Generate, update, and cancel bookings with ease.</p>\n</li>\n<li><p><strong>Custom Integrations</strong>: Tailor API functionality to meet specific business needs using flexible endpoints.</p>\n</li>\n<li><p><strong>Sandbox Environment</strong>: Test integrations safely in a staging environment before going live.</p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication:</h2>\n<p>All API requests require an API Key, passed via the <code>X-API-Key</code> header. To obtain your key, contact the Xceed support team at <a href=\"https://null\"><b>partners@xceed.me</b></a>.</p>\n<h2 id=\"testing\">Testing:</h2>\n<p>Developers can use the sandbox domain <code>staging.xceed.me</code> to test their integrations without impacting production data.</p>\n<h2 id=\"changelog\">Changelog</h2>\n<h3 id=\"241--2025-08-25\">[2.4.1 — 2025-08-25]</h3>\n<ul>\n<li><strong>Added:</strong> <code>channel[]</code> param to <code>/:events</code> endpoint.</li>\n</ul>\n<h3 id=\"240--2025-08-25\">[2.4.0 — 2025-08-25]</h3>\n<ul>\n<li><p><strong>Deprecated</strong> <code>/:eventId/rsvps</code> endpoint.</p>\n</li>\n<li><p><strong>Added:</strong> <code>language</code></p>\n</li>\n</ul>\n<h3 id=\"239--2024-01-11\">[2.3.9 — 2024-01-11]</h3>\n<ul>\n<li><p><strong>Added</strong>: new attributes to <code>GET /bookings/:bookingId</code> endpoint:</p>\n</li>\n<li><p><code>language</code></p>\n</li>\n<li><p><code>nationality</code></p>\n</li>\n<li><p><code>geolocation</code></p>\n</li>\n</ul>\n<h3 id=\"238--2023-12-04\">[2.3.8 — 2023-12-04]</h3>\n<ul>\n<li><p><strong>Added</strong>: new attributes to <code>GET /bookings/:bookingId</code> endpoint.</p>\n<ul>\n<li><p><code>drinksIncluded</code></p>\n</li>\n<li><p><code>marketingConditionsAccepted</code></p>\n</li>\n</ul>\n</li>\n<li><p><strong>Added</strong>: New offer type <code>Passes</code>.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"86a82c43-b4c0-4586-8649-cf3ec70abe20","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"a0a3ce27-8223-47bb-a34f-b1cbc5907306","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"_postman_id":"92269363-d9f5-4c2b-a7c0-3b272b363a75"}],"event":[{"listen":"prerequest","script":{"id":"0cdca283-dc21-415b-ad17-14794728cbf9","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"75c8b285-ed74-40d2-944c-bcc19f7ac285","type":"text/javascript","packages":{},"exec":[""]}}]}