{"info":{"_postman_id":"a079f171-744d-485c-b05b-d9fdbcbe74c8","name":"Documentation - Lightspeed Golf Partner API (v2)","description":"<html><head></head><body><p>The Lightspeed Golf Partner API is organized around <strong>REST</strong> and is designed to have predictable, resource-oriented URLs and to use HTTP response codes to indicate API errors.</p>\n<p>All API responses, including errors, are returned in <strong>JSON</strong> format.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Lightspeed Golf APIs use the <a href=\"https://oauth.net/2/\">OAuth 2.0</a> protocol for authentication and authorization.</p>\n<p>All developers need to register their application before getting started. A registered OAuth application is assigned a unique <code>client_id</code> , <code>client_secret</code>, and initial <code>refresh_token</code>. The <code>client_secret</code> and <code>refresh_token</code> should be stored securely.</p>\n<p>See the <a href=\"https://partner-api.docs.chronogolf.com/#bed28f71-1631-4437-bd57-2905022fd262\">Authentication request</a> section for further details.</p>\n<h1 id=\"base-urls\">Base URLs</h1>\n<p>The base URLs are used to direct API requests to specific servers. OAuth applications are bound to the server they are issued for. There are two servers available: Staging - for app testing, and Production - for accessing customer accounts.</p>\n<p>Staging: <a href=\"https://partner-staging.chronogolf.comProduction:\">https://partner-staging.chronogolf.com</a></p>\n<p>Production: <a href=\"https://partner-api.chronogolf.comTHis\">https://partner-api.chronogolf.com</a></p>\n<p>This documentation includes a sample environment for the Staging server. See <a href=\"https://learning.postman.com/docs/sending-requests/managing-environments/\">Postman Environments</a></p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>Large lists may require additional requests to retrieve. If a list response has been paginated, it will be indicated under the <code>meta</code> field of the response.</p>\n<p>In order to request subsequent pages, pass the page number param in the url. example: <code>/customers?page[number]=2</code></p>\n<p>You can also specify the number of results returned per page by the <code>page[size]</code> parameter.</p>\n<h1 id=\"rate-limiting\">Rate Limiting</h1>\n<p>You can make up to 200 requests per minute.</p>\n<h1 id=\"errors\">Errors</h1>\n<p>Lightspeed Golf uses conventional HTTP response codes to indicate success or failure of an API request. In general, codes in the <code>2xx</code> range indicates success, codes in the <code>4xx</code> range indicates an error that resulted from the provided information (e.g. a required parameter was missing, etc.), and codes in the <code>5xx</code> range indicates an error with the servers.</p>\n<h3 id=\"http-status-code-summary\">HTTP Status Code Summary</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Summary</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>2XX (OK)</td>\n<td>Everything worked as expected.</td>\n</tr>\n<tr>\n<td>400 (Bad Request)</td>\n<td>Often missing a required parameter.</td>\n</tr>\n<tr>\n<td>401 (Unauthorized)</td>\n<td>No valid API key provided.</td>\n</tr>\n<tr>\n<td>404 (Not Found)</td>\n<td>The requested item doesn't exist.</td>\n</tr>\n<tr>\n<td>422 (Unprocessable Entity)</td>\n<td>A validation error occurred.</td>\n</tr>\n<tr>\n<td>429 (Too Many Requests)</td>\n<td>Too many requests hit the API too quickly.</td>\n</tr>\n<tr>\n<td>5XX (Server Errors)</td>\n<td>Something went wrong on the server.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"versioning\">Versioning</h1>\n<p>When we make backwards-incompatible changes to the API, we release new numbered versions.</p>\n<h1 id=\"changelog\">Changelog</h1>\n<h2 id=\"2025-08-11\">2025-08-11</h2>\n<ul>\n<li>New parameter <strong>filter[booking_reference]</strong> available for List All Reservations endpoint.</li>\n</ul>\n<h2 id=\"2025-07-29\">2025-07-29</h2>\n<ul>\n<li>Extras and kits can now be added to reservations through the round request endpoint.</li>\n</ul>\n<h2 id=\"2025-07-15\">2025-07-15</h2>\n<ul>\n<li><p>New parameter <strong>filter[including_events]=true</strong> available for List All Tee Times endpoint. Tee Times blocked on the UI by a Tournament closed for online booking will now be visible in the API response with this parameter.</p>\n</li>\n<li><p>New fields have been added to the Get all reservations response. Fields are <code>source</code> and <code>medium</code>. The source provides the info on where the booking originated from. Some sources have more than one route, and the medium offers a more specific location.</p>\n</li>\n</ul>\n<h2 id=\"2025-02-03\">2025-02-03</h2>\n<ul>\n<li>New parameter <strong>filter[including_blocked]=true</strong> available for List All Tee Times endpoint. Tee Times blocked on the UI will now be visible in the API response with this parameter.</li>\n</ul>\n<h2 id=\"2024-02-02\">2024-02-02</h2>\n<ul>\n<li>Documentation update: Query parameters added to the <strong>List all reservations for an organization</strong> endpoint</li>\n</ul>\n<h2 id=\"2019-10-28\">2019-10-28</h2>\n<p>VerbRoute<br>GET/partner_api/v2/organizations/:organization_id/courses<br>GET/partner_api/v2/courses/:id<br>POST/partner_api/v2/organizations/:organization_id/customers<br>GET/partner_api/v2/organizations/:organization_id/customers<br>GET/partner_api/v2/customers/:id<br>PATCH/partner_api/v2/customers/:id<br>PUT/partner_api/v2/customers/:id<br>POST/partner_api/v2/organizations/:organization_id/payment_confirmations<br>GET/partner_api/v2/payment_confirmations/:id<br>GET/partner_api/v2/organizations/:organization_id/player_types<br>GET/partner_api/v2/player_types/:id<br>POST/partner_api/v2/organizations/:organization_id/reservation_requests<br>GET/partner_api/v2/reservation_requests/:id<br>POST/partner_api/v2/organizations/:organization_id/reservations<br>DELETE/partner_api/v2/reservations/:id<br>GET/partner_api/v2/organizations/:organization_id/reservations<br>GET/partner_api/v2/reservations/:id<br>PATCH/partner_api/v2/reservations/:id<br>PUT/partner_api/v2/reservations/:id<br>POST/partner_api/v2/organizations/:organization_id/round_requests<br>DELETE/partner_api/v2/round_requests/:id<br>GET/partner_api/v2/round_requests/:id<br>GET/partner_api/v2/organizations/:organization_id/teetimes<br>GET/partner_api/v2/teetimes/:id<br>GET/partner_api/v2/organizations<br>GET/partner_api/v2/organizations/:id</p>\n<hr>\n<h2 id=\"2019-07-30\">2019-07-30</h2>\n<ul>\n<li><p>Added <code>updated_since</code> field for customer endpoint</p>\n</li>\n<li><p>Added <code>archived</code> field for customer endpoint</p>\n</li>\n</ul>\n<h2 id=\"2019-07-16\">2019-07-16</h2>\n<ul>\n<li>Added the ability to search for reservations for a given date and course</li>\n</ul>\n<h2 id=\"2019-06-11\">2019-06-11</h2>\n<ul>\n<li>Added new pricing information useful for clubs with a mandatory cart</li>\n</ul>\n<h2 id=\"2019-05-10\">2019-05-10</h2>\n<ul>\n<li>Ability to 'reset' customer player type to club's default player type or update to a different player type</li>\n</ul>\n<h2 id=\"2019-02-04\">2019-02-04</h2>\n<ul>\n<li><p>Ability to create a customer for a given club</p>\n</li>\n<li><p>Ability to update a customer for a given club</p>\n</li>\n</ul>\n<h2 id=\"2018-10-16\">2018-10-16</h2>\n<ul>\n<li>Ability to reference a tour operator when creating a booking</li>\n</ul>\n<h2 id=\"2018-08-29\">2018-08-29</h2>\n<ul>\n<li>Ability to override the cart fees when creating reservations</li>\n</ul>\n<h2 id=\"2018-07-18\">2018-07-18</h2>\n<ul>\n<li><p>Ability to search customers across your authorized clubs</p>\n</li>\n<li><p>Ability to list the player types of a customer at a club</p>\n</li>\n</ul>\n<h2 id=\"2018-05-07\">2018-05-07</h2>\n<ul>\n<li>Start times are now in the format <code>HH:mm</code> (e.g. \"12:18\"), instead of <code>HH:mm:ss</code></li>\n</ul>\n<h2 id=\"2018-03-05\">2018-03-05</h2>\n<ul>\n<li>Pull reservations updated since a timestamp</li>\n</ul>\n<h2 id=\"2018-02-19\">2018-02-19</h2>\n<ul>\n<li><p>Ability to override the green fees when creating reservations</p>\n</li>\n<li><p>Mark rounds of reservations as paid</p>\n</li>\n</ul>\n<h1 id=\"request-collections\">Request Collections</h1>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Base URLs","slug":"base-urls"},{"content":"Pagination","slug":"pagination"},{"content":"Rate Limiting","slug":"rate-limiting"},{"content":"Errors","slug":"errors"},{"content":"Versioning","slug":"versioning"},{"content":"Changelog","slug":"changelog"},{"content":"Request Collections","slug":"request-collections"}],"owner":"21108","collectionId":"a079f171-744d-485c-b05b-d9fdbcbe74c8","publishedId":"6YtyFp6","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"18191D","highlight":"2E61DE"},"publishDate":"2023-07-17T15:54:46.000Z"},"item":[{"name":"Authentication","item":[{"name":"Refresh token","event":[{"listen":"test","script":{"id":"1d6dfa95-9376-46b9-b479-ff53ca5f40b2","exec":["var data = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"access_token\", data.access_token);","postman.setEnvironmentVariable(\"refresh_token\", data.refresh_token);"],"type":"text/javascript"}}],"id":"5d1fbb37-36b6-4034-b8dd-436b0f6a02c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/oauth/token?client_id={{client_id}}&client_secret={{client_secret}}&refresh_token={{refresh_token}}&grant_type=refresh_token&redirect_uri={{redirect_uri}}","description":"<p>The initial <code>refresh_token</code> is provided when the OAuth Client is registered.</p>\n<p>The Refresh Token request uses a <code>refresh_token</code> to generate an<code>access_token</code>along with a new <code>refresh_token</code>. The <code>access_token</code> is valid for 2 hours. When it expires, you must use its <code>refresh_token</code> to request a new <code>access_token</code>.</p>\n<p>The OAuth Client can have only one valid <code>refresh_token</code> at any time, which remains valid until it is used to generate a new <code>access_token</code> and corresponding <code>refresh_token</code>.</p>\n<p>See <a href=\"https://datatracker.ietf.org/doc/html/rfc6749\">the official specification</a> for further details on <a href=\"https://tools.ietf.org/html/rfc6749#section-1.4\">Access Token</a>, <a href=\"https://tools.ietf.org/html/rfc6749#section-1.5\">Refresh Token</a> and <a href=\"https://tools.ietf.org/html/rfc6749#section-6\">Refreshing an Access Token</a>.</p>\n<h4 id=\"request-parameters\">Request parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td><strong>Required</strong>. The client ID you received from Lightspeed Golf when you registered.</td>\n</tr>\n<tr>\n<td>client_secret</td>\n<td>string</td>\n<td><strong>Required</strong>. The client secret you received from Lightspeed Golf when you registered.</td>\n</tr>\n<tr>\n<td>refresh_token</td>\n<td>string</td>\n<td><strong>Required</strong>. The code you received from Lightspeed Golf when you registered.</td>\n</tr>\n<tr>\n<td>grant_type</td>\n<td>string</td>\n<td><code>refresh_token</code></td>\n</tr>\n<tr>\n<td>redirect_uri</td>\n<td>string</td>\n<td>The URL in your application where users will be sent after authorization.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["oauth","token"],"host":["{{url}}"],"query":[{"key":"client_id","value":"{{client_id}}"},{"key":"client_secret","value":"{{client_secret}}"},{"key":"refresh_token","value":"{{refresh_token}}"},{"key":"grant_type","value":"refresh_token"},{"key":"redirect_uri","value":"{{redirect_uri}}"}],"variable":[]}},"response":[{"id":"40bb5ccf-755c-4b86-b139-3d2dca270154","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","enabled":true,"description":"The mime type of this content"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{url}}/oauth/token?client_id={{client_id}}&client_secret={{client_secret}}&refresh_token={{refresh_token}}&grant_type=refresh_token&redirect_uri={{redirect_uri}}","host":["{{url}}"],"path":["oauth","token"],"query":[{"key":"client_id","value":"{{client_id}}"},{"key":"client_secret","value":"{{client_secret}}"},{"key":"refresh_token","value":"{{refresh_token}}"},{"key":"grant_type","value":"refresh_token"},{"key":"redirect_uri","value":"{{redirect_uri}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store","description":""},{"key":"Connection","value":"keep-alive","description":""},{"key":"Content-Encoding","value":"gzip","description":""},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Date","value":"Wed, 24 Aug 2016 19:47:07 GMT","description":""},{"key":"Etag","value":"W/\"1768ce07f3d842894f83a5870784424c\"","description":""},{"key":"Pragma","value":"no-cache","description":""},{"key":"Server","value":"nginx/1.10.0 + Phusion Passenger 5.0.28","description":""},{"key":"Status","value":"200 OK","description":""},{"key":"Strict-Transport-Security","value":"max-age=31536000","description":""},{"key":"Transfer-Encoding","value":"chunked","description":""},{"key":"Vary","value":"Accept-Encoding","description":""},{"key":"Via","value":"1.1 vegur","description":""},{"key":"X-Frame-Options","value":"ALLOWALL","description":""},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 5.0.28","description":""},{"key":"X-Request-Id","value":"7aef1c10-4751-4d32-a42b-335d8ff86219","description":""},{"key":"X-Runtime","value":"0.024024","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"a0039c5f2cdc7550c0a6090a0e8b9ea9769372395b231f8d9dc1c8380dff62f8\",\n    \"token_type\": \"bearer\",\n    \"expires_in\": 7200,\n    \"refresh_token\": \"9f9ddbe4a130f5e9db5b7d3e955280aedeca9f41824d719f02cc634385ee3005\",\n    \"scope\": \"partner\",\n    \"created_at\": 1472068027\n}"}],"_postman_id":"5d1fbb37-36b6-4034-b8dd-436b0f6a02c7"}],"id":"2f058a97-7ec7-4d89-987a-ba8e68b188a6","description":"<p>Lightspeed Golf APIs use the <strong>OAuth 2.0</strong> protocol for authentication and authorization.</p>\n<p>All developers need to register their application before getting started. A registered OAuth application is assigned a unique <code>client_id</code> , <code>client_secret</code>, and initial <code>refresh_token</code>. The <code>client_secret</code> and <code>refresh_token</code> should not be shared.</p>\n<p><strong>All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.</strong></p>\n","event":[{"listen":"prerequest","script":{"id":"9e961f70-0f67-409b-9fdd-a2c6e1e89453","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5ac264b2-ddf1-4401-a634-4f96397a2821","type":"text/javascript","exec":[""]}}],"_postman_id":"2f058a97-7ec7-4d89-987a-ba8e68b188a6"},{"name":"Organizations","item":[{"name":"List all organizations","id":"f80976b1-be53-4eeb-bb0c-f49848825f8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/organizations/","description":"<p>Retrieve a list of all organizations for which your API client has access to.</p>\n","urlObject":{"path":["partner_api","v2","organizations",""],"host":["{{url}}"],"query":[{"disabled":true,"key":"page[size]","value":"1-100"},{"disabled":true,"key":"page[number]","value":"1"}],"variable":[]}},"response":[{"id":"c18c2bf2-19a5-4e86-addc-b4698f50968c","name":"List all organizations","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/organizations/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Dec 2019 21:11:34 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"32bb7842-89f2-4002-b0c7-d1fb19988ca1"},{"key":"Etag","value":"W/\"e7756b209032e89d68aee9e4917e023e\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.059128"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5400c6081ee1c5c0-EWR"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n            \"type\": \"organization\",\n            \"attributes\": {\n                \"name\": \"Sussex Golf Club\",\n                \"online_booking_enabled\": true,\n                \"tax_inclusive\": false\n            },\n            \"relationships\": {\n                \"default_player_type\": {\n                    \"data\": {\n                        \"id\": \"ba75e08e-12c7-4774-9670-30ab5a2c92b9\",\n                        \"type\": \"default_player_type\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"page\": 1,\n        \"page_size\": 25,\n        \"total\": 1,\n        \"total_pages\": 1\n    }\n}"}],"_postman_id":"f80976b1-be53-4eeb-bb0c-f49848825f8d"},{"name":"Retrieve an organization","id":"9be38eb9-d55e-49ce-bb1f-ef78fbbd8d6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a9ef8058-31e8-48a3-8dc0-9bedb54ff171","name":"Retrieve an organization","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Dec 2019 20:45:12 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"95a89adc-fc4c-4b0e-9c1b-f388d39e7572"},{"key":"Etag","value":"W/\"70715316ff85f4e21ef66e600156784b\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.053847"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"54009f667b88e839-EWR"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n        \"type\": \"organization\",\n        \"attributes\": {\n            \"name\": \"Sussex Golf Club\",\n            \"online_booking_enabled\": true,\n            \"tax_inclusive\": false\n        },\n        \"relationships\": {\n            \"default_player_type\": {\n                \"data\": {\n                    \"id\": \"ba75e08e-12c7-4774-9670-30ab5a2c92b9\",\n                    \"type\": \"default_player_type\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"9be38eb9-d55e-49ce-bb1f-ef78fbbd8d6e"},{"name":"Retrieve a club's courses","id":"1c537edc-526a-4bba-8e9c-e44c6af33529","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/courses","description":"<p>Retrieve a list of courses for a given organization</p>\n","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","courses"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d59c7efb-41f8-4eef-985d-0a1651fdfc82","name":"Retrieve a club's courses","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"{{url}}/partner_api/v2/organizations/{{organization_id}}/courses","host":["{{url}}"],"path":["partner_api","v2","organizations","{{organization_id}}","courses"],"query":[{"key":"","value":"","disabled":true},{"key":"","value":"","disabled":true},{"key":"","value":"","disabled":true},{"key":"","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Dec 2019 21:11:37 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"d8863b30-8677-441d-82d8-8db936b7c88c"},{"key":"Etag","value":"W/\"45fb220b7f496b7f55a522f2ac2bb230\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.065940"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5400c61c0ba5c5c0-EWR"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"6b871ba5-30cf-4857-a7b1-6e6efe1cca49\",\n            \"type\": \"course\",\n            \"attributes\": {\n                \"name\": \"Sussex\",\n                \"holes\": 18,\n                \"par\": null,\n                \"distance\": null,\n                \"online_booking_enabled\": true,\n                \"cart_mandatory\": false\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                        \"type\": \"organization\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"ae6adc4e-0322-4f9b-9f2a-6e0bb11961ce\",\n            \"type\": \"course\",\n            \"attributes\": {\n                \"name\": \"Sussex 9 hole\",\n                \"holes\": 9,\n                \"par\": null,\n                \"distance\": null,\n                \"online_booking_enabled\": true,\n                \"cart_mandatory\": false\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                        \"type\": \"organization\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"a9e51d19-1265-4cc0-abde-442a4aeebe0e\",\n            \"type\": \"course\",\n            \"attributes\": {\n                \"name\": \"Sussex Gardens (Back 9)\",\n                \"holes\": 9,\n                \"par\": null,\n                \"distance\": null,\n                \"online_booking_enabled\": true,\n                \"cart_mandatory\": false\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                        \"type\": \"organization\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"page\": 1,\n        \"page_size\": 25,\n        \"total\": 3,\n        \"total_pages\": 1\n    }\n}"}],"_postman_id":"1c537edc-526a-4bba-8e9c-e44c6af33529"},{"name":"Retrieve a course","id":"b1bc23e3-f6f4-4465-8e20-3f0103008e6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/courses/{{course_id}}","description":"<p>Retrieve a specific course</p>\n","urlObject":{"path":["partner_api","v2","courses","{{course_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6ceeba55-6543-4a78-a85a-afe8b2ca6039","name":"Retrieve a course","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"{{url}}/partner_api/v2/courses/{{course_id}}","host":["{{url}}"],"path":["partner_api","v2","courses","{{course_id}}"],"query":[{"key":"","value":"","disabled":true},{"key":"","value":"","disabled":true},{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Dec 2019 21:11:44 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"c3c0aac2-2cbc-488e-8a31-d224c6528083"},{"key":"Etag","value":"W/\"c7f9e1cc7b0b32a89d6828a9f0f01ebc\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.057796"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5400c6464f75c5c0-EWR"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6b871ba5-30cf-4857-a7b1-6e6efe1cca49\",\n        \"type\": \"course\",\n        \"attributes\": {\n            \"name\": \"Sussex\",\n            \"holes\": 18,\n            \"par\": null,\n            \"distance\": null,\n            \"online_booking_enabled\": true,\n            \"cart_mandatory\": false\n        },\n        \"relationships\": {\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                    \"type\": \"organization\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"b1bc23e3-f6f4-4465-8e20-3f0103008e6d"}],"id":"5a3b131f-b3dc-4139-9685-8f939aa20d3a","event":[{"listen":"prerequest","script":{"id":"292365ca-a657-4409-a288-e6306cc2d10c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e31df035-e240-4eb0-9243-7c6cf5e6f9f8","type":"text/javascript","exec":[""]}}],"_postman_id":"5a3b131f-b3dc-4139-9685-8f939aa20d3a","description":""},{"name":"Tee-Times","item":[{"name":"List all tee-times","id":"c1d91516-644b-4be1-9394-c393a7050c2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/teetimes","description":"<p>Retrieve all tee times for a specific organization.</p>\n<p>player_count, holes and player_types custom parameters are meant to be used with custom_params[with_pricing]=true to retrieve specific tee times pricing from the organization's tee sheet.</p>\n","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","teetimes"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>filter teetimes to a specific course</p>\n","type":"text/plain"},"key":"filter[course]","value":"{{course_id}}"},{"disabled":true,"description":{"content":"<p>filter teetimes by date, always in the future</p>\n","type":"text/plain"},"key":"filter[date]","value":"2024-08-02"},{"disabled":true,"description":{"content":"<p>get teetimes locked in the UI through the Block button on the tee sheet</p>\n","type":"text/plain"},"key":"filter[including_blocked]","value":"true"},{"disabled":true,"description":{"content":"<p>get teetimes blocked by a tournament and closed for online booking</p>\n","type":"text/plain"},"key":"filter[including_events]","value":"true"},{"disabled":true,"key":"include[]","value":"course"},{"disabled":true,"description":{"content":"<p>get tournament details</p>\n","type":"text/plain"},"key":"include[]","value":"event"},{"disabled":true,"description":{"content":"<p>get subtotal green fee calculated for the number of players</p>\n","type":"text/plain"},"key":"custom_params[player_count]","value":"4"},{"disabled":true,"description":{"content":"<p>get rates for a specific green fee</p>\n","type":"text/plain"},"key":"custom_params[holes]","value":"18"},{"disabled":true,"description":{"content":"<p>get rates for a specific player type</p>\n","type":"text/plain"},"key":"custom_params[player_types][]","value":"{{player_type_id}}"},{"disabled":true,"key":"custom_params[player_types][]","value":"{{player_type_2_id}}"},{"disabled":true,"key":"custom_params[with_pricing]","value":"true"},{"disabled":true,"key":"page[number]","value":"2"},{"disabled":true,"key":"page[size]","value":""}],"variable":[]}},"response":[{"id":"dfe62e00-f421-4756-aedc-81e6f7398659","name":"List all tee-times","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"{{url}}/partner_api/v2/organizations/{{organization_id}}/teetimes?custom_params[with_pricing]=true&filter[date]=2025-03-24&page[number]=5","host":["{{url}}"],"path":["partner_api","v2","organizations","{{organization_id}}","teetimes"],"query":[{"key":"filter[course]","value":"{{course_id}}","description":"filter teetimes to a specific course","disabled":true},{"key":"include[]","value":"course","disabled":true},{"key":"include[]","value":"event","disabled":true},{"key":"custom_params[player_count][]","value":"4","disabled":true},{"key":"custom_params[holes]","value":"18","disabled":true},{"key":"custom_params[player_types][]","value":"{{player_type_id}}","disabled":true},{"key":"custom_params[with_pricing]","value":"true"},{"key":"filter[date]","value":"2025-03-24"},{"key":"page[number]","value":"5"},{"key":"filter[including_blocked]","value":"true","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Mar 2025 19:07:16 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1183"},{"key":"Connection","value":"keep-alive"},{"key":"x-frame-options","value":"ALLOWALL"},{"key":"vary","value":"Accept,Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"etag","value":"W/\"e5e3eec7ed780c03ea4da4af11bf9b01\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"_ls_oidc_auth_token=; domain=.chronogolf.com; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; SameSite=Lax; secure"},{"key":"Set-Cookie","value":"_ls_oidc_jti=; domain=.chronogolf.com; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; SameSite=Lax; secure"},{"key":"x-request-id","value":"80bf0596-d8b2-49f0-9dd3-74cd10967f86"},{"key":"x-runtime","value":"0.305790"},{"key":"strict-transport-security","value":"max-age=63072000; includeSubDomains"},{"key":"x-envoy-upstream-service-time","value":"309"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"925873526e2cc987-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"e80903b6-f153-42ab-ace2-a194d238f3c6\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"11:42\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"d737cfd5-60bd-48b2-9a70-fffc6639d164\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"9108f182-0bd3-42ba-9e4c-80aaf1499963\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"11:45\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"7bec633e-e246-47b8-b22e-b2ddc9ca615c\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"a4aaa90d-4b16-458b-baeb-824b590f5bfa\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"11:51\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"d737cfd5-60bd-48b2-9a70-fffc6639d164\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"c397ae1d-4bf7-4f23-a0a6-f780d0b22dd9\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"11:51\",\n                \"free_slots\": 4,\n                \"subtotal\": 105,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 105,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 105\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"da9587e4-ddf2-423b-8b1e-9d807405abe8\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"040d9ec2-d9c5-463d-a210-9dd90a62e0d3\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:00\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"7bec633e-e246-47b8-b22e-b2ddc9ca615c\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"3b91635f-1c90-4ede-928d-b53ef83226ff\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:00\",\n                \"free_slots\": 4,\n                \"subtotal\": 105,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 105,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 105\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"da9587e4-ddf2-423b-8b1e-9d807405abe8\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"f2901a9d-6631-4fa9-8b6b-69240aa86284\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:00\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"d737cfd5-60bd-48b2-9a70-fffc6639d164\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"cf3d827f-40f2-4552-8c95-6f283cadaa9e\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:09\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"d737cfd5-60bd-48b2-9a70-fffc6639d164\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"74458a05-5824-48ec-bb91-9ea0dd7f52c9\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:09\",\n                \"free_slots\": 4,\n                \"subtotal\": 105,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 105,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 105\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"da9587e4-ddf2-423b-8b1e-9d807405abe8\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"b1776541-2875-481c-96bf-84f8caf9c8cc\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:15\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"7bec633e-e246-47b8-b22e-b2ddc9ca615c\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"aa2cc212-edfa-4bb9-a5a0-e4a54332e7a3\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:18\",\n                \"free_slots\": 4,\n                \"subtotal\": 105,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 105,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 105\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"da9587e4-ddf2-423b-8b1e-9d807405abe8\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"c442e1fa-37b8-40f6-a550-3d539d5129dc\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:18\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"d737cfd5-60bd-48b2-9a70-fffc6639d164\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"930493b5-1289-46c0-9678-6b45293057c3\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:27\",\n                \"free_slots\": 4,\n                \"subtotal\": 105,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 105,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 105\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"da9587e4-ddf2-423b-8b1e-9d807405abe8\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"0a8691e4-b424-41c2-b683-5355ef9d7601\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:27\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"d737cfd5-60bd-48b2-9a70-fffc6639d164\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"11814c11-f138-4e21-8ab5-f169c61414e8\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:30\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"7bec633e-e246-47b8-b22e-b2ddc9ca615c\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"f231cc36-c15e-4ee4-8454-fbfc116c5190\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:36\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"d737cfd5-60bd-48b2-9a70-fffc6639d164\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"2fc1be26-400d-4233-867d-12f8ec1fc944\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:36\",\n                \"free_slots\": 4,\n                \"subtotal\": 105,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 105,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 105\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"da9587e4-ddf2-423b-8b1e-9d807405abe8\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"367e2785-2b7b-45ef-9bc9-c6e5230588c5\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:45\",\n                \"free_slots\": 4,\n                \"subtotal\": 105,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 105,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 105\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"da9587e4-ddf2-423b-8b1e-9d807405abe8\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"84583140-ea04-4aca-a52e-0d1de3f58f51\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:45\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"d737cfd5-60bd-48b2-9a70-fffc6639d164\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"725dcbb1-69ed-4a44-a010-db5f9e51809f\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:45\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"7bec633e-e246-47b8-b22e-b2ddc9ca615c\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"4e15de7e-2fc9-4a08-8743-0b41664a9032\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:54\",\n                \"free_slots\": 4,\n                \"subtotal\": 105,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 105,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 105\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"da9587e4-ddf2-423b-8b1e-9d807405abe8\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"d0102e23-369d-474e-872e-3a356f6eeb1e\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"12:54\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"d737cfd5-60bd-48b2-9a70-fffc6639d164\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"83e2261d-c7d7-4509-8501-1cc37664246e\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"13:00\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"7bec633e-e246-47b8-b22e-b2ddc9ca615c\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"a8a49ba7-ef77-4b70-b568-7cf8e8a4bcd3\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"13:03\",\n                \"free_slots\": 4,\n                \"subtotal\": 100,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 100,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 100\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"d737cfd5-60bd-48b2-9a70-fffc6639d164\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"e80111c0-5602-4236-847a-1c7271c78fc6\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-24\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"13:03\",\n                \"free_slots\": 4,\n                \"subtotal\": 105,\n                \"restrictions\": [],\n                \"rates\": [\n                    {\n                        \"player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"green_fee\": 105,\n                        \"half_cart\": 10,\n                        \"one_person_cart\": null,\n                        \"subtotal\": 105\n                    }\n                ]\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"da9587e4-ddf2-423b-8b1e-9d807405abe8\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"page\": 5,\n        \"page_size\": 25,\n        \"total\": 223,\n        \"total_pages\": 9\n    }\n}"}],"_postman_id":"c1d91516-644b-4be1-9394-c393a7050c2d"},{"name":"Retrieve a specific teetime","id":"66004ee7-d4ef-4fe7-9b6b-a9f75aca4f1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/teetimes/{{teetime_id}}","urlObject":{"path":["partner_api","v2","teetimes","{{teetime_id}}"],"host":["{{url}}"],"query":[{"disabled":true,"key":"include[]","value":"course"},{"disabled":true,"key":"include[]","value":"event"},{"disabled":true,"key":"custom_params[player_count]","value":"int, 1-4"},{"disabled":true,"key":"custom_params[holes]","value":"18"},{"disabled":true,"key":"custom_params[player_types][]","value":"{{player_type_id}}"},{"disabled":true,"key":"custom_params[with_pricing]","value":"true/false"},{"disabled":true,"key":"custom_params[player_types][]","value":"{{player_type_2_id}}"}],"variable":[]}},"response":[{"id":"7f4f6893-a399-4264-8d0a-5b5dc1278f39","name":"Retrieve a specific teetime","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"{{url}}/partner_api/v2/teetimes/{{teetime_id}}","host":["{{url}}"],"path":["partner_api","v2","teetimes","{{teetime_id}}"],"query":[{"key":"filter[course]","value":"{{course_id}}","description":"filter teetimes to a specific course","disabled":true},{"key":"filter[date]","value":"YYYY-MM-DD","disabled":true},{"key":"include[]","value":"course","disabled":true},{"key":"include[]","value":"event","disabled":true},{"key":"custom_params[player_count]","value":"int, 1-4","disabled":true},{"key":"custom_params[holes]","value":"18","disabled":true},{"key":"custom_params[player_types]","value":"[player_type_id, player_type_id]","disabled":true},{"key":"custom_params[with_pricing]","value":"true/false","disabled":true},{"key":"","type":"text","value":"","disabled":true},{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Mar 2025 19:12:50 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"229"},{"key":"Connection","value":"keep-alive"},{"key":"x-frame-options","value":"ALLOWALL"},{"key":"vary","value":"Accept,Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"etag","value":"W/\"c6573da4c205968dda8aa0a10ccbb8f6\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"_ls_oidc_auth_token=; domain=.chronogolf.com; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; SameSite=Lax; secure"},{"key":"Set-Cookie","value":"_ls_oidc_jti=; domain=.chronogolf.com; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; SameSite=Lax; secure"},{"key":"x-request-id","value":"ce6a3ff1-0b02-4b60-8e9c-159a880125e9"},{"key":"x-runtime","value":"0.445545"},{"key":"strict-transport-security","value":"max-age=63072000; includeSubDomains"},{"key":"x-envoy-upstream-service-time","value":"449"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"92587b765b21e600-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"9108f182-0bd3-42ba-9e4c-80aaf1499963\",\n        \"type\": \"teetime\",\n        \"attributes\": {\n            \"blocked\": false,\n            \"date\": \"2025-03-24\",\n            \"hole\": 1,\n            \"format\": \"normal\",\n            \"start_time\": \"11:45\",\n            \"free_slots\": 4\n        },\n        \"relationships\": {\n            \"course\": {\n                \"data\": {\n                    \"id\": \"7bec633e-e246-47b8-b22e-b2ddc9ca615c\",\n                    \"type\": \"course\"\n                }\n            },\n            \"event\": {\n                \"data\": null\n            }\n        }\n    }\n}"}],"_postman_id":"66004ee7-d4ef-4fe7-9b6b-a9f75aca4f1f"}],"id":"873740e2-8bec-4f2b-b170-bd52bc2ffc7c","_postman_id":"873740e2-8bec-4f2b-b170-bd52bc2ffc7c","description":""},{"name":"Customers","item":[{"name":"List all customers","id":"dd6002d0-ec45-413c-8ec4-b134afa09dc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/customers","description":"<p>Returns a list of the organization's customers.</p>\n<p>If <code>filter[phone]</code> or <code>filter[email]</code> leads to a 403 response, the club has disabled the <strong>customer data sharing</strong> permissions.</p>\n<p>Those permissions are available in the Golf UI under <strong>Settings &gt; Integrators</strong> by clicking on the name of the integration.</p>\n<p>The <code>include[]</code> address or extended_data will remain empty if the same permissions are disabled by the club.</p>\n<p>If in the API response, you don't get email, phone, gender, or date of birth fields, the club has disabled such permissions.</p>\n","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","customers"],"host":["{{url}}"],"query":[{"disabled":true,"key":"filter[first_name]","value":"First name"},{"disabled":true,"key":"filter[last_name]","value":"Last name"},{"disabled":true,"key":"filter[email]","value":"email"},{"disabled":true,"key":"filter[phone]","value":"phone number"},{"disabled":true,"description":{"content":"<p>Returns only customers that got created/updated/archived since the timestamp</p>\n","type":"text/plain"},"key":"filter[updated_since]","value":"YYYY-MM-DD"},{"disabled":true,"key":"filter[player_types][]","value":"{{player_type_id}}"},{"disabled":true,"description":{"content":"<p>show only the players that have or have not been archived. </p>\n","type":"text/plain"},"key":"filter[archived]","value":"true/false"},{"disabled":true,"description":{"content":"<p>includes the customers' address information</p>\n","type":"text/plain"},"key":"include[]","value":"address"},{"disabled":true,"description":{"content":"<p>Includes the organization information</p>\n","type":"text/plain"},"key":"include[]","value":"organization"},{"disabled":true,"description":{"content":"<p>Includes the player types' information</p>\n","type":"text/plain"},"key":"include[]","value":"player_types"},{"disabled":true,"description":{"content":"<p>Includes data for custom fields (if applicable)</p>\n","type":"text/plain"},"key":"include[]","value":"extended_data"}],"variable":[]}},"response":[{"id":"d1cef9d8-b576-4144-9675-1e9fa6cbe7fb","name":"List Customers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"{{url}}/partner_api/v2/organizations/{{organization_id}}/customers?","host":["{{url}}"],"path":["partner_api","v2","organizations","{{organization_id}}","customers"],"query":[{"key":"include[]","value":"player_types","disabled":true},{"key":"filter[first_name]","value":"Billy","disabled":true},{"key":"filter[last_name]","value":"Allen","type":"text","disabled":true},{"key":"filter[email]","value":"billy.allen","type":"text","disabled":true},{"key":"filter[phone]","value":"","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Aug 2019 20:30:04 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Etag","value":"W/\"07498106d06dd82d0c1645b242f78d4c\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.125404"},{"key":"X-Request-Id","value":"615652e6-5934-4654-93c7-90d640bb2ba0"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"505d71ded9a3ca67-YUL"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"e767e06d-e8d9-40ef-8b45-d0363b77a1fb\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Billy\",\n                \"last_name\": \"Allen\",\n                \"email\": \"billy.allen@golf-de-saint-germain.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"a2216e98-73f4-4d2c-9884-19502487c30d\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Billy\",\n                \"last_name\": \"Allen\",\n                \"email\": \"billy.allen@royal-montreal-golf-club.ca\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"2b0f324d-b846-4c8d-be95-ae6ab5e6dc75\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Connor\",\n                \"last_name\": \"Anderson\",\n                \"email\": \"connor.anderson@golf-de-saint-germain.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"db5cdecd-48bd-4fde-9a3f-1637ca104e3e\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Connor\",\n                \"last_name\": \"Anderson\",\n                \"email\": \"connor.anderson@royal-montreal-golf-club.ca\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"84aa2191-d844-472d-aaf7-bcd839992606\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Emerson\",\n                \"last_name\": \"Atkins\",\n                \"email\": \"emerson.atkins@golf-de-saint-germain.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"87183b07-eb65-4a93-ad1e-7687b852c2ca\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Emerson\",\n                \"last_name\": \"Atkins\",\n                \"email\": \"emerson.atkins@royal-montreal-golf-club.ca\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"85557d78-d0f1-455d-8328-181e6746ad66\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Sara\",\n                \"last_name\": \"Badeaux\",\n                \"email\": \"sara.badeaux@golf-de-saint-germain.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"b273f0a1-fcbd-4a50-9e8f-990a605566de\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Sara\",\n                \"last_name\": \"Badeaux\",\n                \"email\": \"sara.badeaux@royal-montreal-golf-club.ca\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"dd625f6c-de02-4355-a72c-0f5b512aa8da\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Edmond\",\n                \"last_name\": \"Barnier\",\n                \"email\": \"edmond.barnier@golf-de-saint-germain.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"16592574-0ee4-425a-86be-8645b67030d2\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Edmond\",\n                \"last_name\": \"Barnier\",\n                \"email\": \"edmond.barnier@royal-montreal-golf-club.ca\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"fa7dd92b-9ddd-4239-bcd0-6c39200b7ed8\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Jessica\",\n                \"last_name\": \"Bell\",\n                \"email\": \"jessica@chronogolf.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"3c8b1a0b-f161-4876-8e4b-5e55a6586ff1\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Jessica\",\n                \"last_name\": \"Bell\",\n                \"email\": \"jessica@chronogolf.ca\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"bc75aff8-a8d1-4482-bc9e-84843a728885\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Jesse\",\n                \"last_name\": \"Black\",\n                \"email\": \"jesse.black@golf-de-saint-germain.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"7a03e097-bc48-4447-aea6-4cf668fff733\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Jesse\",\n                \"last_name\": \"Black\",\n                \"email\": \"jesse.black@royal-montreal-golf-club.ca\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"f89cc896-b60b-4b68-88d9-c539131132b2\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Alex\",\n                \"last_name\": \"Booth\",\n                \"email\": \"alex.booth@golf-de-saint-germain.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"9710c6e4-5432-4bc2-b368-7298a3fd9ca9\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Alex\",\n                \"last_name\": \"Booth\",\n                \"email\": \"alex.booth@royal-montreal-golf-club.ca\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"f7a82954-6003-41f8-95d7-ac52c4f99be4\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Camille\",\n                \"last_name\": \"Bossuet\",\n                \"email\": \"camille.bossuet@golf-de-saint-germain.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"dbf45fde-07d0-44f2-818f-a942e0e176d5\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Camille\",\n                \"last_name\": \"Bossuet\",\n                \"email\": \"camille.bossuet@royal-montreal-golf-club.ca\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"111f16df-36a3-4503-9e14-7a72727b611a\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Vincent\",\n                \"last_name\": \"Brunelle\",\n                \"email\": \"vincent.brunelle@golf-de-saint-germain.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"c58422ce-def8-4292-b348-0f2ccddeef79\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Vincent\",\n                \"last_name\": \"Brunelle\",\n                \"email\": \"vincent.brunelle@royal-montreal-golf-club.ca\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"c6be11ba-260b-4bff-9fe1-d022b0a9a7ec\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Charlotte\",\n                \"last_name\": \"Byrne\",\n                \"email\": \"charlotte.byrne@golf-de-saint-germain.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"9bbbabac-9fa9-4c53-9285-4d6c59ef7641\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Charlotte\",\n                \"last_name\": \"Byrne\",\n                \"email\": \"charlotte.byrne@royal-montreal-golf-club.ca\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"3f2868a4-708a-45f5-b3c4-21bc811b7f36\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Virginie\",\n                \"last_name\": \"Cailloux\",\n                \"email\": \"virginie.cailloux@golf-de-saint-germain.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"31b0fdfa-b741-4872-bc7c-c69261645e67\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Virginie\",\n                \"last_name\": \"Cailloux\",\n                \"email\": \"virginie.cailloux@royal-montreal-golf-club.ca\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"14f70550-1fd9-46bb-8b5b-5aa96265ebb5\",\n            \"type\": \"customer\",\n            \"attributes\": {\n                \"first_name\": \"Julien\",\n                \"last_name\": \"Carrel\",\n                \"email\": \"julien@chronogolf.fr\",\n                \"gender\": null,\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"address\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"page\": 1,\n        \"page_size\": 25,\n        \"total\": 112,\n        \"total_pages\": 5\n    }\n}"}],"_postman_id":"dd6002d0-ec45-413c-8ec4-b134afa09dc7"},{"name":"Retrieve a specific customer","id":"f40bbf6f-084a-48a9-82b2-6630aa74cc2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/customers/{{customer_id}}?organization_id={{organization_id}}","description":"<p>Returns a specific customer matching the specified ID.</p>\n","urlObject":{"path":["partner_api","v2","customers","{{customer_id}}"],"host":["{{url}}"],"query":[{"disabled":true,"key":"include[]","value":"address"},{"disabled":true,"key":"include[]","value":"organization"},{"disabled":true,"key":"include[]","value":"player_types"},{"disabled":true,"key":"include[]","value":"extended_data"},{"description":{"content":"<p>Required</p>\n","type":"text/plain"},"key":"organization_id","value":"{{organization_id}}"}],"variable":[]}},"response":[{"id":"3e8fab43-50c7-445c-85f1-97e2e90d93b9","name":"Retrieve a specific customer","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"{{url}}/partner_api/v2/customers/{{customer_id}}?organization_id={{organization_id}}","host":["{{url}}"],"path":["partner_api","v2","customers","{{customer_id}}"],"query":[{"key":"include[]","value":"organization","disabled":true},{"key":"include[]","value":"player_types","disabled":true},{"key":"organization_id","value":"{{organization_id}}"},{"key":"include[]","value":"address","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Mar 2025 15:49:43 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"591"},{"key":"Connection","value":"keep-alive"},{"key":"x-frame-options","value":"ALLOWALL"},{"key":"vary","value":"Accept,Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"etag","value":"W/\"c5d8373cc61fe94ed1a95ce3ace92135\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"_ls_oidc_auth_token=; domain=.chronogolf.com; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; SameSite=Lax; secure"},{"key":"Set-Cookie","value":"_ls_oidc_jti=; domain=.chronogolf.com; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; SameSite=Lax; secure"},{"key":"x-request-id","value":"63200479-6a4e-41ca-80e4-fae1407ba996"},{"key":"x-runtime","value":"0.109139"},{"key":"strict-transport-security","value":"max-age=63072000; includeSubDomains"},{"key":"x-envoy-upstream-service-time","value":"113"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"921da450e83c57c4-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"adc776b0-94ce-4edf-b7cd-3d621dd1cad5\",\n        \"type\": \"customer\",\n        \"attributes\": {\n            \"first_name\": \"John\",\n            \"last_name\": \"Dev\",\n            \"ref\": \"FA2F-XOU8\",\n            \"member_no\": null,\n            \"marketing_consent\": true,\n            \"date_of_birth\": \"2000-06-05\",\n            \"email\": null,\n            \"gender\": 1,\n            \"phone\": \"55588844778\",\n            \"created_at\": \"2024-11-04T11:17:59-05:00\",\n            \"updated_at\": \"2025-03-17T11:46:28-04:00\",\n            \"archived_at\": null,\n            \"prefers_to_be_hidden\": false,\n            \"default_player_type_id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n            \"tags\": [],\n            \"integrators\": {\n                \"data\": []\n            },\n            \"family_account_primary_customer_id\": null\n        },\n        \"relationships\": {\n            \"address\": {\n                \"data\": {\n                    \"id\": \"0119ce65-3a55-461d-8f47-69efb174d3d9\",\n                    \"type\": \"address\"\n                }\n            },\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"bd270340-3202-44b3-8905-55d3130f2d81\",\n                    \"type\": \"organization\"\n                }\n            },\n            \"subscriptions\": {\n                \"data\": []\n            },\n            \"player_types\": {\n                \"data\": [\n                    {\n                        \"id\": \"6c50f90f-6a59-4d3c-9ff6-bfffc5a50af1\",\n                        \"type\": \"player_type\"\n                    }\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"0119ce65-3a55-461d-8f47-69efb174d3d9\",\n            \"type\": \"address\",\n            \"attributes\": {\n                \"address_one\": \"700 rue Saint Antoine E\",\n                \"address_two\": null,\n                \"country_code\": \"CA\",\n                \"state_code\": \"QC\",\n                \"city\": \"Montreal\",\n                \"postcode\": \"H2Y 1A6\"\n            }\n        }\n    ]\n}"}],"_postman_id":"f40bbf6f-084a-48a9-82b2-6630aa74cc2a"},{"name":"Create a customer at a club","id":"3ff35613-e7d2-4ea3-b615-9a0ed907385d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"customer\",\n        \"attributes\": {\n            \"first_name\": \"joan\",\n            \"last_name\": \"Hale\",\n            \"email\": \"joanhale@royal-montreal-golf-club.ca\",\n            \"phone\": \"555-885-4778\",\n            \"date_of_birth\": \"2000-06-05\",\n            \"gender\": 1,\n            \"member_no\": \"333\",\n            \"tags\": [\n                \"first integrator tag\",\n                \"second integrator tag\"\n            ],\n            \"address\": {\n                \"address_one\": \"700 rue St-Antoine E\",\n                \"address_two\": null,\n                \"country_code\": \"CA\",\n                \"state_code\": \"QC\",\n                \"city\": \"Montreal\",\n                \"postcode\": \"H4Y1A6\"\n            }\n        },\n        \"relationships\": {\n            \"player_type\": {\n                \"data\": {\n                    \"id\": \"3be3e9b0-5767-4115-9c50-45a064dffb4a\",\n                    \"type\": \"player_type\"\n                }    \n            }\n        }\n    }\n}"},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/customers/","description":"<p>The body payload below has all the customer fields you can configure upon customer creation.</p>\n<blockquote>\n<p>{\"errors\":[{\"status\":400,\"code\":\"bad_request\",\"detail\":\"User is already customer of the club\"}]}</p>\n</blockquote>\n<p>The API checks the combination submitted. If names and phones match an existing customer profile, you will get this response.</p>\n<p>Same if the email address already exists, but the detail message is different:</p>\n<blockquote>\n<p>{\"errors\":[{\"status\":400,\"code\":\"bad_request\",\"detail\":\"This email you entered has already been registered with an account: <a href=\"mailto:xxxx@gmail.com\">xxxx@gmail.com</a>\"}]}</p>\n</blockquote>\n","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","customers",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c169bf39-fe5b-4be1-85b8-8641dcd6f599","name":"Create a customer at a club","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"data\": {\n        \"type\": \"customer\",\n        \"attributes\": {\n            \"first_name\": \"Chuck\",\n            \"last_name\": \"Haleran\",\n            \"tags\": [\"first integrator tag\", \"second integrator tag\"],\n            \"email\": \"chaleran@royal-montreal-golf-club.ca\",\n            \"gender\": 1,\n            \"phone\": \"555-885477-8\",\n            \"date_of_birth\": \"2000-06-05\"\n        }\n  }\n}"},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/customers/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Aug 2019 14:20:13 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"201 Created"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"fbf99da8-5deb-47bd-9db4-308af67779c7"},{"key":"Location","value":"https://pr-sorenstam.chronogolf.ca/partner_api/v2/organizations/8e678adf-4308-436f-a0e0-379a8f6551e7/customers/703593f1-904e-42ad-a250-12086ad5425f"},{"key":"Etag","value":"W/\"f33e266c3e46ab035950f38d54329b5d\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"1.710910"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"50df2a0c1ea02430-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"703593f1-904e-42ad-a250-12086ad5425f\",\n        \"type\": \"customer\",\n        \"attributes\": {\n            \"first_name\": \"Chuck\",\n            \"last_name\": \"Haleran\",\n            \"created_at\": \"2019-08-29T10:20:12-04:00\",\n            \"updated_at\": \"2019-08-29T10:20:12-04:00\",\n            \"default_player_type_id\": \"4c59446f-8132-4ddd-9ae6-dc44bfa76830\",\n            \"tags\": [\n                \"first integrator tag\",\n                \"second integrator tag\"\n            ],\n            \"date_of_birth\": \"2000-06-05\",\n            \"gender\": 1,\n            \"phone\": \"5558854778\"\n        },\n        \"relationships\": {\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"8e678adf-4308-436f-a0e0-379a8f6551e7\",\n                    \"type\": \"organization\"\n                }\n            },\n            \"player_types\": {\n                \"data\": [\n                    {\n                        \"id\": \"4c59446f-8132-4ddd-9ae6-dc44bfa76830\",\n                        \"type\": \"player_type\"\n                    }\n                ]\n            },\n            \"address\": {\n                \"data\": null\n            }\n        }\n    }\n}"}],"_postman_id":"3ff35613-e7d2-4ea3-b615-9a0ed907385d"},{"name":"Update a specific customer","id":"ab4d817d-a2b7-4150-bed5-a818a8f2ec42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": \"11d014bd-b153-423b-83b6-1a699791dd2a\",\n        \"type\": \"customer\",\n        \"attributes\": {\n            \"first_name\": \"Charles\",\n            \"last_name\": \"Halphens\",\n            \"phone\": \"545-888-4778\",\n            \"member_no\": \"YUL\",\n            \"tags\": [\n                \"first integrator tag\",\n                \"second integrator tag\"\n            ],\n            \"address\": {\n                \"address_one\": \"700 rue St-Antoine E\",\n                \"country_code\": \"CA\",\n                \"state_code\": \"QC\",\n                \"city\": \"Montreal\",\n                \"postcode\": \"H4Y1A6\"\n            }\n        },\n        \"relationships\": {\n            \"player_type\": {\n                \"data\": {\n                    \"id\": \"3be3e9b0-5767-4115-9c50-45a064dffb4a\",\n                    \"type\": \"player_type\"\n                }    \n            }\n       }\n    }\n}"},"url":"{{url}}/partner_api/v2/customers/{{customer_id}}?organization_id={{organization_id}}","description":"<p>Update a specific customer at a club.</p>\n<p>The body payload below has all the customer fields you can configure upon updating a customer.</p>\n","urlObject":{"path":["partner_api","v2","customers","{{customer_id}}"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Required</p>\n","type":"text/plain"},"key":"organization_id","value":"{{organization_id}}"}],"variable":[]}},"response":[{"id":"5891e341-a683-44d6-9068-0d89bd89d193","name":"Update a specific customer","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"data\": {\n        \"id\": \"813b0844-b8ea-4401-a427-c26fcdb89afe\",\n        \"type\": \"customer\",\n        \"attributes\": {\n            \"first_name\": \"Charlie\",\n            \"last_name\": \"Halphens\",\n            \"tags\": [\"first integrator tag\", \"second integrator tag\"],\n            \"email\": \"chalphens@royal-montreal-golf-club.ca\",\n            \"gender\": 1,\n            \"phone\": \"555-8884477-8\",\n            \"date_of_birth\": \"2000-06-05\"\n        }\n  }\n}"},"url":{"raw":"{{url}}/partner_api/v2/customers/{{customer_id}}?organization_id={{organization_id}}","host":["{{url}}"],"path":["partner_api","v2","customers","{{customer_id}}"],"query":[{"key":"organization_id","value":"{{organization_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 22 Aug 2019 20:15:45 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"cb38ada3-26c5-400a-9a40-87b617a66321"},{"key":"Etag","value":"W/\"2c633b6b2df6cfac945a02acbf8f49f0\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.312502"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"50a7853e2a7e3fdb-YUL"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"813b0844-b8ea-4401-a427-c26fcdb89afe\",\n        \"type\": \"customer\",\n        \"attributes\": {\n            \"first_name\": \"Charlie\",\n            \"last_name\": \"Halphens\",\n            \"created_at\": \"2019-08-22T14:49:18-04:00\",\n            \"updated_at\": \"2019-08-22T15:47:36-04:00\",\n            \"default_player_type_id\": \"8d43607c-ff67-40f1-8107-36b3fbf6ede4\",\n            \"tags\": [\n                \"first club tag\",\n                \"second club tag\",\n                \"first integrator tag\",\n                \"second integrator tag\"\n            ],\n            \"date_of_birth\": \"2000-06-05\",\n            \"email\": \"coralie.halphen@royal-montreal-golf-club.ca\",\n            \"gender\": 1,\n            \"phone\": \"55588844778\"\n        },\n        \"relationships\": {\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"8e678adf-4308-436f-a0e0-379a8f6551e7\",\n                    \"type\": \"organization\"\n                }\n            },\n            \"player_types\": {\n                \"data\": [\n                    {\n                        \"id\": \"8d43607c-ff67-40f1-8107-36b3fbf6ede4\",\n                        \"type\": \"player_type\"\n                    }\n                ]\n            },\n            \"address\": {\n                \"data\": null\n            }\n        }\n    }\n}"}],"_postman_id":"ab4d817d-a2b7-4150-bed5-a818a8f2ec42"}],"id":"1ac6e058-eabd-43be-aaa9-7caffeef2c10","_postman_id":"1ac6e058-eabd-43be-aaa9-7caffeef2c10","description":""},{"name":"Player Types","item":[{"name":"List all Player Types","id":"e9f6968a-1dd3-4dfd-8a14-50ef1955372e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/player_types","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","player_types"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bb9726d9-485b-42e4-92d7-faed71bc76ff","name":"List all Player Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/player_types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Dec 2019 18:10:07 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"56ecaf31-dfb5-433d-843e-14ae9cdfa5d7"},{"key":"Etag","value":"W/\"15f22388ba0d46d41609e26acc1095b4\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.100324"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5407f999cd7cecee-YUL"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"c156c3bd-69d4-4986-9581-001a560ee162\",\n            \"type\": \"player_type\",\n            \"attributes\": {\n                \"name\": \"3 Day Member\",\n                \"default_role\": \"member\",\n                \"booking_range\": 3\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                        \"type\": \"organization\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"1d27ecba-fa30-461e-b681-bb1bc31b7147\",\n            \"type\": \"player_type\",\n            \"attributes\": {\n                \"name\": \"Junior\",\n                \"default_role\": \"public\",\n                \"booking_range\": 7\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                        \"type\": \"organization\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"bfd9aef6-defa-407f-b49f-a3e2ea274f1b\",\n            \"type\": \"player_type\",\n            \"attributes\": {\n                \"name\": \"corporate member\",\n                \"default_role\": \"member\",\n                \"booking_range\": 7\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                        \"type\": \"organization\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"ba75e08e-12c7-4774-9670-30ab5a2c92b9\",\n            \"type\": \"player_type\",\n            \"attributes\": {\n                \"name\": \"Public\",\n                \"default_role\": \"public\",\n                \"booking_range\": 14\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                        \"type\": \"organization\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"fff480fd-c79b-4753-bfd4-a039e41cec9d\",\n            \"type\": \"player_type\",\n            \"attributes\": {\n                \"name\": \"Member\",\n                \"default_role\": \"member\",\n                \"booking_range\": 14\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                        \"type\": \"organization\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"page\": 1,\n        \"page_size\": 25,\n        \"total\": 5,\n        \"total_pages\": 1\n    }\n}"}],"_postman_id":"e9f6968a-1dd3-4dfd-8a14-50ef1955372e"},{"name":"Retrieve a specific player type","id":"01c0184f-d831-4bf8-8af1-9e4c807791a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/player_types/{{player_type_id}}","urlObject":{"path":["partner_api","v2","player_types","{{player_type_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9e218707-b1fd-4c14-ae81-e716cb2f5f14","name":"Retrieve a specific player type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/player_types/{{player_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Dec 2019 18:10:26 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"b6ff9585-dc41-4179-88cb-13a3393cb4d5"},{"key":"Etag","value":"W/\"94c9b9de93d404370dcbd5a5685cec65\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.038982"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5407fa14ffa4ecee-YUL"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"ba75e08e-12c7-4774-9670-30ab5a2c92b9\",\n        \"type\": \"player_type\",\n        \"attributes\": {\n            \"name\": \"Public\",\n            \"default_role\": \"public\",\n            \"booking_range\": 14\n        },\n        \"relationships\": {\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                    \"type\": \"organization\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"01c0184f-d831-4bf8-8af1-9e4c807791a8"}],"id":"125113d0-178f-49c8-973c-8f2758d32bb5","description":"<p>Retrieve a list of player types at a given club</p>\n","event":[{"listen":"prerequest","script":{"id":"92a40095-3206-4782-8ee3-9bc1eec9ef27","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"08f7bde1-e65f-4766-8597-fcea66aed2be","type":"text/javascript","exec":[""]}}],"_postman_id":"125113d0-178f-49c8-973c-8f2758d32bb5"},{"name":"Reservations (Create)","item":[{"name":"Create a reservation request","event":[{"listen":"test","script":{"id":"e7dddbf5-267c-4264-a46e-da0ad4f24390","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"reservation_request_id\", jsonData.data.id);"],"type":"text/javascript"}}],"id":"12276f94-8c8a-401f-ba8f-a765a0e31eb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"reservation_request\",\n        \"attributes\": {\n            \"note\": \"A note visible to the club\",\n            \"holes\": 18,\n            \"cart_count\": 2\n        },\n        \"relationships\": {\n            \"teetime\": {\n                \"data\": {\n                    \"type\": \"teetime\",\n                    \"id\": \"67cdbec8-2345-4e62-b55c-1481e9d80e73\"\n                }\n            },\n            \"tour_operator\": {\n                \"data\": {\n                    \"type\": \"tour_operator\",\n                    \"id\": \"df4def41-a1dc-430e-a27f-aea9af9f577e\"\n                }\n            }\n        }\n    }\n}"},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservation_requests","description":"<p>The first step to creating a reservation via the V2 Partner API is to create a reservation request.</p>\n<p>Indicate the number of holes and (optionally) a note under the attributes field.</p>\n<p>Indicate the teetime and (optionally) the tour operator as relationships.</p>\n","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","reservation_requests"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"48ddca89-80f2-4a7a-940a-4b0ec0b1d92e","name":"Create a reservation request","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"reservation_request\",\n        \"attributes\": {\n            \"note\": \"A note visible to the club\",\n            \"holes\": 18,\n            \"cart_count\": 2\n        },\n        \"relationships\": {\n            \"teetime\": {\n                \"data\": {\n                    \"type\": \"teetime\",\n                    \"id\": \"15df8d4a-2822-41d0-924d-e25ca1099ac4\"\n                }\n            },\n            \"tour_operator\": {\n                \"data\": {\n                    \"type\": \"tour_operator\",\n                    \"id\": \"63a5e3b0-1f47-431b-a253-96c9df51fef8\"\n                }\n            }\n        }\n    }\n}"},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservation_requests"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Dec 2019 18:34:29 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"201 Created"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"ae7f683f-9a9c-4086-9d0c-6631b7078906"},{"key":"Location","value":"https://demo.chronogolf.ca/partner_api/v2/reservation_requests/ab79050a-8db4-4d0e-a411-da6f90cdaaa1"},{"key":"Etag","value":"W/\"1202b747b4e6121dcd5d58142e11d318\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.069677"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"54081d4a7eb63fb1-YUL"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"ab79050a-8db4-4d0e-a411-da6f90cdaaa1\",\n        \"type\": \"reservation_request\",\n        \"attributes\": {\n            \"holes\": 18,\n            \"note\": \"A note visible to the club\",\n            \"cart_count\": 2\n        },\n        \"relationships\": {\n            \"round_requests\": {\n                \"data\": []\n            },\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                    \"type\": \"organization\"\n                }\n            },\n            \"teetime\": {\n                \"data\": {\n                    \"id\": \"15df8d4a-2822-41d0-924d-e25ca1099ac4\",\n                    \"type\": \"teetime\"\n                }\n            },\n            \"tour_operator\": {\n                \"data\": {\n                    \"id\": \"63a5e3b0-1f47-431b-a253-96c9df51fef8\",\n                    \"type\": \"tour_operator\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"12276f94-8c8a-401f-ba8f-a765a0e31eb5"},{"name":"Retrieve a reservation request","event":[{"listen":"test","script":{"id":"e7dddbf5-267c-4264-a46e-da0ad4f24390","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"reservation_request_id\", jsonData.data.id);"],"type":"text/javascript"}}],"id":"586fe35f-9c15-4a8f-881d-2f7e6aabeb89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/partner_api/v2/reservation_requests/{{reservation_request_id}}","description":"<p>The reservation request ID will return a 404 response once a reservation has been confirmed.</p>\n","urlObject":{"path":["partner_api","v2","reservation_requests","{{reservation_request_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0effecd5-c3c0-4fd7-be28-825c30d1b3b4","name":"Retrieve a reservation request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/partner_api/v2/reservation_requests/{{reservation_request_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Dec 2019 18:34:45 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"67fa5cf7-dd43-49b0-b259-54e186587282"},{"key":"Etag","value":"W/\"c440604184ffd411ed277c9e8296e6ad\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.051232"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"54081db36cef3fb1-YUL"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"ab79050a-8db4-4d0e-a411-da6f90cdaaa1\",\n        \"type\": \"reservation_request\",\n        \"attributes\": {\n            \"holes\": 18,\n            \"note\": \"A note visible to the club\",\n            \"cart_count\": 2\n        },\n        \"relationships\": {\n            \"round_requests\": {\n                \"data\": []\n            },\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                    \"type\": \"organization\"\n                }\n            },\n            \"teetime\": {\n                \"data\": {\n                    \"id\": \"15df8d4a-2822-41d0-924d-e25ca1099ac4\",\n                    \"type\": \"teetime\"\n                }\n            },\n            \"tour_operator\": {\n                \"data\": {\n                    \"id\": \"63a5e3b0-1f47-431b-a253-96c9df51fef8\",\n                    \"type\": \"tour_operator\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"586fe35f-9c15-4a8f-881d-2f7e6aabeb89"},{"name":"Create a round request","event":[{"listen":"test","script":{"id":"286bd0f8-b6af-434d-a2d7-acc71a9398c0","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"round_request_id\", jsonData.data.id);"],"type":"text/javascript"}}],"id":"2b02d283-0f0a-4194-8aab-c5aba784c55d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"round_request\",\n        \"attributes\": {\n        \t\"green_fee\": 45.00,\n        \t\"cart_fee\": 15.95,\n            \"guest\": {},\n            \"extras\": [\"bd73921f-e4de-475d-8852-e432b9819def\",\"70813b09-06a1-4274-bfcd-4ed4fc355393\"],\n            \"kits\": [\"9e5f622b-0251-4447-bf80-fabc8bf581e9\"]\n\n        },\n        \"relationships\": {\n            \"reservation_request\": {\n                \"data\": {\n                    \"type\": \"reservation_request\",\n                    \"id\": \"{{reservation_request_id}}\"\n                }\n            },\n            \"customer\": {\n                \"data\": {\n                    \"type\": \"customer\",\n                    \"id\": \"47119b0e-9368-4d0c-acdb-9cf0f66e2ea5\"\n                }\n            },\n            \"player_type\": {\n                \"data\": {\n                    \"type\": \"player_type\",\n                    \"id\": \"51ba58b4-82c0-48e7-8b05-1bb4ab02f829\"\n                }\n            }\n        }\n    }\n}"},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/round_requests","description":"<p>In order to add players to a reservation, you need to associate them with a reservation request by creating a round request.</p>\n<p>Associate the round request with a reservation request by including the reservation request as a relationship.</p>\n<p>If you would like to include a customer, you can do so by including them as a relationship as well. If you would like to include a guest, you can do so under the attributes field, including a first name, and or last name. It will overwrite guest data if <strong>both are included</strong> in the body payload.</p>\n<p>A round request will have the default player type for your integrator, unless you specify the player type you would like by including it as a relationship.</p>\n<p>You can optionally include a green fee price, as well as a cart price.</p>\n<p>You can also optionally include extras and kits.</p>\n","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","round_requests"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e102a2d0-162e-49fc-beda-df2b397a0e85","name":"Create a round request","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"round_request\",\n        \"attributes\": {\n        \t\"green_fee\": 45.00,\n        \t\"cart_fee\": 15.95,\n            \"guest\": {\n                \"first_name\": \"Ronald\",\n                \"last_name\": \"Dalton\"\n            }\n        },\n        \"relationships\": {\n            \"reservation_request\": {\n                \"data\": {\n                    \"type\": \"reservation_request\",\n                    \"id\": \"{{reservation_request_id}}\"\n                }\n            },\n            \"player_type\": {\n                \"data\": {\n                    \"type\": \"player_type\",\n                    \"id\": \"ba75e08e-12c7-4774-9670-30ab5a2c92b9\"\n                }\n            }\n        }\n    }\n}"},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/round_requests"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Dec 2019 18:35:34 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"201 Created"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"71b8e99a-281e-43f7-8491-a2ec9c999ccc"},{"key":"Location","value":"https://demo.chronogolf.ca/partner_api/v2/round_requests/2dadefc8-1ec7-48ab-bce5-3a22fa0cfa9d"},{"key":"Etag","value":"W/\"44a46fd63e4e1ac3c4f823e0446cc47c\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.056460"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"54081ee43ae03fb1-YUL"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"2dadefc8-1ec7-48ab-bce5-3a22fa0cfa9d\",\n        \"type\": \"round_request\",\n        \"attributes\": {\n            \"guest\": {\n                \"first_name\": \"Ronald\",\n                \"last_name\": \"Dalton\"\n            },\n            \"cart_fee\": \"15.95\",\n            \"green_fee\": \"45.0\"\n        },\n        \"relationships\": {\n            \"reservation_request\": {\n                \"data\": {\n                    \"id\": \"ab79050a-8db4-4d0e-a411-da6f90cdaaa1\",\n                    \"type\": \"reservation_request\"\n                }\n            },\n            \"player_type\": {\n                \"data\": {\n                    \"id\": \"ba75e08e-12c7-4774-9670-30ab5a2c92b9\",\n                    \"type\": \"player_type\"\n                }\n            },\n            \"customer\": {\n                \"data\": null\n            }\n        }\n    }\n}"}],"_postman_id":"2b02d283-0f0a-4194-8aab-c5aba784c55d"},{"name":"Retrieve a round request","id":"bff0898e-186d-4d65-894f-f2a70d8b1b29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/partner_api/v2/round_requests/{{round_request_id}}","description":"<p>Retrieve a specific round request by its ID.</p>\n<p>The round request IDs will return a 404 response once a reservation has been confirmed.</p>\n","urlObject":{"path":["partner_api","v2","round_requests","{{round_request_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"cad4b7dc-50af-4702-a08f-41a0d42f5072","name":"Retrieve a round request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/partner_api/v2/round_requests/{{round_request_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Dec 2019 18:35:49 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"6bccdac4-6268-47e5-924c-0ef9d8093b46"},{"key":"Etag","value":"W/\"19bc861d50e771c2cd817f974443c176\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.043172"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"54081f405b623fb1-YUL"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"2dadefc8-1ec7-48ab-bce5-3a22fa0cfa9d\",\n        \"type\": \"round_request\",\n        \"attributes\": {\n            \"guest\": {\n                \"last_name\": \"Dalton\",\n                \"first_name\": \"Ronald\"\n            },\n            \"cart_fee\": \"15.95\",\n            \"green_fee\": \"45.0\"\n        },\n        \"relationships\": {\n            \"reservation_request\": {\n                \"data\": {\n                    \"id\": \"ab79050a-8db4-4d0e-a411-da6f90cdaaa1\",\n                    \"type\": \"reservation_request\"\n                }\n            },\n            \"player_type\": {\n                \"data\": {\n                    \"id\": \"ba75e08e-12c7-4774-9670-30ab5a2c92b9\",\n                    \"type\": \"player_type\"\n                }\n            },\n            \"customer\": {\n                \"data\": null\n            }\n        }\n    }\n}"}],"_postman_id":"bff0898e-186d-4d65-894f-f2a70d8b1b29"},{"name":"Delete a round request","id":"cb197f56-b3ec-462e-bf08-3dd1e3d15c0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/partner_api/v2/round_requests/{{round_request_id}}","urlObject":{"path":["partner_api","v2","round_requests","{{round_request_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"247db927-f758-4ca7-83ae-9de3e5ba187c","name":"Delete a round request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/partner_api/v2/round_requests/{{round_request_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cb197f56-b3ec-462e-bf08-3dd1e3d15c0a"},{"name":"Create a reservation","event":[{"listen":"test","script":{"id":"7ab4ef4f-f94d-4967-9526-ce6ceffc9734","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"reservation_id\", jsonData.data.id);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"885d1b51-fae9-47c2-a223-2ef0c0d03cd3","exec":["pm.globals.set(\"variable_key\", \"variable_value\");"],"type":"text/javascript"}}],"id":"182ab06d-93c4-498e-bbf1-b16e07a43217","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"reservation\",\n        \"attributes\": {},\n        \"relationships\": {\n            \"reservation_request\": {\n                \"data\": {\n                    \"type\": \"reservation_request\",\n                    \"id\": \"{{reservation_request_id}}\"\n                }\n            }\n        }\n    }\n}"},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","reservations"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"753425a1-9b41-4a6a-9dac-26c546dc7625","name":"Create a reservation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"reservation\",\n        \"attributes\": {},\n        \"relationships\": {\n            \"reservation_request\": {\n                \"data\": {\n                    \"type\": \"reservation_request\",\n                    \"id\": \"{{reservation_request_id}}\"\n                }\n            }\n        }\n    }\n}"},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Dec 2019 18:36:07 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"201 Created"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"f34b455e-210f-4533-be40-00c121b561c8"},{"key":"Location","value":"https://demo.chronogolf.ca/partner_api/v2/reservations/1bafae2e-4a2d-4428-b40a-6df1ee0a4e0f"},{"key":"Etag","value":"W/\"73f3187452ac85cfdb909ff15954325c\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.307309"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"54081fb06d963fb1-YUL"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1bafae2e-4a2d-4428-b40a-6df1ee0a4e0f\",\n        \"type\": \"reservation\",\n        \"attributes\": {\n            \"booking_reference\": \"8CZ7-P53C\",\n            \"cart_count\": 1,\n            \"holes\": 18,\n            \"note\": \"A note visible to the club\",\n            \"state\": \"confirmed\",\n            \"cancelled_at\": null,\n            \"created_at\": \"2019-12-05T13:36:07-05:00\",\n            \"updated_at\": \"2019-12-05T13:36:07-05:00\"\n        },\n        \"relationships\": {\n            \"teetime\": {\n                \"data\": {\n                    \"id\": \"15df8d4a-2822-41d0-924d-e25ca1099ac4\",\n                    \"type\": \"teetime\"\n                }\n            },\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                    \"type\": \"organization\"\n                }\n            },\n            \"booker\": {\n                \"data\": null\n            },\n            \"rounds\": {\n                \"data\": [\n                    {\n                        \"id\": \"1bed94d6-4174-400c-9b85-9a37cca48142\",\n                        \"type\": \"round\"\n                    }\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"1bed94d6-4174-400c-9b85-9a37cca48142\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2019-12-05T13:36:07.348-05:00\",\n                \"updated_at\": \"2019-12-05T13:36:07.348-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 60.95,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Dalton\",\n                    \"first_name\": \"Ronald\"\n                },\n                \"rates\": {\n                    \"green_fee\": 45,\n                    \"cart_fee\": 15.95,\n                    \"subtotal\": 60.95\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"1bafae2e-4a2d-4428-b40a-6df1ee0a4e0f\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"ba75e08e-12c7-4774-9670-30ab5a2c92b9\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"15df8d4a-2822-41d0-924d-e25ca1099ac4\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2019-12-06\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"free_slots\": 3,\n                \"start_time\": \"06:18\"\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"6b871ba5-30cf-4857-a7b1-6e6efe1cca49\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"182ab06d-93c4-498e-bbf1-b16e07a43217"},{"name":"Retrieve a reservation","id":"afd2f26e-09d8-47fb-bce5-91287cb4ddc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/reservations/{{reservation_id}}","urlObject":{"path":["partner_api","v2","reservations","{{reservation_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4df75d59-1d76-4ff1-9cab-080169b3ab61","name":"Retrieve a reservation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/reservations/{{reservation_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Dec 2019 18:36:23 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"4b3a1d40-bbda-475f-a430-ce16a1c2b48a"},{"key":"Etag","value":"W/\"4f810cf7e94a02cf23d4a28ca3f5e611\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.081049"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"54082015cc7a3fb1-YUL"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1bafae2e-4a2d-4428-b40a-6df1ee0a4e0f\",\n        \"type\": \"reservation\",\n        \"attributes\": {\n            \"booking_reference\": \"8CZ7-P53C\",\n            \"cart_count\": 1,\n            \"holes\": 18,\n            \"note\": \"A note visible to the club\",\n            \"state\": \"confirmed\",\n            \"cancelled_at\": null,\n            \"created_at\": \"2019-12-05T13:36:07-05:00\",\n            \"updated_at\": \"2019-12-05T13:36:07-05:00\"\n        },\n        \"relationships\": {\n            \"teetime\": {\n                \"data\": {\n                    \"id\": \"15df8d4a-2822-41d0-924d-e25ca1099ac4\",\n                    \"type\": \"teetime\"\n                }\n            },\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                    \"type\": \"organization\"\n                }\n            },\n            \"booker\": {\n                \"data\": null\n            },\n            \"rounds\": {\n                \"data\": [\n                    {\n                        \"id\": \"1bed94d6-4174-400c-9b85-9a37cca48142\",\n                        \"type\": \"round\"\n                    }\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"1bed94d6-4174-400c-9b85-9a37cca48142\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2019-12-05T13:36:07.348-05:00\",\n                \"updated_at\": \"2019-12-05T13:36:07.348-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 60.95,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Dalton\",\n                    \"first_name\": \"Ronald\"\n                },\n                \"rates\": {\n                    \"green_fee\": 45,\n                    \"cart_fee\": 15.95,\n                    \"subtotal\": 60.95\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"940c338f-4b22-4646-a570-4d6cb824f040\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"1bafae2e-4a2d-4428-b40a-6df1ee0a4e0f\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"ba75e08e-12c7-4774-9670-30ab5a2c92b9\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"15df8d4a-2822-41d0-924d-e25ca1099ac4\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2019-12-06\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"free_slots\": 3,\n                \"start_time\": \"06:18\"\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"6b871ba5-30cf-4857-a7b1-6e6efe1cca49\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"afd2f26e-09d8-47fb-bce5-91287cb4ddc9"},{"name":"Delete a reservation","event":[{"listen":"test","script":{"id":"7ab4ef4f-f94d-4967-9526-ce6ceffc9734","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"reservation_id\", jsonData.data.id);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"885d1b51-fae9-47c2-a223-2ef0c0d03cd3","exec":["pm.globals.set(\"variable_key\", \"variable_value\");"],"type":"text/javascript"}}],"id":"ac3d7f40-e7c9-41e9-96c7-6b7619c4c78d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/partner_api/v2/reservations/{{reservation_id}}","urlObject":{"path":["partner_api","v2","reservations","{{reservation_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a51c4e3a-b40b-4b16-b1b8-37d9c9d6c0ed","name":"Delete a reservation","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/partner_api/v2/reservations/{{reservation_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ac3d7f40-e7c9-41e9-96c7-6b7619c4c78d"},{"name":"List all reservations for an organization","id":"fb50001c-e5e4-43b1-9172-1a3e72dc778d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations","description":"<p>Possible values for the <code>source</code> field are chronogolf, club, google, and partner.</p>\n<p>Possible values for the <code>medium</code> field are dashboard, member-portal, partner-api, profile, teetimes page, web, widget, and mobile.</p>\n","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","reservations"],"host":["{{url}}"],"query":[{"disabled":true,"key":"filter[customer]","value":"{{customer_id}}"},{"disabled":true,"key":"filter[date]","value":"YYYY-MM-DD"},{"disabled":true,"key":"filter[updated_since]","value":"YYYY-MM-DD"},{"disabled":true,"key":"filter[course]","value":"{{course_id}}"},{"disabled":true,"key":"filter[booking_reference]","value":"4G7E-1C4Z"}],"variable":[]}},"response":[{"id":"b84c45e5-318c-4eba-902b-0a30fdbb6acb","name":"List all reservations for an organization","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations","host":["{{url}}"],"path":["partner_api","v2","organizations","{{organization_id}}","reservations"],"query":[{"key":"filter[customer]","value":"{{customer_id}}","disabled":true},{"key":"filter[date]","value":"YYYY-MM-DD","disabled":true},{"key":"filter[updated_since]","value":"YYYY-MM-DD","disabled":true},{"key":"filter[course]","value":"{{course_id}}","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0bac686a-d911-4722-8a0d-4fe7253a05f0\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"4G7E-1C4Z\",\n                \"cart_count\": 0,\n                \"holes\": 18,\n                \"note\": \"A note visible to the club\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": null,\n                \"created_at\": \"2025-02-27T02:00:37-05:00\",\n                \"updated_at\": \"2025-02-27T02:00:37-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"c9835348-6f98-469d-868d-9944c8ed014b\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"ec044d48-1bd2-442b-bdd0-1d0972278ee5\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"849133ab-1f47-4f94-94f5-01d055d94a3b\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"3N8E-6V7F\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"A note visible to the club\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-02-27T02:31:35-05:00\",\n                \"created_at\": \"2025-02-27T02:29:55-05:00\",\n                \"updated_at\": \"2025-02-27T02:31:35-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"44a45af6-821c-42e0-a101-47ba5e735450\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"9ce26ae1-1cf5-401f-97c3-db19f4a3f6a9\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"6dd5fb8a-8b0c-4b97-ae26-c1ce2fcccb87\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"1068a68a-dcb4-42fb-a6ff-7c0011ec6a47\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"9445ff06-77d4-40b6-ab40-a257a26a948b\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"376f230b-5f61-4349-bbf3-7b539d5d7b26\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"2K9Q-7C7E\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"A note visible to the club\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-02-27T02:38:08-05:00\",\n                \"created_at\": \"2025-02-27T02:35:29-05:00\",\n                \"updated_at\": \"2025-02-27T02:38:08-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"2653d5cd-a683-4348-8c08-86dafcee7314\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"1d325172-d4c5-4775-b930-d536712648dc\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"7b3802f6-3346-4958-9a30-1e0e5c86c54f\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"52ab6c95-711c-4fd0-b20f-182ca00e5a7d\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"20ebc1b6-efc0-481d-bc1c-fbc7caeeef88\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"0aff7df2-36c0-4e66-b9b6-44a11df34ded\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"6W5W-4J3O\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"A note visible to the club\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": null,\n                \"created_at\": \"2025-02-27T02:37:50-05:00\",\n                \"updated_at\": \"2025-02-27T02:37:50-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"46ea3c7f-5b4b-41d4-be3c-c81d53ddb57a\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"f15bbb7c-bcdb-479d-b81c-6879983544cb\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"353333d4-ee6b-42d4-bd31-12af60c0514e\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"29d8010f-b6dd-4871-af26-1b3e53bcd92b\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"6E8W-9W7Y\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-03-01T20:18:03-05:00\",\n                \"created_at\": \"2025-02-27T02:38:52-05:00\",\n                \"updated_at\": \"2025-03-01T20:18:03-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"3a7d2f1f-96fa-4933-8291-d9c86f22cde5\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"38dceb33-ca4c-4ec1-a0b4-a6bb3423c131\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"31add576-c696-4f30-8e83-53658f2cc411\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"6U0Y-9U7Y\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"Reserved using mobile app\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-03-01T20:18:01-05:00\",\n                \"created_at\": \"2025-02-27T02:38:53-05:00\",\n                \"updated_at\": \"2025-03-01T20:18:01-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"3a7d2f1f-96fa-4933-8291-d9c86f22cde5\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"4fcf3bd2-d0f8-4048-ad29-3541d76b17a5\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"3a91282d-86ec-47ef-9894-2d2974242780\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"8R9B-7R7D\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"A note visible to the club\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-02-27T02:47:33-05:00\",\n                \"created_at\": \"2025-02-27T02:41:46-05:00\",\n                \"updated_at\": \"2025-02-27T02:47:33-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"8f832983-614c-4fe4-802b-a59827638c25\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"5d918e92-13c3-4587-b5ae-219dadf07b56\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"93fd86bb-b7cf-4554-b092-657483888716\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"42c69dda-c41a-4613-a352-371e0c00427b\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"7d97daf0-88ef-4621-9c2d-0438643f6763\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"4a71e4af-544d-45ac-b09d-8efbf1795aea\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"1L7Q-0L9Z\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": null,\n                \"state\": \"confirmed\",\n                \"cancelled_at\": null,\n                \"created_at\": \"2025-02-27T02:58:45-05:00\",\n                \"updated_at\": \"2025-02-27T02:58:45-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"8b4cdc76-0709-44e9-9d8b-f66d297e6e0b\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"da3ab732-259c-48d5-acb3-e08d01cb9a25\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"c7831282-8b80-42bd-bed7-1cba4b1319b3\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"5c727f7a-2085-49eb-805b-67e64bd7606c\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"e6de9fac-cfb7-42df-83dd-ffcf5c24afa1\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"05a804b0-68c8-4d7f-9b99-474ce36de9ff\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"7B1E-3L4L\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": null,\n                \"state\": \"confirmed\",\n                \"cancelled_at\": null,\n                \"created_at\": \"2025-02-27T03:02:04-05:00\",\n                \"updated_at\": \"2025-02-27T03:02:04-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"44a45af6-821c-42e0-a101-47ba5e735450\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"717d4fcd-ca81-4141-aa00-ae473b9a045d\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"2f2b07a0-1f43-4288-99b6-8aa06dc53236\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"4c1216ea-6414-459a-ac38-34e2c67c352c\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"d5597cb1-fe53-40fb-98cd-71eaca18ab52\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"4c33a050-2d76-41dc-a4d7-d2c745d57a0c\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"2S8V-6Z1A\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"Reserved using mobile app\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-03-03T01:50:14-05:00\",\n                \"created_at\": \"2025-02-27T04:37:23-05:00\",\n                \"updated_at\": \"2025-03-03T01:50:15-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"a0ad6621-8475-4917-be0a-444e25a90a0b\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"f73b5411-1b5e-4c80-be45-73162284d672\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"e10c97d1-00c5-484b-b2f4-dd646370d3f7\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"6I8H-5N7S\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"Reserved using mobile app\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-03-03T01:50:14-05:00\",\n                \"created_at\": \"2025-02-27T04:37:23-05:00\",\n                \"updated_at\": \"2025-03-03T01:50:15-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"a0ad6621-8475-4917-be0a-444e25a90a0b\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"113749e3-32cc-4f4d-832a-91724ad581c0\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"1bee3e95-dabd-456c-8cdc-979565ef67ed\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"8O8J-4I3X\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"A note visible to the club\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": null,\n                \"created_at\": \"2025-02-27T04:38:48-05:00\",\n                \"updated_at\": \"2025-02-27T04:38:48-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"5d391c44-2515-4e95-bce9-7430d019846a\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"78cf2746-c32d-4e23-a23a-07209e238a1d\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"79e6e294-64fc-4884-bb98-64c570f91d3f\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"2b4e1284-a9e1-447e-818e-29718fb34dc5\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"a1ecd863-ae4c-4e08-ab80-b74d0e3e8155\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"cdbdc32a-4afb-4dc0-b67c-488b3df3003f\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"4E4G-1J8I\",\n                \"cart_count\": 0,\n                \"holes\": 18,\n                \"note\": null,\n                \"state\": \"confirmed\",\n                \"cancelled_at\": null,\n                \"created_at\": \"2025-02-27T04:41:21-05:00\",\n                \"updated_at\": \"2025-02-27T04:41:21-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"5af3ffe8-d55d-4a41-ae81-16ad358cfdad\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"4f4597a0-34ca-42ac-92ea-bd18188ab633\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"32267b8b-632d-41c6-8f55-08f6a54dc395\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"417ff87f-ff74-4a9b-9c05-4ab0bfef6385\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"0N3Q-5S3E\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"Reserved using mobile app\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-02-27T11:27:00-05:00\",\n                \"created_at\": \"2025-02-27T05:07:10-05:00\",\n                \"updated_at\": \"2025-02-27T11:27:00-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"43718278-9f67-4205-b661-c8b15b742f6b\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"81ef4448-b6e7-48c5-9483-5395bfe0489a\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"fb12e502-901a-4d2b-b5e2-fa8816ade861\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"5C5R-0R3S\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"Reserved using mobile app\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-02-27T11:27:01-05:00\",\n                \"created_at\": \"2025-02-27T05:07:10-05:00\",\n                \"updated_at\": \"2025-02-27T11:27:01-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"43718278-9f67-4205-b661-c8b15b742f6b\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"a250dcd5-0972-442d-b3a9-1bb89cc96719\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"3b226156-3f32-4bce-b35d-6492af1f61af\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"3Z7I-4G7A\",\n                \"cart_count\": 0,\n                \"holes\": 18,\n                \"note\": \"A note visible to the club\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-02-27T05:19:32-05:00\",\n                \"created_at\": \"2025-02-27T05:19:16-05:00\",\n                \"updated_at\": \"2025-02-27T05:19:33-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"c8613cb8-62be-40c5-9119-82d7f7f8ca72\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"3465d91a-c60b-4a80-86f2-42541b6f7e30\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"8130bd60-6802-400a-86ec-2766d778f821\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"79be2bc4-8311-469d-94be-0a1ea7ba40c6\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"a4682bde-7d82-49b6-93b1-d09eb42368f3\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"00d181ab-aa26-4ff1-a72a-f6fb639f513c\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"2T3E-3G8O\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"Reserved using mobile app \",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-03-03T01:50:14-05:00\",\n                \"created_at\": \"2025-02-27T05:21:33-05:00\",\n                \"updated_at\": \"2025-03-03T01:50:14-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"a0ad6621-8475-4917-be0a-444e25a90a0b\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"d3de192c-0626-4ee6-bbfc-876f24048096\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"8abceb2a-a52a-42aa-be27-26c4d9c1411c\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"2N5F-7I4U\",\n                \"cart_count\": 0,\n                \"holes\": 18,\n                \"note\": null,\n                \"state\": \"confirmed\",\n                \"cancelled_at\": null,\n                \"created_at\": \"2025-02-27T05:27:59-05:00\",\n                \"updated_at\": \"2025-02-27T05:27:59-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"57cb4782-b385-4f1c-a134-504cddb0fd83\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"054923f2-40f8-447f-8241-2623e2c2b6c7\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"3ed3aa3b-e48c-4812-a08f-f90c59b9b2ee\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"78642f6c-0944-4adc-83a6-4c6d7ef4e5f9\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"2F1M-1K6E\",\n                \"cart_count\": 0,\n                \"holes\": 18,\n                \"note\": null,\n                \"state\": \"confirmed\",\n                \"cancelled_at\": null,\n                \"created_at\": \"2025-02-27T05:30:25-05:00\",\n                \"updated_at\": \"2025-02-27T05:30:25-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"23d7491e-3dd8-45bc-a176-2811ae3cbd02\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"f3b00ee0-fe01-4b18-b616-ec5d2de5df6a\",\n                            \"type\": \"round\"\n                        },\n                        {\n                            \"id\": \"75e3ccff-34a2-4d17-8c45-658ea861ec5f\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"40f11a19-59ba-4a57-abe2-cb3d1497b4b2\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"3M6Z-5E9P\",\n                \"cart_count\": 0,\n                \"holes\": 18,\n                \"note\": \"Reserved using mobile app\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-03-05T05:38:59-05:00\",\n                \"created_at\": \"2025-02-27T05:35:16-05:00\",\n                \"updated_at\": \"2025-03-05T05:38:59-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"a45f0b5c-6449-450b-9e2a-2ff9612969af\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"17d46383-9170-4f48-a7d4-d5da5b7380fc\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"83e8af9d-92a5-403d-9b33-6949e81096aa\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"3H1M-7Z3D\",\n                \"cart_count\": 0,\n                \"holes\": 18,\n                \"note\": \"Reserved using mobile app\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-03-05T05:38:59-05:00\",\n                \"created_at\": \"2025-02-27T05:35:16-05:00\",\n                \"updated_at\": \"2025-03-05T05:38:59-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"a45f0b5c-6449-450b-9e2a-2ff9612969af\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"507087bc-8718-47b2-900c-799b69e137bc\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"80f93144-1d54-43aa-9e51-3dffb0fe3c46\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"2C9V-2Q4Y\",\n                \"cart_count\": 0,\n                \"holes\": 18,\n                \"note\": \"\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-03-05T05:38:59-05:00\",\n                \"created_at\": \"2025-02-27T05:35:16-05:00\",\n                \"updated_at\": \"2025-03-05T05:38:59-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"a45f0b5c-6449-450b-9e2a-2ff9612969af\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"82c50ec4-b598-4957-9148-6a8ec6ffc772\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"c301dc83-030a-4682-a862-fd87d7ad3553\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"5U9Q-3B7I\",\n                \"cart_count\": 0,\n                \"holes\": 18,\n                \"note\": \"Reserved using mobile app\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-02-27T05:48:07-05:00\",\n                \"created_at\": \"2025-02-27T05:35:16-05:00\",\n                \"updated_at\": \"2025-02-27T05:48:07-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"a45f0b5c-6449-450b-9e2a-2ff9612969af\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"f76b38d9-48b6-4636-8a0f-4644ebf11fca\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"276b9bb5-ca3d-4490-b4de-60a81e60e8d8\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"3G1T-4D9K\",\n                \"cart_count\": 0,\n                \"holes\": 18,\n                \"note\": \"\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-03-05T05:38:59-05:00\",\n                \"created_at\": \"2025-02-27T05:52:22-05:00\",\n                \"updated_at\": \"2025-03-05T05:38:59-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"a45f0b5c-6449-450b-9e2a-2ff9612969af\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"1d22862b-b3ea-4d2d-a851-635b40260788\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"82bbdb10-8655-4e3f-af74-584cf44cf380\",\n            \"type\": \"reservation\",\n            \"attributes\": {\n                \"booking_reference\": \"6D0A-1X0U\",\n                \"cart_count\": 0,\n                \"holes\": 9,\n                \"note\": \"Reserved using mobile app\",\n                \"state\": \"confirmed\",\n                \"cancelled_at\": \"2025-02-28T09:03:02-05:00\",\n                \"created_at\": \"2025-02-27T05:53:33-05:00\",\n                \"updated_at\": \"2025-02-28T09:03:02-05:00\"\n            },\n            \"relationships\": {\n                \"teetime\": {\n                    \"data\": {\n                        \"id\": \"efe3dd88-c6c6-4d34-8939-4c7b985fab4e\",\n                        \"type\": \"teetime\"\n                    }\n                },\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"booker\": {\n                    \"data\": null\n                },\n                \"rounds\": {\n                    \"data\": [\n                        {\n                            \"id\": \"c65d29e0-5b98-4ece-aefb-da67a00390c2\",\n                            \"type\": \"round\"\n                        }\n                    ]\n                },\n                \"linked_reservations\": {\n                    \"data\": []\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"id\": \"ec044d48-1bd2-442b-bdd0-1d0972278ee5\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:00:37.943-05:00\",\n                \"updated_at\": \"2025-02-27T02:00:37.943-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 500,\n                \"paid\": true,\n                \"guest\": {\n                    \"last_name\": \"raheel's\",\n                    \"first_name\": \"sam's\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 500,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"0bac686a-d911-4722-8a0d-4fe7253a05f0\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"c9835348-6f98-469d-868d-9944c8ed014b\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-01\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"06:10\",\n                \"free_slots\": 0\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"c51eb73d-38da-4d67-a606-23f6d6cf2deb\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"9ce26ae1-1cf5-401f-97c3-db19f4a3f6a9\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:29:55.584-05:00\",\n                \"updated_at\": \"2025-02-27T02:31:28.473-05:00\",\n                \"cancelled_at\": \"2025-02-27T02:31:28.456-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Saliq.m\",\n                    \"first_name\": \"Saye'd\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"849133ab-1f47-4f94-94f5-01d055d94a3b\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"6dd5fb8a-8b0c-4b97-ae26-c1ce2fcccb87\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:29:55.590-05:00\",\n                \"updated_at\": \"2025-02-27T02:31:28.494-05:00\",\n                \"cancelled_at\": \"2025-02-27T02:31:28.479-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Dhdhdy\",\n                    \"first_name\": \"Hddgdh\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"849133ab-1f47-4f94-94f5-01d055d94a3b\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1068a68a-dcb4-42fb-a6ff-7c0011ec6a47\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:29:55.596-05:00\",\n                \"updated_at\": \"2025-02-27T02:31:28.514-05:00\",\n                \"cancelled_at\": \"2025-02-27T02:31:28.498-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Hddhud\",\n                    \"first_name\": \"Jsjdn\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"849133ab-1f47-4f94-94f5-01d055d94a3b\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"9445ff06-77d4-40b6-ab40-a257a26a948b\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:29:55.602-05:00\",\n                \"updated_at\": \"2025-02-27T02:31:28.536-05:00\",\n                \"cancelled_at\": \"2025-02-27T02:31:28.518-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Hdhddh\",\n                    \"first_name\": \"Shshsh\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"849133ab-1f47-4f94-94f5-01d055d94a3b\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"44a45af6-821c-42e0-a101-47ba5e735450\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-10\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"06:09\",\n                \"free_slots\": 0\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"97eacb01-030a-4fea-8e87-13b2363bd6a7\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1d325172-d4c5-4775-b930-d536712648dc\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:35:29.232-05:00\",\n                \"updated_at\": \"2025-02-27T02:38:00.704-05:00\",\n                \"cancelled_at\": \"2025-02-27T02:38:00.689-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Vffvdv\",\n                    \"first_name\": \"Bccbcb\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"376f230b-5f61-4349-bbf3-7b539d5d7b26\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"7b3802f6-3346-4958-9a30-1e0e5c86c54f\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:35:29.238-05:00\",\n                \"updated_at\": \"2025-02-27T02:38:00.725-05:00\",\n                \"cancelled_at\": \"2025-02-27T02:38:00.709-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Bchcdh\",\n                    \"first_name\": \"Dbdbdj\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"376f230b-5f61-4349-bbf3-7b539d5d7b26\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"52ab6c95-711c-4fd0-b20f-182ca00e5a7d\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:35:29.243-05:00\",\n                \"updated_at\": \"2025-02-27T02:38:00.745-05:00\",\n                \"cancelled_at\": \"2025-02-27T02:38:00.729-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Cbchdh\",\n                    \"first_name\": \"Dbdbdb\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"376f230b-5f61-4349-bbf3-7b539d5d7b26\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"20ebc1b6-efc0-481d-bc1c-fbc7caeeef88\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:35:29.247-05:00\",\n                \"updated_at\": \"2025-02-27T02:38:00.765-05:00\",\n                \"cancelled_at\": \"2025-02-27T02:38:00.750-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"raheel's\",\n                    \"first_name\": \"sam's\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"376f230b-5f61-4349-bbf3-7b539d5d7b26\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"2653d5cd-a683-4348-8c08-86dafcee7314\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-10\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"06:27\",\n                \"free_slots\": 4\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"97eacb01-030a-4fea-8e87-13b2363bd6a7\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"f15bbb7c-bcdb-479d-b81c-6879983544cb\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:37:50.010-05:00\",\n                \"updated_at\": \"2025-02-27T02:37:50.010-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": true,\n                \"guest\": {\n                    \"last_name\": \"Vffvdv\",\n                    \"first_name\": \"Bccbcb\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"0aff7df2-36c0-4e66-b9b6-44a11df34ded\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"353333d4-ee6b-42d4-bd31-12af60c0514e\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:37:50.019-05:00\",\n                \"updated_at\": \"2025-02-27T02:37:50.019-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": true,\n                \"guest\": {\n                    \"last_name\": \"raheel's\",\n                    \"first_name\": \"sam's\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"0aff7df2-36c0-4e66-b9b6-44a11df34ded\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"46ea3c7f-5b4b-41d4-be3c-c81d53ddb57a\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-10\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"06:45\",\n                \"free_slots\": 2\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"97eacb01-030a-4fea-8e87-13b2363bd6a7\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"38dceb33-ca4c-4ec1-a0b4-a6bb3423c131\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:38:53.001-05:00\",\n                \"updated_at\": \"2025-03-01T20:18:03.301-05:00\",\n                \"cancelled_at\": \"2025-03-01T20:18:03.284-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"29d8010f-b6dd-4871-af26-1b3e53bcd92b\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"1ed5763d-42cb-4ec0-9d18-e80a9db1ad8a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3a7d2f1f-96fa-4933-8291-d9c86f22cde5\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-01\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"18:18\",\n                \"free_slots\": 4\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"128e43f8-969b-4097-96f5-a0c58bf06db3\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"4fcf3bd2-d0f8-4048-ad29-3541d76b17a5\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:38:53.065-05:00\",\n                \"updated_at\": \"2025-03-01T20:18:01.532-05:00\",\n                \"cancelled_at\": \"2025-03-01T20:18:01.512-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"31add576-c696-4f30-8e83-53658f2cc411\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"f07f0287-f39e-4e49-a509-f4d480a0f8d7\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5d918e92-13c3-4587-b5ae-219dadf07b56\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:41:46.837-05:00\",\n                \"updated_at\": \"2025-02-27T02:47:27.070-05:00\",\n                \"cancelled_at\": \"2025-02-27T02:47:27.053-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Gddgg\",\n                    \"first_name\": \"Dgdvdg\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"3a91282d-86ec-47ef-9894-2d2974242780\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"93fd86bb-b7cf-4554-b092-657483888716\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:41:46.845-05:00\",\n                \"updated_at\": \"2025-02-27T02:47:27.091-05:00\",\n                \"cancelled_at\": \"2025-02-27T02:47:27.075-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Gdgdg\",\n                    \"first_name\": \"Hddhdh\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"3a91282d-86ec-47ef-9894-2d2974242780\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"42c69dda-c41a-4613-a352-371e0c00427b\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:41:46.852-05:00\",\n                \"updated_at\": \"2025-02-27T02:47:27.110-05:00\",\n                \"cancelled_at\": \"2025-02-27T02:47:27.095-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"raheel's\",\n                    \"first_name\": \"sam's\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"3a91282d-86ec-47ef-9894-2d2974242780\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"7d97daf0-88ef-4621-9c2d-0438643f6763\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:41:46.860-05:00\",\n                \"updated_at\": \"2025-02-27T02:47:27.131-05:00\",\n                \"cancelled_at\": \"2025-02-27T02:47:27.115-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Hdbsxb\",\n                    \"first_name\": \"Gddgdg\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"3a91282d-86ec-47ef-9894-2d2974242780\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"8f832983-614c-4fe4-802b-a59827638c25\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-11\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"06:36\",\n                \"free_slots\": 4\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"97eacb01-030a-4fea-8e87-13b2363bd6a7\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"da3ab732-259c-48d5-acb3-e08d01cb9a25\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:58:45.749-05:00\",\n                \"updated_at\": \"2025-02-27T02:58:45.749-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"4a71e4af-544d-45ac-b09d-8efbf1795aea\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"49a76260-edea-4020-91e7-044143962a7a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"c7831282-8b80-42bd-bed7-1cba4b1319b3\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:58:45.756-05:00\",\n                \"updated_at\": \"2025-02-27T02:58:45.756-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"4a71e4af-544d-45ac-b09d-8efbf1795aea\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"49a76260-edea-4020-91e7-044143962a7a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5c727f7a-2085-49eb-805b-67e64bd7606c\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:58:45.761-05:00\",\n                \"updated_at\": \"2025-02-27T02:58:45.761-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"4a71e4af-544d-45ac-b09d-8efbf1795aea\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"49a76260-edea-4020-91e7-044143962a7a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"e6de9fac-cfb7-42df-83dd-ffcf5c24afa1\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T02:58:45.767-05:00\",\n                \"updated_at\": \"2025-02-27T02:58:45.767-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"4a71e4af-544d-45ac-b09d-8efbf1795aea\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"49a76260-edea-4020-91e7-044143962a7a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"8b4cdc76-0709-44e9-9d8b-f66d297e6e0b\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-10\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"06:00\",\n                \"free_slots\": 0\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"97eacb01-030a-4fea-8e87-13b2363bd6a7\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"717d4fcd-ca81-4141-aa00-ae473b9a045d\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T03:02:04.132-05:00\",\n                \"updated_at\": \"2025-02-27T03:02:04.132-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"05a804b0-68c8-4d7f-9b99-474ce36de9ff\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"49a76260-edea-4020-91e7-044143962a7a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2f2b07a0-1f43-4288-99b6-8aa06dc53236\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T03:02:04.145-05:00\",\n                \"updated_at\": \"2025-02-27T03:02:04.145-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"05a804b0-68c8-4d7f-9b99-474ce36de9ff\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"49a76260-edea-4020-91e7-044143962a7a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"4c1216ea-6414-459a-ac38-34e2c67c352c\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T03:02:04.151-05:00\",\n                \"updated_at\": \"2025-02-27T03:02:04.151-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"05a804b0-68c8-4d7f-9b99-474ce36de9ff\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"49a76260-edea-4020-91e7-044143962a7a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"d5597cb1-fe53-40fb-98cd-71eaca18ab52\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T03:02:04.157-05:00\",\n                \"updated_at\": \"2025-02-27T03:02:04.157-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"05a804b0-68c8-4d7f-9b99-474ce36de9ff\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"49a76260-edea-4020-91e7-044143962a7a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"f73b5411-1b5e-4c80-be45-73162284d672\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T04:37:23.824-05:00\",\n                \"updated_at\": \"2025-03-03T01:50:14.980-05:00\",\n                \"cancelled_at\": \"2025-03-03T01:50:14.946-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"4c33a050-2d76-41dc-a4d7-d2c745d57a0c\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"21e57ac7-9be5-4fdf-94fd-2db0a2f8d92d\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"a0ad6621-8475-4917-be0a-444e25a90a0b\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-04\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"18:18\",\n                \"free_slots\": 4\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"128e43f8-969b-4097-96f5-a0c58bf06db3\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"113749e3-32cc-4f4d-832a-91724ad581c0\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T04:37:23.897-05:00\",\n                \"updated_at\": \"2025-03-03T01:50:14.983-05:00\",\n                \"cancelled_at\": \"2025-03-03T01:50:14.964-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"e10c97d1-00c5-484b-b2f4-dd646370d3f7\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"9879f6aa-9d18-4793-bfa2-e9e313ce04cf\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"78cf2746-c32d-4e23-a23a-07209e238a1d\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T04:38:48.164-05:00\",\n                \"updated_at\": \"2025-02-27T04:38:48.164-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": true,\n                \"guest\": {\n                    \"last_name\": \"raheel's\",\n                    \"first_name\": \"sam's\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"1bee3e95-dabd-456c-8cdc-979565ef67ed\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"79e6e294-64fc-4884-bb98-64c570f91d3f\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T04:38:48.171-05:00\",\n                \"updated_at\": \"2025-02-27T04:38:48.171-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": true,\n                \"guest\": {\n                    \"last_name\": \"Dhhdh\",\n                    \"first_name\": \"Hxxhxb\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"1bee3e95-dabd-456c-8cdc-979565ef67ed\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"2b4e1284-a9e1-447e-818e-29718fb34dc5\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T04:38:48.176-05:00\",\n                \"updated_at\": \"2025-02-27T04:38:48.176-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": true,\n                \"guest\": {\n                    \"last_name\": \"Bdhdh\",\n                    \"first_name\": \"Bdbdh\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"1bee3e95-dabd-456c-8cdc-979565ef67ed\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"a1ecd863-ae4c-4e08-ab80-b74d0e3e8155\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T04:38:48.182-05:00\",\n                \"updated_at\": \"2025-02-27T04:38:48.182-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 190,\n                \"paid\": true,\n                \"guest\": {\n                    \"last_name\": \"Dhdhh\",\n                    \"first_name\": \"Bdbddb\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 190,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"1bee3e95-dabd-456c-8cdc-979565ef67ed\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"5d391c44-2515-4e95-bce9-7430d019846a\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-11\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"07:03\",\n                \"free_slots\": 0\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"97eacb01-030a-4fea-8e87-13b2363bd6a7\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"4f4597a0-34ca-42ac-92ea-bd18188ab633\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T04:41:21.576-05:00\",\n                \"updated_at\": \"2025-02-27T04:41:21.576-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 88,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Soni\",\n                    \"first_name\": \"Riya\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 88,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"cdbdc32a-4afb-4dc0-b67c-488b3df3003f\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"8f7eb176-809c-4550-95f7-6e3aa1a10a94\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"32267b8b-632d-41c6-8f55-08f6a54dc395\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T04:41:21.582-05:00\",\n                \"updated_at\": \"2025-02-27T04:41:21.582-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 88,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Soni\",\n                    \"first_name\": \"Riya\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 88,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"cdbdc32a-4afb-4dc0-b67c-488b3df3003f\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"8f7eb176-809c-4550-95f7-6e3aa1a10a94\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"5af3ffe8-d55d-4a41-ae81-16ad358cfdad\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-02-27\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"15:54\",\n                \"free_slots\": 2\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"1d388190-2423-466b-8fa3-278463416f53\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"81ef4448-b6e7-48c5-9483-5395bfe0489a\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:07:10.698-05:00\",\n                \"updated_at\": \"2025-02-27T11:27:00.480-05:00\",\n                \"cancelled_at\": \"2025-02-27T11:27:00.464-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"417ff87f-ff74-4a9b-9c05-4ab0bfef6385\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"17ccac0f-f5b2-4ccc-8e3b-02b3dab8f364\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"43718278-9f67-4205-b661-c8b15b742f6b\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-02-27\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"09:27\",\n                \"free_slots\": 4\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"128e43f8-969b-4097-96f5-a0c58bf06db3\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"a250dcd5-0972-442d-b3a9-1bb89cc96719\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:07:10.761-05:00\",\n                \"updated_at\": \"2025-02-27T11:27:01.247-05:00\",\n                \"cancelled_at\": \"2025-02-27T11:27:01.228-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"fb12e502-901a-4d2b-b5e2-fa8816ade861\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"2828c8c7-f3d1-4ef0-b960-9dfd77bec16f\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3465d91a-c60b-4a80-86f2-42541b6f7e30\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:19:16.047-05:00\",\n                \"updated_at\": \"2025-02-27T05:19:32.941-05:00\",\n                \"cancelled_at\": \"2025-02-27T05:19:32.927-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Dbdhdh\",\n                    \"first_name\": \"Xhdhdb\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"3b226156-3f32-4bce-b35d-6492af1f61af\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"8130bd60-6802-400a-86ec-2766d778f821\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:19:16.057-05:00\",\n                \"updated_at\": \"2025-02-27T05:19:32.962-05:00\",\n                \"cancelled_at\": \"2025-02-27T05:19:32.946-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"raheel's\",\n                    \"first_name\": \"sam's\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"3b226156-3f32-4bce-b35d-6492af1f61af\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"79be2bc4-8311-469d-94be-0a1ea7ba40c6\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:19:16.085-05:00\",\n                \"updated_at\": \"2025-02-27T05:19:32.982-05:00\",\n                \"cancelled_at\": \"2025-02-27T05:19:32.967-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Bdbddj\",\n                    \"first_name\": \"Dbbdb\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"3b226156-3f32-4bce-b35d-6492af1f61af\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"a4682bde-7d82-49b6-93b1-d09eb42368f3\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:19:16.090-05:00\",\n                \"updated_at\": \"2025-02-27T05:19:33.003-05:00\",\n                \"cancelled_at\": \"2025-02-27T05:19:32.987-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Djdjdj\",\n                    \"first_name\": \"Jdjdj\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"3b226156-3f32-4bce-b35d-6492af1f61af\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"c8613cb8-62be-40c5-9119-82d7f7f8ca72\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-11\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"07:03\",\n                \"free_slots\": 4\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"c51eb73d-38da-4d67-a606-23f6d6cf2deb\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"d3de192c-0626-4ee6-bbfc-876f24048096\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:21:33.675-05:00\",\n                \"updated_at\": \"2025-03-03T01:50:14.964-05:00\",\n                \"cancelled_at\": \"2025-03-03T01:50:14.946-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"00d181ab-aa26-4ff1-a72a-f6fb639f513c\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"9900c9f7-1bad-4865-8a38-f79bb23f97f5\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"054923f2-40f8-447f-8241-2623e2c2b6c7\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:27:59.547-05:00\",\n                \"updated_at\": \"2025-02-27T05:27:59.547-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 400,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 400,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"8abceb2a-a52a-42aa-be27-26c4d9c1411c\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"49a76260-edea-4020-91e7-044143962a7a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3ed3aa3b-e48c-4812-a08f-f90c59b9b2ee\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:27:59.595-05:00\",\n                \"updated_at\": \"2025-02-27T05:27:59.595-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 400,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 400,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"8abceb2a-a52a-42aa-be27-26c4d9c1411c\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"49a76260-edea-4020-91e7-044143962a7a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"57cb4782-b385-4f1c-a134-504cddb0fd83\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-13\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"06:09\",\n                \"free_slots\": 1\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"c51eb73d-38da-4d67-a606-23f6d6cf2deb\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"f3b00ee0-fe01-4b18-b616-ec5d2de5df6a\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:30:25.626-05:00\",\n                \"updated_at\": \"2025-02-27T05:30:25.626-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 400,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 400,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"78642f6c-0944-4adc-83a6-4c6d7ef4e5f9\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"49a76260-edea-4020-91e7-044143962a7a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"75e3ccff-34a2-4d17-8c45-658ea861ec5f\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:30:25.633-05:00\",\n                \"updated_at\": \"2025-02-27T05:30:25.633-05:00\",\n                \"cancelled_at\": null,\n                \"price\": 400,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 400,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"78642f6c-0944-4adc-83a6-4c6d7ef4e5f9\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"303a4ef4-d755-4e36-b0fb-9a23d557f896\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"49a76260-edea-4020-91e7-044143962a7a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"23d7491e-3dd8-45bc-a176-2811ae3cbd02\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-13\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"06:18\",\n                \"free_slots\": 2\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"c51eb73d-38da-4d67-a606-23f6d6cf2deb\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"17d46383-9170-4f48-a7d4-d5da5b7380fc\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"arrived\",\n                \"created_at\": \"2025-02-27T05:35:16.204-05:00\",\n                \"updated_at\": \"2025-03-05T05:13:09.163-05:00\",\n                \"cancelled_at\": \"2025-02-27T05:47:09.396-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"40f11a19-59ba-4a57-abe2-cb3d1497b4b2\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"9879f6aa-9d18-4793-bfa2-e9e313ce04cf\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"a45f0b5c-6449-450b-9e2a-2ff9612969af\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-03-05\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"06:09\",\n                \"free_slots\": 4\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"128e43f8-969b-4097-96f5-a0c58bf06db3\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"507087bc-8718-47b2-900c-799b69e137bc\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"arrived\",\n                \"created_at\": \"2025-02-27T05:35:16.267-05:00\",\n                \"updated_at\": \"2025-03-05T05:38:59.343-05:00\",\n                \"cancelled_at\": \"2025-03-05T05:38:59.323-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"83e8af9d-92a5-403d-9b33-6949e81096aa\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"2f1951ef-dbcb-4a54-885d-1d6d0eb0b2ee\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"82c50ec4-b598-4957-9148-6a8ec6ffc772\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"arrived\",\n                \"created_at\": \"2025-02-27T05:35:16.319-05:00\",\n                \"updated_at\": \"2025-03-05T05:38:59.315-05:00\",\n                \"cancelled_at\": \"2025-03-05T05:38:59.292-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"80f93144-1d54-43aa-9e51-3dffb0fe3c46\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"f07f0287-f39e-4e49-a509-f4d480a0f8d7\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"f76b38d9-48b6-4636-8a0f-4644ebf11fca\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:35:16.381-05:00\",\n                \"updated_at\": \"2025-02-27T05:48:07.301-05:00\",\n                \"cancelled_at\": \"2025-02-27T05:48:07.285-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"c301dc83-030a-4682-a862-fd87d7ad3553\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"21e57ac7-9be5-4fdf-94fd-2db0a2f8d92d\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"1d22862b-b3ea-4d2d-a851-635b40260788\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:52:22.675-05:00\",\n                \"updated_at\": \"2025-03-05T05:38:59.440-05:00\",\n                \"cancelled_at\": \"2025-03-05T05:38:59.423-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"276b9bb5-ca3d-4490-b4de-60a81e60e8d8\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"21e57ac7-9be5-4fdf-94fd-2db0a2f8d92d\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"c65d29e0-5b98-4ece-aefb-da67a00390c2\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-02-27T05:53:33.034-05:00\",\n                \"updated_at\": \"2025-02-28T09:03:02.223-05:00\",\n                \"cancelled_at\": \"2025-02-28T09:03:02.207-05:00\",\n                \"price\": 0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": null,\n                    \"cart_fee\": null,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"a0baaa6a-7a74-44ef-bbd3-d689729c5a67\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"82bbdb10-8655-4e3f-af74-584cf44cf380\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"b9aef117-d4e2-4e13-a9b4-2885a61f83b3\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"2828c8c7-f3d1-4ef0-b960-9dfd77bec16f\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"efe3dd88-c6c6-4d34-8939-4c7b985fab4e\",\n            \"type\": \"teetime\",\n            \"attributes\": {\n                \"blocked\": false,\n                \"date\": \"2025-02-28\",\n                \"hole\": 1,\n                \"format\": \"normal\",\n                \"start_time\": \"07:03\",\n                \"free_slots\": 4\n            },\n            \"relationships\": {\n                \"course\": {\n                    \"data\": {\n                        \"id\": \"128e43f8-969b-4097-96f5-a0c58bf06db3\",\n                        \"type\": \"course\"\n                    }\n                },\n                \"event\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"page\": 250,\n        \"page_size\": 25,\n        \"total\": 6677,\n        \"total_pages\": 268\n    }\n}"}],"_postman_id":"fb50001c-e5e4-43b1-9172-1a3e72dc778d"},{"name":"Confirm payment","event":[{"listen":"test","script":{"id":"8ed84e37-ed7d-4d37-b34a-63cef0eab1d0","exec":["",""],"type":"text/javascript"}}],"id":"5a4aedf7-11aa-437a-8796-82864dd8c0c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"payment_confirmation\",\n        \"attributes\": {\n            \"amount\":60,\n            \"reference\": \"reference\"\n        },\n        \"relationships\": {\n            \"rounds\": {\n                \"data\": [\n                    {\n                        \"type\": \"round\",\n                        \"id\": \"87cf9b96-ab7a-45cf-bba1-f8826854fcad\"\n                    }\n                ]\n            }\n        }\n    }\n}"},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/payment_confirmations","description":"<p>A round can be marked as paid via the payment confirmations endpoint. </p>\n<p>Pass the round UUIDs as relationships, and ensure that the \"amount\" field matches the pre-tax sum of the amounts of the individual rounds in the request. </p>\n<p>Rounds across multiple teetimes can be marked as paid in a single request, provided the amount is equal to the total amount of those rounds, pre-tax. </p>\n","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","payment_confirmations"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d4f28feb-6e1e-4e3e-849f-8547e023c81f","name":"Confirm payment","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"payment_confirmation\",\n        \"attributes\": {\n            \"amount\":60.95,\n            \"reference\": \"reference\"\n        },\n        \"relationships\": {\n            \"rounds\": {\n                \"data\": [\n                    {\n                        \"type\": \"round\",\n                        \"id\": \"1bed94d6-4174-400c-9b85-9a37cca48142\"\n                    }\n                ]\n            }\n        }\n    }\n}"},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/payment_confirmations"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Dec 2019 18:37:24 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"201 Created"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"4058b1e0-f910-450c-b24c-c239f84f556c"},{"key":"Location","value":"https://demo.chronogolf.ca/partner_api/v2/payment_confirmations/f3d7bd52-4ee6-48e4-8dde-d983e0da7658"},{"key":"Etag","value":"W/\"a5d076ed0df48888ffe6e5de09139e59\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.122988"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"54082193af9a3fb1-YUL"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"f3d7bd52-4ee6-48e4-8dde-d983e0da7658\",\n        \"type\": \"payment_confirmation\",\n        \"attributes\": {\n            \"amount\": 60.95,\n            \"reference\": \"reference\"\n        },\n        \"relationships\": {\n            \"rounds\": {\n                \"data\": [\n                    {\n                        \"id\": \"1bed94d6-4174-400c-9b85-9a37cca48142\",\n                        \"type\": \"round\"\n                    }\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"5a4aedf7-11aa-437a-8796-82864dd8c0c2"},{"name":"Retrieve a payment confirmation","event":[{"listen":"test","script":{"id":"8ed84e37-ed7d-4d37-b34a-63cef0eab1d0","exec":["",""],"type":"text/javascript"}}],"id":"a80dbbde-aa9c-4050-9872-af141b34ae3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"payment_confirmation\",\n        \"attributes\": {\n            \"amount\":60,\n            \"reference\": \"reference\"\n        },\n        \"relationships\": {\n            \"rounds\": {\n                \"data\": [\n                    {\n                        \"type\": \"round\",\n                        \"id\": \"87cf9b96-ab7a-45cf-bba1-f8826854fcad\"\n                    }\n                ]\n            }\n        }\n    }\n}"},"url":"{{url}}/partner_api/v2/payment_confirmations/{{payment_confirmation_id}}","urlObject":{"path":["partner_api","v2","payment_confirmations","{{payment_confirmation_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"487b0871-e9bd-4c06-bad1-85d83fcbd08b","name":"Retrieve a payment confirmation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"payment_confirmation\",\n        \"attributes\": {\n            \"amount\":60,\n            \"reference\": \"reference\"\n        },\n        \"relationships\": {\n            \"rounds\": {\n                \"data\": [\n                    {\n                        \"type\": \"round\",\n                        \"id\": \"87cf9b96-ab7a-45cf-bba1-f8826854fcad\"\n                    }\n                ]\n            }\n        }\n    }\n}"},"url":"{{url}}/partner_api/v2/payment_confirmations/{{payment_confirmation_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 05 Dec 2019 18:37:51 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Status","value":"200 OK"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Request-Id","value":"c3392816-36dc-4826-8716-93801afc0420"},{"key":"Etag","value":"W/\"d1876cf1594f29735d81ea699c2ed4ea\""},{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"X-Runtime","value":"0.041868"},{"key":"X-Powered-By","value":"Phusion Passenger Enterprise 6.0.2"},{"key":"Via","value":"1.1 vegur"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"540822399bf63fb1-YUL"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"f3d7bd52-4ee6-48e4-8dde-d983e0da7658\",\n        \"type\": \"payment_confirmation\",\n        \"attributes\": {\n            \"amount\": 60.95,\n            \"reference\": \"reference\"\n        },\n        \"relationships\": {\n            \"rounds\": {\n                \"data\": [\n                    {\n                        \"id\": \"1bed94d6-4174-400c-9b85-9a37cca48142\",\n                        \"type\": \"round\"\n                    }\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"a80dbbde-aa9c-4050-9872-af141b34ae3a"},{"name":"Check-In Reservations","id":"d2419a10-3f17-4ac2-9bb9-d4e8848fce21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer {{access_token}}","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"data\": {\n          \"type\": \"rounds\",\n          \"relationships\": {\n            \"rounds\": {\n              \"data\": [\n                { \"type\": \"round\", \"id\": \"b1952244-5035-40ee-94e1-da3ae9b05e45\" },\n                { \"type\": \"round\", \"id\": \"1644ae82-38ec-465e-a5d9-3ddb8d130748\" },\n                { \"type\": \"round\", \"id\": \"58a384fb-94f0-4ef3-ace2-91d873f272a7\" }\n              ]\n            }\n          }\n        }\n      }","options":{"raw":{"language":"json"}}},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/check_ins","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","check_ins"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fbef9ee1-c600-457d-8fe3-d05a845507c7","name":"Check-In Reservations","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"bearer {{access_token}}","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"data\": {\n          \"type\": \"rounds\",\n          \"relationships\": {\n            \"rounds\": {\n              \"data\": [\n                { \"type\": \"round\", \"id\": \"b1952244-5035-40ee-94e1-da3ae9b05e45\" },\n                { \"type\": \"round\", \"id\": \"1644ae82-38ec-465e-a5d9-3ddb8d130748\" },\n                { \"type\": \"round\", \"id\": \"58a384fb-94f0-4ef3-ace2-91d873f272a7\" }\n              ]\n            }\n          }\n        }\n      }","options":{"raw":{"language":"json"}}},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/check_ins"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d2419a10-3f17-4ac2-9bb9-d4e8848fce21"}],"id":"f930226d-801e-46be-8995-3543e6fa8de3","description":"<p>Reservations work via a request system.</p>\n<p>In order to create a reservation, you must first create a reservation request, then add rounds to the reservation as round requests. Once you have added the rounds to the reservation request, you can confirm the reservation.  </p>\n","event":[{"listen":"prerequest","script":{"id":"92a40095-3206-4782-8ee3-9bc1eec9ef27","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"08f7bde1-e65f-4766-8597-fcea66aed2be","type":"text/javascript","exec":[""]}}],"_postman_id":"f930226d-801e-46be-8995-3543e6fa8de3"},{"name":"Reservation (Update)","item":[{"name":"Create a round into a reservation","id":"b6bf4a28-b26c-45b8-a1ac-1b9189c9341f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"round_request\",\n        \"attributes\": {\n        \t\"green_fee\": 45.00,\n        \t\"cart_fee\": 15.95,\n            \"guest\": {\n                \"first_name\": \"testing\",\n                \"last_name\": \"testing\"\n            }\n        },\n        \"relationships\": {\n            \"customership\": {\n                \"data\": {\n                    \"type\": \"customership\",\n                    \"id\": \"cbad5a1f-1c34-4801-8371-b9742650ec91\"\n                }\n            },\n            \"player_type\": {\n                \"data\": {\n                    \"type\": \"player_type\",\n                    \"id\": \"cbad5a1f-1c34-4801-8371-b9742650ec91\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations/{{reservation_id}}/rounds","description":"<p>green_fee is the only required field. If set to null, the price from the club price sheet for their default player type will apply.</p>\n<p>You can optionally define a guest or a customer.</p>\n","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","reservations","{{reservation_id}}","rounds"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"aabef02a-d35d-46c1-b419-953c9932943c","name":"Create a round into a reservation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"round_request\",\n        \"attributes\": {\n        \t\"green_fee\": 45.00,\n        \t\"cart_fee\": 15.95,\n            \"guest\": {\n                \"first_name\": \"testing\",\n                \"last_name\": \"testing\"\n            }\n        },\n        \"relationships\": {\n            \"customership\": {\n                \"data\": {\n                    \"type\": \"customership\",\n                    \"id\": \"cbad5a1f-1c34-4801-8371-b9742650ec91\"\n                }\n            },\n            \"player_type\": {\n                \"data\": {\n                    \"type\": \"player_type\",\n                    \"id\": \"cbad5a1f-1c34-4801-8371-b9742650ec91\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations/{{reservation_id}}/rounds"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"f8e5dadb-64a2-49e2-b14c-d0eb888e26d9\",\n        \"type\": \"reservation\",\n        \"attributes\": {\n            \"booking_reference\": \"7T9S-0N2L\",\n            \"cart_count\": 2,\n            \"holes\": 18,\n            \"note\": \"Booking note\",\n            \"state\": \"confirmed\",\n            \"source\": \"partner\",\n            \"medium\": \"partner_api\",\n            \"cancelled_at\": null,\n            \"created_at\": \"2025-08-18T10:20:47-04:00\",\n            \"updated_at\": \"2025-08-19T16:39:15-04:00\"\n        },\n        \"relationships\": {\n            \"teetime\": {\n                \"data\": {\n                    \"id\": \"05ad74b1-faa2-4c1d-bdfc-f369607d2a72\",\n                    \"type\": \"teetime\"\n                }\n            },\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n                    \"type\": \"organization\"\n                }\n            },\n            \"booker\": {\n                \"data\": null\n            },\n            \"rounds\": {\n                \"data\": [\n                    {\n                        \"id\": \"19797664-aaaa-4730-8c5e-e6bd6101552e\",\n                        \"type\": \"round\"\n                    },\n                    {\n                        \"id\": \"8dbe7942-f9b9-462e-b85f-840a62cbbcac\",\n                        \"type\": \"round\"\n                    },\n                    {\n                        \"id\": \"7630c2bd-10c6-4024-9106-646d62811e15\",\n                        \"type\": \"round\"\n                    },\n                    {\n                        \"id\": \"b3cbaf19-c8a3-4c31-9efa-cf818f3ac4a7\",\n                        \"type\": \"round\"\n                    },\n                    {\n                        \"id\": \"9171ab28-8cde-4041-9e21-31c2b5f43440\",\n                        \"type\": \"round\"\n                    }\n                ]\n            },\n            \"linked_reservations\": {\n                \"data\": []\n            }\n        }\n    }\n}"}],"_postman_id":"b6bf4a28-b26c-45b8-a1ac-1b9189c9341f"},{"name":"Retrieve a round from a reservation","id":"9f0b7287-9ac9-42dc-97d8-4ce7258e1d2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations/{{reservation_id}}/rounds/{{round_id}}","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","reservations","{{reservation_id}}","rounds","{{round_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"227e3a7c-d3a4-4fb8-b9c2-b2fbf2bc2149","name":"Retrieve a round from a reservation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations/{{reservation_id}}/rounds/{{round_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"b3cbaf19-c8a3-4c31-9efa-cf818f3ac4a7\",\n        \"type\": \"round\",\n        \"attributes\": {\n            \"state\": \"reserved\",\n            \"created_at\": \"2025-08-19T16:38:18.337-04:00\",\n            \"updated_at\": \"2025-08-19T16:39:00.968-04:00\",\n            \"cancelled_at\": \"2025-08-19T16:39:00.943-04:00\",\n            \"price\": 0,\n            \"paid\": false,\n            \"guest\": {\n                \"last_name\": \"test2\",\n                \"first_name\": \"test2\"\n            },\n            \"extras\": [],\n            \"kits\": [],\n            \"rates\": {\n                \"green_fee\": null,\n                \"cart_fee\": null,\n                \"extra_fee\": 0,\n                \"kit_fee\": 0,\n                \"subtotal\": null\n            }\n        },\n        \"relationships\": {\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n                    \"type\": \"organization\"\n                }\n            },\n            \"reservation\": {\n                \"data\": {\n                    \"id\": \"f8e5dadb-64a2-49e2-b14c-d0eb888e26d9\",\n                    \"type\": \"reservation\"\n                }\n            },\n            \"player_type\": {\n                \"data\": {\n                    \"id\": \"1449e687-d510-43ee-bab9-f00dd3a6a760\",\n                    \"type\": \"player_type\"\n                }\n            },\n            \"customer\": {\n                \"data\": null\n            }\n        }\n    }\n}"}],"_postman_id":"9f0b7287-9ac9-42dc-97d8-4ce7258e1d2d"},{"name":"Update a round","id":"853cae55-0185-422c-ab98-1af3cdd099f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"reservation\",\n        \"attributes\": {\n            \"green_fee\": null,\n            \"cart_fee\": null,\n            \"guest\": {\n                \"first_name\": \"testing\",\n                \"last_name\": \"testing\"\n            }\n        },\n        \"relationships\": {\n            \"reservation\": {\n                \"data\": {\n                    \"type\": \"reservation\",\n                    \"id\": \"d0076211-3e4a-45fb-ae05-9c6766211b98\"\n                }\n            },\n            \"player_type\": {\n                \"data\": {\n                    \"type\": \"player_type\",\n                    \"id\": \"3be3e9b0-5767-4115-9c50-45a064dffb4a\"\n                }\n            },\n            \"customership\": {\n                \"data\": {\n                    \"type\": \"customership\",\n                    \"id\": \"32cbc636-594e-45ff-af41-c7dacc80db3c\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations/{{reservation_id}}/rounds/{{round_id}}","description":"<p>Minimal payload to update the guest names only:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"type\": \"reservation\",\n        \"attributes\": {\n            \"guest\": {\n                \"first_name\": \"Guest\",\n                \"last_name\": \"1234\"\n                    }\n            }\n    }\n}\n\n</code></pre>\n","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","reservations","{{reservation_id}}","rounds","{{round_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"59eb6759-476b-4bd1-be35-122c0fb5e21b","name":"Update a round","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"reservation\",\n        \"attributes\": {\n            \"green_fee\": null,\n            \"cart_fee\": null,\n            \"guest\": {\n                \"first_name\": \"testing\",\n                \"last_name\": \"testing\"\n            }\n        },\n        \"relationships\": {\n            \"reservation\": {\n                \"data\": {\n                    \"type\": \"reservation\",\n                    \"id\": \"d0076211-3e4a-45fb-ae05-9c6766211b98\"\n                }\n            },\n            \"player_type\": {\n                \"data\": {\n                    \"type\": \"player_type\",\n                    \"id\": \"3be3e9b0-5767-4115-9c50-45a064dffb4a\"\n                }\n            },\n            \"customership\": {\n                \"data\": {\n                    \"type\": \"customership\",\n                    \"id\": \"32cbc636-594e-45ff-af41-c7dacc80db3c\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations/{{reservation_id}}/rounds/{{round_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"d0076211-3e4a-45fb-ae05-9c6766211b98\",\n        \"type\": \"reservation\",\n        \"attributes\": {\n            \"booking_reference\": \"1Q2C-9X2U\",\n            \"cart_count\": 1,\n            \"holes\": 18,\n            \"note\": \"Booking 1cx 1 guest\",\n            \"state\": \"confirmed\",\n            \"source\": \"partner\",\n            \"medium\": \"partner_api\",\n            \"cancelled_at\": null,\n            \"created_at\": \"2025-08-19T10:10:19-04:00\",\n            \"updated_at\": \"2025-08-20T15:59:12-04:00\"\n        },\n        \"relationships\": {\n            \"teetime\": {\n                \"data\": {\n                    \"id\": \"a3ec1ce7-2be8-4ca0-9f53-7756870e3325\",\n                    \"type\": \"teetime\"\n                }\n            },\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n                    \"type\": \"organization\"\n                }\n            },\n            \"booker\": {\n                \"data\": null\n            },\n            \"rounds\": {\n                \"data\": [\n                    {\n                        \"id\": \"12144308-e859-48b1-b763-fbdbeb33e7e6\",\n                        \"type\": \"round\"\n                    },\n                    {\n                        \"id\": \"b665b492-4780-4c0f-8a2d-7aa0b5f31a51\",\n                        \"type\": \"round\"\n                    },\n                    {\n                        \"id\": \"5352b791-b2f1-4e5d-9d23-6265d6c46e96\",\n                        \"type\": \"round\"\n                    },\n                    {\n                        \"id\": \"d785e9ae-17dd-4f94-b48f-c3858e3038d4\",\n                        \"type\": \"round\"\n                    }\n                ]\n            },\n            \"linked_reservations\": {\n                \"data\": []\n            }\n        }\n    }\n}"}],"_postman_id":"853cae55-0185-422c-ab98-1af3cdd099f4"},{"name":"Delete a round","id":"4502f819-1909-4d11-9621-eb24647ff9aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations/{{reservation_id}}/rounds/{{round_id}}","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","reservations","{{reservation_id}}","rounds","{{round_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"69030248-207a-4376-b4bd-0d74a721477c","name":"Delete a round","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations/{{reservation_id}}/rounds/{{round_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"d0076211-3e4a-45fb-ae05-9c6766211b98\",\n        \"type\": \"reservation\",\n        \"attributes\": {\n            \"booking_reference\": \"1Q2C-9X2U\",\n            \"cart_count\": 1,\n            \"holes\": 18,\n            \"note\": \"Booking 1cx 3 guests\",\n            \"state\": \"confirmed\",\n            \"source\": \"partner\",\n            \"medium\": \"partner_api\",\n            \"cancelled_at\": null,\n            \"created_at\": \"2025-08-19T10:10:19-04:00\",\n            \"updated_at\": \"2025-08-20T15:59:12-04:00\"\n        },\n        \"relationships\": {\n            \"teetime\": {\n                \"data\": {\n                    \"id\": \"a3ec1ce7-2be8-4ca0-9f53-7756870e3325\",\n                    \"type\": \"teetime\"\n                }\n            },\n            \"organization\": {\n                \"data\": {\n                    \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n                    \"type\": \"organization\"\n                }\n            },\n            \"booker\": {\n                \"data\": null\n            },\n            \"rounds\": {\n                \"data\": [\n                    {\n                        \"id\": \"12144308-e859-48b1-b763-fbdbeb33e7e6\",\n                        \"type\": \"round\"\n                    },\n                    {\n                        \"id\": \"b665b492-4780-4c0f-8a2d-7aa0b5f31a51\",\n                        \"type\": \"round\"\n                    },\n                    {\n                        \"id\": \"5352b791-b2f1-4e5d-9d23-6265d6c46e96\",\n                        \"type\": \"round\"\n                    },\n                    {\n                        \"id\": \"d785e9ae-17dd-4f94-b48f-c3858e3038d4\",\n                        \"type\": \"round\"\n                    }\n                ]\n            },\n            \"linked_reservations\": {\n                \"data\": []\n            }\n        }\n    }\n}"}],"_postman_id":"4502f819-1909-4d11-9621-eb24647ff9aa"},{"name":"Retrieve all rounds from a reservation","id":"bbc81f65-2b53-474b-b51a-fcd58123b57f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations/{{reservation_id}}/rounds","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","reservations","{{reservation_id}}","rounds"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"aa243e4f-0845-4e0f-a01f-973356c7b5cd","name":"Retrieve all rounds from a reservation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations/{{reservation_id}}/rounds"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"c4fdb2b7-7f27-4268-9c31-9c23a358af96\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-08-19T10:07:58.453-04:00\",\n                \"updated_at\": \"2025-08-19T10:07:58.453-04:00\",\n                \"cancelled_at\": null,\n                \"price\": 110.0,\n                \"paid\": false,\n                \"guest\": {},\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 100.0,\n                    \"cart_fee\": 10.0,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"ab24beaf-dfc3-4973-bfb5-5450b7f5c1f5\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"1449e687-d510-43ee-bab9-f00dd3a6a760\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"id\": \"4602dc5f-eefd-4478-82d2-65119b4e589a\",\n                        \"type\": \"customership\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"9ed79c3b-dcd5-49c3-9f0b-97dc4339a8fb\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-08-19T10:07:58.473-04:00\",\n                \"updated_at\": \"2025-08-19T10:07:58.473-04:00\",\n                \"cancelled_at\": null,\n                \"price\": 110.0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Guest\",\n                    \"first_name\": \"1\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 100.0,\n                    \"cart_fee\": 10.0,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"ab24beaf-dfc3-4973-bfb5-5450b7f5c1f5\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"1449e687-d510-43ee-bab9-f00dd3a6a760\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"6815a454-2384-42b8-b07a-54fa5da2ab01\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-08-19T10:07:58.486-04:00\",\n                \"updated_at\": \"2025-08-19T10:07:58.486-04:00\",\n                \"cancelled_at\": null,\n                \"price\": 110.0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Guest\",\n                    \"first_name\": \"2\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 100.0,\n                    \"cart_fee\": 10.0,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"ab24beaf-dfc3-4973-bfb5-5450b7f5c1f5\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"1449e687-d510-43ee-bab9-f00dd3a6a760\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"78117d80-5612-4de1-898b-a2284be939f5\",\n            \"type\": \"round\",\n            \"attributes\": {\n                \"state\": \"reserved\",\n                \"created_at\": \"2025-08-19T10:07:58.497-04:00\",\n                \"updated_at\": \"2025-08-19T10:07:58.497-04:00\",\n                \"cancelled_at\": null,\n                \"price\": 110.0,\n                \"paid\": false,\n                \"guest\": {\n                    \"last_name\": \"Guest\",\n                    \"first_name\": \"3\"\n                },\n                \"extras\": [],\n                \"kits\": [],\n                \"rates\": {\n                    \"green_fee\": 100.0,\n                    \"cart_fee\": 10.0,\n                    \"extra_fee\": 0,\n                    \"kit_fee\": 0,\n                    \"subtotal\": null\n                }\n            },\n            \"relationships\": {\n                \"organization\": {\n                    \"data\": {\n                        \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n                        \"type\": \"organization\"\n                    }\n                },\n                \"reservation\": {\n                    \"data\": {\n                        \"id\": \"ab24beaf-dfc3-4973-bfb5-5450b7f5c1f5\",\n                        \"type\": \"reservation\"\n                    }\n                },\n                \"player_type\": {\n                    \"data\": {\n                        \"id\": \"1449e687-d510-43ee-bab9-f00dd3a6a760\",\n                        \"type\": \"player_type\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"page\": 1,\n        \"page_size\": 25,\n        \"total\": 4,\n        \"total_pages\": 1\n    }\n}"}],"_postman_id":"bbc81f65-2b53-474b-b51a-fcd58123b57f"},{"name":"Update a reservation","id":"34882e46-acd4-473c-ab72-8d59abb8e232","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"reservation\",\n        \"attributes\": {\n            \"note\": \"Booking 1cx 3 guests - updated\"\n        },\n        \"relationships\": {\n             \"teetime\": {\n                \"data\": {\n                    \"id\": \"3ae213a0-5f61-4c68-9538-8118de3b313f\",\n                    \"type\": \"teetime\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations/{{reservation_id}}","description":"<p>On an existing booking you can update the note associated, as well as move the booking to a different tee time, as long as it has sufficient free slots.</p>\n","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","reservations","{{reservation_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"cb4d4ec0-bc86-438d-a3fa-16407befbc15","name":"Update a reservation","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"reservation\",\n        \"attributes\": {\n            \"note\": \"Booking 1cx 3 guests - updated\"\n        },\n        \"relationships\": {\n             \"teetime\": {\n                \"data\": {\n                    \"id\": \"3ae213a0-5f61-4c68-9538-8118de3b313f\",\n                    \"type\": \"teetime\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/reservations/{{reservation_id}}/rounds/{{round_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"1bf43d9c-b5de-4467-8a7b-b12780416c53\",\n    \"type\": \"reservation\",\n    \"attributes\": {\n      \"booking_reference\": \"5E0I-5I0R\",\n      \"cart_count\": 2,\n      \"holes\": 18,\n      \"note\": \"Booking 1cx 3 guests - updated\",\n      \"state\": \"confirmed\",\n      \"source\": \"partner\",\n      \"medium\": \"partner_api\",\n      \"cancelled_at\": null,\n      \"created_at\": \"2025-08-20T10:10:50-04:00\",\n      \"updated_at\": \"2025-08-21T11:19:45-04:00\"\n    },\n    \"relationships\": {\n      \"teetime\": {\n        \"data\": {\n          \"id\": \"3ae213a0-5f61-4c68-9538-8118de3b313f\",\n          \"type\": \"teetime\"\n        }\n      },\n      \"organization\": {\n        \"data\": {\n          \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n          \"type\": \"organization\"\n        }\n      },\n      \"booker\": {\n        \"data\": null\n      },\n      \"rounds\": {\n        \"data\": [\n          {\n            \"id\": \"c1082121-ea06-4816-acf6-9fc5dc6c04ad\",\n            \"type\": \"round\"\n          },\n          {\n            \"id\": \"0ee28abe-07f7-4c3d-b352-a4850966c7a4\",\n            \"type\": \"round\"\n          },\n          {\n            \"id\": \"416bcf6e-c02d-457f-af5b-b0a6848e4452\",\n            \"type\": \"round\"\n          },\n          {\n            \"id\": \"7ee7b27a-3fae-4eed-bb68-af3e82ee44c0\",\n            \"type\": \"round\"\n          }\n        ]\n      },\n      \"linked_reservations\": {\n        \"data\": []\n      }\n    }\n  },\n  \"included\": [\n    {\n      \"id\": \"c1082121-ea06-4816-acf6-9fc5dc6c04ad\",\n      \"type\": \"round\",\n      \"attributes\": {\n        \"state\": \"reserved\",\n        \"created_at\": \"2025-08-20T10:10:50.463-04:00\",\n        \"updated_at\": \"2025-08-20T10:10:50.463-04:00\",\n        \"cancelled_at\": null,\n        \"price\": 110,\n        \"paid\": false,\n        \"guest\": {},\n        \"extras\": [],\n        \"kits\": [],\n        \"rates\": {\n          \"green_fee\": 100,\n          \"cart_fee\": 10,\n          \"extra_fee\": 0,\n          \"kit_fee\": 0,\n          \"subtotal\": null\n        }\n      },\n      \"relationships\": {\n        \"organization\": {\n          \"data\": {\n            \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n            \"type\": \"organization\"\n          }\n        },\n        \"reservation\": {\n          \"data\": {\n            \"id\": \"1bf43d9c-b5de-4467-8a7b-b12780416c53\",\n            \"type\": \"reservation\"\n          }\n        },\n        \"player_type\": {\n          \"data\": {\n            \"id\": \"1449e687-d510-43ee-bab9-f00dd3a6a760\",\n            \"type\": \"player_type\"\n          }\n        },\n        \"customer\": {\n          \"data\": {\n            \"id\": \"dad49384-0534-4d67-b242-d3b4572a8bcc\",\n            \"type\": \"customership\"\n          }\n        }\n      }\n    },\n    {\n      \"id\": \"0ee28abe-07f7-4c3d-b352-a4850966c7a4\",\n      \"type\": \"round\",\n      \"attributes\": {\n        \"state\": \"reserved\",\n        \"created_at\": \"2025-08-20T10:10:50.477-04:00\",\n        \"updated_at\": \"2025-08-20T10:10:50.477-04:00\",\n        \"cancelled_at\": null,\n        \"price\": 110,\n        \"paid\": false,\n        \"guest\": {\n          \"last_name\": \"Guest\",\n          \"first_name\": \"1\"\n        },\n        \"extras\": [],\n        \"kits\": [],\n        \"rates\": {\n          \"green_fee\": 100,\n          \"cart_fee\": 10,\n          \"extra_fee\": 0,\n          \"kit_fee\": 0,\n          \"subtotal\": null\n        }\n      },\n      \"relationships\": {\n        \"organization\": {\n          \"data\": {\n            \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n            \"type\": \"organization\"\n          }\n        },\n        \"reservation\": {\n          \"data\": {\n            \"id\": \"1bf43d9c-b5de-4467-8a7b-b12780416c53\",\n            \"type\": \"reservation\"\n          }\n        },\n        \"player_type\": {\n          \"data\": {\n            \"id\": \"1449e687-d510-43ee-bab9-f00dd3a6a760\",\n            \"type\": \"player_type\"\n          }\n        },\n        \"customer\": {\n          \"data\": null\n        }\n      }\n    },\n    {\n      \"id\": \"416bcf6e-c02d-457f-af5b-b0a6848e4452\",\n      \"type\": \"round\",\n      \"attributes\": {\n        \"state\": \"reserved\",\n        \"created_at\": \"2025-08-20T10:10:50.488-04:00\",\n        \"updated_at\": \"2025-08-20T10:10:50.488-04:00\",\n        \"cancelled_at\": null,\n        \"price\": 110,\n        \"paid\": false,\n        \"guest\": {\n          \"last_name\": \"Guest\",\n          \"first_name\": \"2\"\n        },\n        \"extras\": [],\n        \"kits\": [],\n        \"rates\": {\n          \"green_fee\": 100,\n          \"cart_fee\": 10,\n          \"extra_fee\": 0,\n          \"kit_fee\": 0,\n          \"subtotal\": null\n        }\n      },\n      \"relationships\": {\n        \"organization\": {\n          \"data\": {\n            \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n            \"type\": \"organization\"\n          }\n        },\n        \"reservation\": {\n          \"data\": {\n            \"id\": \"1bf43d9c-b5de-4467-8a7b-b12780416c53\",\n            \"type\": \"reservation\"\n          }\n        },\n        \"player_type\": {\n          \"data\": {\n            \"id\": \"1449e687-d510-43ee-bab9-f00dd3a6a760\",\n            \"type\": \"player_type\"\n          }\n        },\n        \"customer\": {\n          \"data\": null\n        }\n      }\n    },\n    {\n      \"id\": \"7ee7b27a-3fae-4eed-bb68-af3e82ee44c0\",\n      \"type\": \"round\",\n      \"attributes\": {\n        \"state\": \"reserved\",\n        \"created_at\": \"2025-08-20T10:10:50.501-04:00\",\n        \"updated_at\": \"2025-08-20T10:10:50.501-04:00\",\n        \"cancelled_at\": null,\n        \"price\": 110,\n        \"paid\": false,\n        \"guest\": {\n          \"last_name\": \"Guest\",\n          \"first_name\": \"3\"\n        },\n        \"extras\": [],\n        \"kits\": [],\n        \"rates\": {\n          \"green_fee\": 100,\n          \"cart_fee\": 10,\n          \"extra_fee\": 0,\n          \"kit_fee\": 0,\n          \"subtotal\": null\n        }\n      },\n      \"relationships\": {\n        \"organization\": {\n          \"data\": {\n            \"id\": \"2dc5b2c0-52ae-42b2-9491-6f062c12658c\",\n            \"type\": \"organization\"\n          }\n        },\n        \"reservation\": {\n          \"data\": {\n            \"id\": \"1bf43d9c-b5de-4467-8a7b-b12780416c53\",\n            \"type\": \"reservation\"\n          }\n        },\n        \"player_type\": {\n          \"data\": {\n            \"id\": \"1449e687-d510-43ee-bab9-f00dd3a6a760\",\n            \"type\": \"player_type\"\n          }\n        },\n        \"customer\": {\n          \"data\": null\n        }\n      }\n    },\n    {\n      \"id\": \"3ae213a0-5f61-4c68-9538-8118de3b313f\",\n      \"type\": \"teetime\",\n      \"attributes\": {\n        \"blocked\": false,\n        \"date\": \"2025-08-21\",\n        \"hole\": 1,\n        \"format\": \"normal\",\n        \"start_time\": \"17:51\",\n        \"free_slots\": 0\n      },\n      \"relationships\": {\n        \"course\": {\n          \"data\": {\n            \"id\": \"f22a5353-3056-4d2d-8902-0c9f57a743a8\",\n            \"type\": \"course\"\n          }\n        },\n        \"event\": {\n          \"data\": null\n        }\n      }\n    }\n  ]\n}"}],"_postman_id":"34882e46-acd4-473c-ab72-8d59abb8e232"}],"id":"e7cf3670-c692-4296-8f04-6ed4d1edc0a4","_postman_id":"e7cf3670-c692-4296-8f04-6ed4d1edc0a4","description":""},{"name":"Products","item":[{"name":"List all products for a given organization","id":"f6d7e72e-38f5-4e19-a628-fde9c79067f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"bearer {{access_token}}","type":"text"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/products","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","products"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>value can be kit_lines or courses</p>\n","type":"text/plain"},"key":"include[]","value":"kit_lines"},{"disabled":true,"description":{"content":"<p>value can be green_fee, cart, extra or kit</p>\n","type":"text/plain"},"key":"filter[product_type][]","value":"kit"},{"disabled":true,"description":{"content":"<p>value must be an integer</p>\n","type":"text/plain"},"key":"filter[bookable_holes][]","value":null}],"variable":[]}},"response":[],"_postman_id":"f6d7e72e-38f5-4e19-a628-fde9c79067f1"},{"name":"retrieve a specific product","id":"52e69bd2-52cf-40d1-a23f-ebb3cfad75b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"bearer {{access_token}}","type":"text"}],"url":"{{url}}/partner_api/v2/products/{{product_id}}?include[]=kit_lines&include[]=courses","urlObject":{"path":["partner_api","v2","products","{{product_id}}"],"host":["{{url}}"],"query":[{"key":"include[]","value":"kit_lines"},{"key":"include[]","value":"courses"}],"variable":[]}},"response":[],"_postman_id":"52e69bd2-52cf-40d1-a23f-ebb3cfad75b6"},{"name":"List all price overrides","id":"b8eacb9a-e270-4fce-bafc-650e4b1aee59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/price_overrides","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","price_overrides"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8eacb9a-e270-4fce-bafc-650e4b1aee59"},{"name":"retrieve a specific price override","id":"a82ea721-2097-444d-bbf2-03763be5f37e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/partner_api/v2/price_overrides/{{price_override_id}}","urlObject":{"path":["partner_api","v2","price_overrides","{{price_override_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a82ea721-2097-444d-bbf2-03763be5f37e"},{"name":"Create a price override","id":"b6bed7a5-6ec8-4a4a-90d0-9530ae1e5cf7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"price_override\",\n    \"attributes\": {\n      \"starts_at\": \"2020-02-25 06:00:00\",\n      \"ends_at\": \"2020-02-25 20:00:00\",\n      \"price\": 45.87\n    },\n    \"relationships\": {\n      \"product\": {\n        \"data\": {\n          \"type\": \"product\",\n          \"id\": \"52c699cd-37b5-478e-8565-153fd5f31520\"\n        }\n      },\n      \"course\": {\n        \"data\": {\n          \"type\": \"course\",\n          \"id\": \"7ba80346-ff84-4b0d-abb6-b2ba66b8af78\"\n        }\n      },\n      \"player_type\": {\n        \"data\": {\n          \"type\": \"player_type\",\n          \"id\": \"407d6028-af09-4869-adf9-6be382da8053\"\n        }\n      }\n    }\n  }\n}"},"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/price_overrides","description":"<p>A price override enables an integrator to set a price for a product, for a specific course and player type. This price overrides the price set in the price sheet for this given player type/course/time combination. </p>\n<p>Products can be listed and their IDs can be retrieved via the products endpoint. Overrides apply for greenfees and carts. </p>\n<p>Multiple price overrides can exist at once for a given product, course and player type combination. Overrides of shorter duration take precedence over ones with longer duration. Example: a price override is created for 6AM to 8PM for a given product/course/player type with a price of $30. A second price override is created with the same parameters, but for 10AM-11AM, for $25. The price for that day would thus be $30 from 6AM-( up to but not including) 10AM, $25 from 10AM-(up to but not including) 11AM, $30 from 11AM onwards.</p>\n<p>If two price overrides are created for the same duration, the first one takes precendent. Example: a price override is created for 10-11AM for a given player type/course/product for $20. A second one is created for 10:30-11:30AM for $30. The price would thus be $20 from 10-11AM, then $30 from 11-11:30AM. </p>\n<p>A price override start time is inclusive, end time is exclusive (up to but not including X timestamp)</p>\n<p>Price overrides can be listed by calling <code>/partner_api/v2/organizations/organization_id/price_overrides</code></p>\n<p>Price overrides can also be deleted.</p>\n","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","price_overrides"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b6bed7a5-6ec8-4a4a-90d0-9530ae1e5cf7"},{"name":"Delete a price override","id":"43939b37-9790-4da5-95d7-eaab96370eb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/partner_api/v2/price_overrides/{{price_override_id}}","urlObject":{"path":["partner_api","v2","price_overrides","{{price_override_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"43939b37-9790-4da5-95d7-eaab96370eb1"}],"id":"19a9bee0-b2d5-4978-bf2f-49f5ce22cce7","_postman_id":"19a9bee0-b2d5-4978-bf2f-49f5ce22cce7","description":""},{"name":"Aging Report","item":[{"name":"New Request","id":"382eb76e-35eb-4bd3-bea3-d79efa9199dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"bearer {{access_token}}","type":"text"}],"url":"{{url}}/partner_api/v2/organizations/{{organization_id}}/aging_report?filter[cut_off_date]=2026-02-11&filter[type]=Customership&sort=-over_30&page[number]=1&page[size]=10","description":"<p>Returns a paginated list of aging report entries for all house account holders at the specified organization (club).</p>\n<p>Each entry includes the customer's current balance, credit limit, and a breakdown of how old the outstanding balance is across 30-day aging buckets.</p>\n<p><strong>URL:</strong> <code>GET /partner_api/v2/organizations/{organization_id}/aging_report</code></p>\n<p><strong>Headers:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Required</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Accept</code></td>\n<td>Yes</td>\n<td><code>application/vnd.api+json</code></td>\n</tr>\n<tr>\n<td><code>Authorization</code></td>\n<td>Yes</td>\n<td><code>Bearer {access_token}</code></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Query Parameters:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>filter[cut_off_date]</code></td>\n<td>No</td>\n<td>The reference date for aging calculations (YYYY-MM-DD). MUST be less than today's date. Defaults to yesterday in the club's timezone.</td>\n</tr>\n<tr>\n<td><code>filter[type]</code></td>\n<td>No</td>\n<td>Filter by holder type: <code>Customership</code>, <code>Reseller</code>, or <code>All</code>. Defaults to <code>All</code>.</td>\n</tr>\n<tr>\n<td><code>sort</code></td>\n<td>No</td>\n<td>Sort field. Options: <code>total</code>, <code>last_30</code>, <code>over_30</code>, <code>over_60</code>, <code>over_90</code>, <code>over_120</code>. Prefix with <code>-</code> for descending (e.g. <code>-total</code>). Defaults to <code>total</code> ascending.</td>\n</tr>\n<tr>\n<td><code>page[number]</code></td>\n<td>No</td>\n<td>Page number. Defaults to 1.</td>\n</tr>\n<tr>\n<td><code>page[size]</code></td>\n<td>No</td>\n<td>Results per page. Defaults to 25.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Attributes:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>Customer UUID</td>\n</tr>\n<tr>\n<td><code>ref</code></td>\n<td>string</td>\n<td>Customer reference code</td>\n</tr>\n<tr>\n<td><code>holder_name</code></td>\n<td>string</td>\n<td>Full name of the account holder</td>\n</tr>\n<tr>\n<td><code>member_no</code></td>\n<td>string</td>\n<td>Membership number (null if not set)</td>\n</tr>\n<tr>\n<td><code>holder_type</code></td>\n<td>string</td>\n<td><code>Customership</code> or <code>Reseller</code></td>\n</tr>\n<tr>\n<td><code>total</code></td>\n<td>number</td>\n<td>Net balance (deposits minus charges)</td>\n</tr>\n<tr>\n<td><code>deposit</code></td>\n<td>number</td>\n<td>Total credits/deposits</td>\n</tr>\n<tr>\n<td><code>owing</code></td>\n<td>number</td>\n<td>Total debits/charges</td>\n</tr>\n<tr>\n<td><code>last_30</code></td>\n<td>number</td>\n<td>Balance accrued in the last 30 days</td>\n</tr>\n<tr>\n<td><code>over_30</code></td>\n<td>number</td>\n<td>Balance accrued 30-60 days ago</td>\n</tr>\n<tr>\n<td><code>over_60</code></td>\n<td>number</td>\n<td>Balance accrued 60-90 days ago</td>\n</tr>\n<tr>\n<td><code>over_90</code></td>\n<td>number</td>\n<td>Balance accrued 90-120 days ago</td>\n</tr>\n<tr>\n<td><code>over_120</code></td>\n<td>number</td>\n<td>Balance older than 120 days</td>\n</tr>\n<tr>\n<td><code>credit_limit</code></td>\n<td>number</td>\n<td>Account credit limit</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Error Responses:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>Condition</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>400 Bad Request</code></td>\n<td>Organization is not a club, or house accounts V2 is not enabled</td>\n</tr>\n<tr>\n<td><code>401 Unauthorized</code></td>\n<td>Missing or invalid access token</td>\n</tr>\n<tr>\n<td><code>403 Forbidden</code></td>\n<td>Integrator is archived or lacks permission</td>\n</tr>\n<tr>\n<td><code>503 Service Unavailable</code></td>\n<td>Endpoint is temporarily disabled</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["partner_api","v2","organizations","{{organization_id}}","aging_report"],"host":["{{url}}"],"query":[{"key":"filter[cut_off_date]","value":"2026-02-11"},{"key":"filter[type]","value":"Customership"},{"key":"sort","value":"-over_30"},{"key":"page[number]","value":"1"},{"key":"page[size]","value":"10"}],"variable":[]}},"response":[{"id":"affdcd38-9186-414f-a72d-790ce6a715bc","name":"New Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Authorization","value":"bearer {{access_token}}","type":"text"}],"url":{"raw":"{{url}}/partner_api/v2/organizations/{{organization_id}}/aging_report?filter[cut_off_date]=2026-02-11&filter[type]=Customership&sort=-over_30&page[number]=1&page[size]=10","host":["{{url}}"],"path":["partner_api","v2","organizations","{{organization_id}}","aging_report"],"query":[{"key":"filter[cut_off_date]","value":"2026-02-11"},{"key":"filter[type]","value":"Customership"},{"key":"sort","value":"-over_30"},{"key":"page[number]","value":"1"},{"key":"page[size]","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Frame-Options","value":"ALLOWALL"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Vary","value":"Accept,Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"ETag","value":"W/\"87732047b2e427bb8e65e7138c18840d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"88661402-4d72-46d6-8cc8-441dfd0e4686"},{"key":"X-Runtime","value":"0.156767"},{"key":"Content-Length","value":"263"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1b2d9d52-c879-4d0b-8c5a-0c7d7fe52e8d\",\n            \"type\": \"aging_report_entry\",\n            \"attributes\": {\n                \"ref\": \"7C7R-9J3O\",\n                \"holder_name\": \"Billy Allen\",\n                \"member_no\": null,\n                \"holder_type\": \"Customership\",\n                \"total\": 0,\n                \"deposit\": 0,\n                \"owing\": 0,\n                \"last_30\": 0,\n                \"over_30\": 0,\n                \"over_60\": 0,\n                \"over_90\": 0,\n                \"over_120\": 0,\n                \"credit_limit\": 1000\n            }\n        }\n    ],\n    \"meta\": {\n        \"page\": 1,\n        \"page_size\": 10,\n        \"total\": 6,\n        \"total_pages\": 1\n    }\n}"}],"_postman_id":"382eb76e-35eb-4bd3-bea3-d79efa9199dd"}],"id":"38d7ed49-d48f-40ea-b934-6db38c4f8f45","description":"<p>The Aging Report provides a per-customer breakdown of outstanding house account balances and how long those balances have been owed.</p>\n<p>Each entry in the report represents a single customer at a club, showing their total balance split into aging buckets: last 30 days, 30-60 days, 60-90 days, 90-120 days, and over 120 days.</p>\n<p>The aging report is only available for clubs with house accounts V2 enabled.</p>\n","_postman_id":"38d7ed49-d48f-40ea-b934-6db38c4f8f45"}],"event":[{"listen":"prerequest","script":{"id":"07fcf57d-af0b-4016-9cdb-e4b0958645c3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8f8da1fe-128f-48be-bbd0-7b43599457bd","type":"text/javascript","exec":[""]}}]}