{"info":{"_postman_id":"5b1ef88a-78c6-47df-8414-29bdbfd52738","name":"TEI Integration APIs","description":"<html><head></head><body><p>This page provides detailed information on the TEI APIs for approved external integrations, which enable seamless access to TEI data. If you are a TEI user or a third-party provider working with TEI users, please contact TEI Support for assistance.</p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p>All TEI APIs can be accessed at: <code>https://api.totaleintegrated.com/</code>.</p>\n<h3 id=\"http-headers\">HTTP Headers</h3>\n<p>All APIs should be invoked with the following standard HTTP headers unless otherwise specified:</p>\n<ul>\n<li><p><code>Authorization</code> - <code>Bearer</code></p>\n</li>\n<li><p><code>Content-Type</code> - <code>application/json</code></p>\n</li>\n</ul>\n<h3 id=\"http-status-code\">HTTP Status Code</h3>\n<p>All APIs return one or more of the following codes.</p>\n<ul>\n<li><p><code>200</code> - OK, the operation was successful.</p>\n</li>\n<li><p><code>400</code> - Bad Request</p>\n</li>\n<li><p><code>401</code> - Unauthorized, due to invalid access token or authorization needed.</p>\n</li>\n<li><p><code>403</code> - Forbidden</p>\n</li>\n<li><p><code>404</code> - Not Found</p>\n</li>\n<li><p><code>500</code> - Internal Server Error</p>\n</li>\n</ul>\n<h3 id=\"datestimes\">Dates/Times</h3>\n<p>All date-time values are based on the client's server timezone and are formatted in ISO 8601 format <code>YYYY-MM-DDThh:mm:ssZ</code>.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"42898161","collectionId":"5b1ef88a-78c6-47df-8414-29bdbfd52738","publishedId":"2sAYkBrgUt","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-04-09T20:39:03.000Z"},"item":[{"name":"Getting an OAuth Token","item":[{"name":"ClientEncryptionToken","event":[{"listen":"test","script":{"id":"e3b4767e-6b22-48f1-b501-43a9497ae78c","exec":["var { Property } = require('postman-collection');\r","pm.variables.clear();\r","var jsonData = JSON.parse(responseBody);\r","pm.globals.set(\"token\",jsonData.Token);\r","console.log(pm.variables.get(\"token\"));"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d629082f-bc2c-405a-b740-d71086afbdaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"ClientID\":\"{{clientId}}\",\"ClientSecret\":\"{{clientsecret}}\"}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/Auth/ClientEncryptionToken","description":"<p>Requests an Encryption Token.</p>\n<p><strong>Method:</strong> Post</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n","urlObject":{"path":["Auth","ClientEncryptionToken"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"9322ce0f-dd25-4dc3-85f4-68f626ba099e","name":"ClientEncryptionToken","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":" { \"ClientID\": \"CLIENT_ID\" }","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/Auth/ClientEncryptionToken"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Token\": \"895342\"\r\n}"},{"id":"991955cb-4921-4b5e-9902-48f687459e04","name":"ClientEncryptionToken","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ClientID\":\"{{clientId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/Auth/ClientEncryptionToken"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d629082f-bc2c-405a-b740-d71086afbdaf"},{"name":"AuthenticateClient","event":[{"listen":"prerequest","script":{"id":"61488371-aeef-4c8d-bb91-b78bcb1a914b","exec":["var url = require('url');\r","var { Property } = require('postman-collection');\r","//const CryptoJS = require('crypto-js')\r","\r","console.log(pm.variables.get(\"token\"));\r","const clientsecret = pm.variables.get(\"clientsecret\");\r","const key = pm.globals.get('token');\r","let hash = computeHashHex(clientsecret, key);\r","pm.variables.set(\"password\", hash);\r","\r","function computeHashHex(message, key_hex) {    \r","    //return 'tea';\r","    return CryptoJS.HmacSHA256(message, key_hex).toString(CryptoJS.enc.Hex);    \r","}\r","\r",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"2e74a5f3-bf1b-400b-8f31-a9e168e213d1","exec":["var { Property } = require('postman-collection');\r","\r","var jsonData = JSON.parse(responseBody);\r","pm.collectionVariables.unset(\"bearerToken\");\r","pm.collectionVariables.set(\"bearerToken\", jsonData.access_token);\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"0dcf19be-23f3-4741-b165-63501b7c03c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{clientId}}"},{"key":"password","value":"{{password}}"}]},"isInherited":false},"method":"POST","header":[{"key":"initiator","value":"5aa6b941-b55f-4f94-9292-eb1d8a426d66","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"ClientID\": \"8a44f2ab69fd482fa81b61a683395a2f\",\r\n  \"Hash\": \"ccfb28d97b8207e70071626a74cb6166732bc6c7af4b6e388c3341a54b010f8f\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/Auth/AuthenticateClient","description":"<p>Requests a client access token.</p>\n<p><strong>Method:</strong> Post</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n","urlObject":{"path":["Auth","AuthenticateClient"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"ac31b12a-c4db-44f9-ab7a-e50ee47490e1","name":"AuthenticateClient Copy","originalRequest":{"method":"POST","header":[{"key":"initiator","value":"eff97c26c3b8432b","type":"text"}],"url":"{{base_url}}/Auth/AuthenticateClient"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"access_token\": \"CfDJ8FgiEerv6wlBhSvQqYN17iZypfkYJBRCa6YlkduDG425ErNFi3v-MRNY7R2shmwSqQzgpEYs1QxzzAL5B9ZHTjgHGC0GtzfjV8n1TYC_YbrgEGZh1QzLENVAdfcGe3-_zdUzedYD0qDMRUXyShcl3FHTq8ThXWRYt7fxlvv-Pe-2QJMyuNAdA-CUHPfbvjR0YDInaSX5BG24iIbvxf1cVCY18VofIayW_orvCDzq_kENH2pHEZPl9pKXzF3Q4Iqs9GkrFS7S5Sh2EQLxK_6eeh8B4LR8ZireRKFsJ33H-PYzaX55VR7urk-j0IA_Gk0cOFD1aQTSt7xYpdm6enVQtQ6bmKXRCZc2iOmgaPbaF2Y3VAtXE4-dWwEb9IV8pKrgi_oFPd4MqNLeW___X9e1lzqQqzZ0S8-rZwpJusrbF76mJNjUOjUCGlWV0IxqNtOeLU7_nLD6MJo4ejp3yJWnDau04uXF28izFiBkl7pX2Nd5MFR33Z5EUuY\",\r\n    \"token_type\": \"Bearer\",\r\n    \"client_identifier\": \"MemberApp\",\r\n    \"client_name\": \"MemberApp\",\r\n    \".issued\": \"2025-03-18T15:28:04\",\r\n    \"expires_in\": 31536000,\r\n    \".expires\": \"2026-03-18T15:28:04\",\r\n    \"properties\": {}\r\n}"}],"_postman_id":"0dcf19be-23f3-4741-b165-63501b7c03c4"}],"id":"2a669a3a-5c89-4e5a-88e8-367ff8a177fb","description":"<h3 id=\"getting-an-oauth-token\">Getting an OAuth Token</h3>\n<p>TEI APIs are secured with a customized oAuth type authentication to allow integrators to communicate securely with TEI Services. The oAuth authorization API consists of a single <strong>token</strong> resource (endpoint) where client applications can obtain access tokens that can be used to invoke all other APIs.</p>\n<h4 id=\"token\">Token</h4>\n<p>In order to retrieve a bearer token to access all calls you must first get a NUMERIC_TOKEN by calling ClientEncryptionToken and passing in your CLIENT_ID. This numeric token will be the key when generating the HMAC SHA256 hash of your CLIENT_SECRET. Once the hash is received it will be used to generate a basic authorization base64-encoded header token (GENERATED_BASIC_TOKEN ) using your CLIENT_ID as the username and the generated hash as the password. The basic authorization header token will be used to call AuthenticateClient which will return a bearer token to be used on all subsequent calls.</p>\n<h4 id=\"client-authentication-process\">Client Authentication Process</h4>\n<p>(1) <a href=\"https://documenter.getpostman.com/view/42898161/2sAYkBrgUt#d629082f-bc2c-405a-b740-d71086afbdaf\">Request an encryption token</a>.</p>\n<p>(2) Generate HMAC SHA256 hash of your CLIENT_SECRET, using the encryption token as the key.</p>\n<p>(3) Generate Basic Authorization Token using CLIENT_ID as username and created hash as password.</p>\n<p>(4) <a href=\"https://documenter.getpostman.com/view/42898161/2sAYkBrgUt#8f6ca6f5-1486-49c0-b193-d6a2459c8584\">Request client access token</a>.</p>\n","_postman_id":"2a669a3a-5c89-4e5a-88e8-367ff8a177fb"},{"name":"Authenticating Via TEI Login (OAuth 2.0)","item":[{"name":"Authorize","id":"6cb647f0-90f8-4c46-a5f2-4c383bf7674f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{base_url}}/OAuth/Authorize?client_id=sample_client_id&redirect_uri=https://example.com/callback&response_type=code","description":"<p><strong>Method:</strong> Get</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.96.0</p>\n","urlObject":{"path":["OAuth","Authorize"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>An identifier for your application provided by TEI.</p>\n","type":"text/plain"},"key":"client_id","value":"sample_client_id"},{"description":{"content":"<p>The URL in your app where the user is sent to after authentication.</p>\n","type":"text/plain"},"key":"redirect_uri","value":"https://example.com/callback"},{"description":{"content":"<p>Code (OAuth2 authorization code flow).</p>\n","type":"text/plain"},"key":"response_type","value":"code"}],"variable":[]}},"response":[],"_postman_id":"6cb647f0-90f8-4c46-a5f2-4c383bf7674f"},{"name":"Token","id":"9e5626ff-24a2-4145-b0d7-e654ce69b541","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"grant_type\": \"authorization_code\",\r\n    \"code\": \"sample_auth_code\",\r\n    \"redirect_uri\": \"https://example.com/callback\",\r\n    \"client_id\": \"sample_client_id\",\r\n    \"client_secret\": \"sample_client_secret\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/OAuth/Token","description":"<p><strong>Method:</strong> Get</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version</strong>: 1.96.0</p>\n","urlObject":{"path":["OAuth","Token"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"9a9e7db0-bccd-4602-ae9c-fe2d45896c53","name":"Token","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"grant_type\": \"authorization_code\",\r\n    \"code\": \"sample_auth_code\",\r\n    \"redirect_uri\": \"https://example.com/callback\",\r\n    \"client_id\": \"sample_client_id\",\r\n    \"client_secret\": \"sample_client_secret\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/OAuth/Token"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\naccess_token = resp.AccessToken,\r\ntoken_type = \"Bearer\",\r\nexpires_in = 3600\r\n}"}],"_postman_id":"9e5626ff-24a2-4145-b0d7-e654ce69b541"},{"name":"GetUserInfo","id":"6014d696-1db2-4484-87de-a6b98f3ac10a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{base_url}}/OAuth/GetUserInfo","description":"<p><strong>Method:</strong> Get</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version</strong>: 1.96.0</p>\n","urlObject":{"path":["OAuth","GetUserInfo"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"13c4032d-ff86-4e56-af35-a757b2cb49a3","name":"GetUserInfo","originalRequest":{"method":"GET","header":[],"url":"{{base_url}}/OAuth/GetUserInfo"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"firstName\": \"John\",\r\n    \"lastName\": \"Doe\",\r\n    \"email\": \"john.doe@example.com\",\r\n    \"userName\": \"johndoe\",\r\n    \"displayName\": \"John Doe\",\r\n    \"highestDesignation\": \"Senior Business Analyst\"\r\n}"}],"_postman_id":"6014d696-1db2-4484-87de-a6b98f3ac10a"}],"id":"a05edfda-b276-4b83-94dd-c99c310e3f5a","description":"<p>TEI supports third-party authentication using its next-gen login system, allowing vendors to authenticate users via the TEI OAuth 2.0 flow.</p>\n<p>| <strong>End Point:</strong> | <code>{{base_url}}/OAuth/Authorize</code> |</p>\n<h3 id=\"pre-requisites\">Pre-Requisites</h3>\n<p>Ensure TEI has provided you with the following information before you get started:</p>\n<ul>\n<li><p><strong>Base_URL</strong></p>\n</li>\n<li><p><strong>Client ID</strong></p>\n</li>\n<li><p><strong>ClientSecret</strong></p>\n</li>\n</ul>\n<p>Additionally, confirm that the TEI team has set your portal's <strong>Token Storage Type</strong> to <strong>Application Storage</strong>.</p>\n<h3 id=\"1-login-button-in-your-application\">1. Login Button In Your Application</h3>\n<ul>\n<li>The user visits your application and clicks the <strong>\"Login with TEI\"</strong> button which redirects to the <a href=\"https://documenter.getpostman.com/view/42898161/2sAYkBrgUt#6cb647f0-90f8-4c46-a5f2-4c383bf7674f\">TEI authorization endpoint</a>.</li>\n</ul>\n<h3 id=\"2-user-authentication\">2. User Authentication</h3>\n<ul>\n<li><p>The user is redirected to the TEI login page for credential input.</p>\n<ul>\n<li><p>Once successful, redirects back with an authorization code.</p>\n<ul>\n<li>GET <code>{{redirect_uri}}?code=authorization_code</code></li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"3-token-exchange\">3. Token Exchange</h3>\n<ul>\n<li>The backend exchanges the authorization code for an <a href=\"https://documenter.getpostman.com/view/42898161/2sAYkBrgUt#9e5626ff-24a2-4145-b0d7-e654ce69b541\">access token</a>.</li>\n</ul>\n<h3 id=\"4-get-user-info\">4. Get User Info</h3>\n<ul>\n<li>After successful login and token exchange, the access token can be used to <a href=\"https://documenter.getpostman.com/view/42898161/2sAYkBrgUt#6014d696-1db2-4484-87de-a6b98f3ac10a\">get the user’s information</a>.</li>\n</ul>\n<h3 id=\"5-logout\">5. Logout</h3>\n<ul>\n<li><p>To log the user out of both your app and the TEI portal, redirect them to the following logout URL:</p>\n<ul>\n<li><code>{{portal_url}}/auth/logout?redirect_uri={ENCODED_REDIRECT_URL}</code></li>\n</ul>\n</li>\n<li><p>This will clear the TEI session and redirect the user back to your specified location.</p>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/b425976c-ec0b-4a1d-ac6e-a0f4388224ae/aW1hZ2UucG5n\" width=\"800\" height=\"305\" />","_postman_id":"a05edfda-b276-4b83-94dd-c99c310e3f5a"},{"name":"Access Registrations","item":[{"name":"GetExistingRegistration","id":"bf179c2e-8661-4fea-8500-f5e2fc8db9dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/booking/access/Registration?RegistrationUID","description":"<p>Collects the details of a previously submitted access registration.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RegistrationUID REQUIRED</td>\n<td>The unique identifier for the access registration you’d like to view.  <br />Example: d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RegistrationTypeID</td>\n<td>The unique identifier for the type of access registration.  <br />Example: ACCOMPANIED.</td>\n</tr>\n<tr>\n<td>RequestingContactID</td>\n<td>The unique identifier for the contact who submitted this access request.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>The start date of the booking.  <br />Example: 2023-04-26T00:00:000Z</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>The end date of the booking.  <br />Example: 2023-05-26T00:00:000Z</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name of the guest.  <br />Example: Aaron.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name of the guest.  <br />Example: Roque.</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>The unique member identifier for the member registering.  <br />Currently labelled Member Number in API.  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>The email address of the guest.  <br />Example: <a href=\"https://mailto:Aaron.Roque@dayrep.com\">Aaron.Roque@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>The phone number of the contact.  <br />Example: 8888888888</td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td>The date of birth of the contact.  <br />Example: 1990-05-26T00:00:00Z</td>\n</tr>\n<tr>\n<td>Photo</td>\n<td>The uploaded photo of the contact.</td>\n</tr>\n<tr>\n<td>AdditionalNotes</td>\n<td>Any additional notes added to the reservation.</td>\n</tr>\n<tr>\n<td>DestinationAddress</td>\n<td>The property address where the guest will be staying.</td>\n</tr>\n<tr>\n<td>PickUpLocation</td>\n<td>The selected card pick up location ID.</td>\n</tr>\n<tr>\n<td>VisitReason</td>\n<td>Why the guest is visiting the club.</td>\n</tr>\n<tr>\n<td>FieldVisibility:</td>\n<td>-</td>\n</tr>\n<tr>\n<td>HideDestinationAddress</td>\n<td>Show or hide the field for “Guest Destination/Address”</td>\n</tr>\n<tr>\n<td>HideVisitReason</td>\n<td>Show or hide the field for ‘Visit Reason’  <br />Example: false.</td>\n</tr>\n<tr>\n<td>HideAdditionalNotes</td>\n<td>Show or hide a text area field for “Additional Notes”  <br />Example: False.</td>\n</tr>\n<tr>\n<td>HidePickupLocation</td>\n<td>Show or hide the drop down “Card pick up location.”  <br />Example: True.</td>\n</tr>\n<tr>\n<td>CardPickUpLocations (List)</td>\n<td>Where the user can pick up their access pass.</td>\n</tr>\n<tr>\n<td>ID</td>\n<td>The unique identifier for the location.  <br />Example: 1</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>The description/name for the location.  <br />Example: Main Gate</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","access","Registration"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique identifier for the access registration you’d like to view.\nExample: d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3.</p>\n","type":"text/plain"},"key":"RegistrationUID","value":null}],"variable":[]}},"response":[{"id":"63f87390-f968-47b0-b9a6-7eaea5a57a1a","name":"GetExistingRegistration","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/api/v1/booking/access/Registration?RegistrationUID","host":["{{base_url}}"],"path":["api","v1","booking","access","Registration"],"query":[{"key":"RegistrationUID","value":null,"description":"REQUIRED - The unique identifier for the access registration you’d like to view.\nExample: d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"RegistrationTypeID\": \"ACCOMPANIED\",\r\n    \"RequestingContactID\": \"71F61FAB-9251-41BB-86C9-43EC68A0BBE3\",\r\n    \"StartDate\": \"2023-04-26T00:00:00Z\",\r\n    \"EndDate\": \"2023-05-26T00:00:00Z\",\r\n    \"FirstName\": \"Aaron\",\r\n    \"LastName\": \"Roque\",\r\n    \"MemberID\": \"F001\",\r\n    \"Email\": \"Aaron.Roque@dayrep.com\",\r\n    \"Phone\": \"8888888888\",\r\n    \"DateOfBirth\": \"1990-05-26T00:00:00Z\",\r\n    \"Photo\": \"/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkL...\",\r\n    \"AdditionalNotes\": \"Guest requires wheelchair access.\",\r\n    \"DestinationAddress\": \"123 Clubhouse Drive\",\r\n    \"PickUpLocation\": \"1\",\r\n    \"VisitReason\": \"Business Meeting\",\r\n    \"FieldVisibility\": {\r\n        \"HideDestinationAddress\": false,\r\n        \"HideVisitReason\": false,\r\n        \"HideAdditionalNotes\": false,\r\n        \"HidePickupLocation\": true\r\n    },\r\n    \"CardPickUpLocations\": [\r\n        {\r\n            \"ID\": 1,\r\n            \"Location\": \"Main Gate\"\r\n        }\r\n    ]\r\n}\r\n﻿\r\n"}],"_postman_id":"bf179c2e-8661-4fea-8500-f5e2fc8db9dd"},{"name":"GetGuestDays","id":"dd86d2df-6288-432e-bad3-c41dbe195cd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/access/getguestdays?MemberID=F001","description":"<p>Returns the number of accompanied and unaccompanied guest days remaining for the member account provided.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.98.6</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberID REQUIRED</td>\n<td>The unique identifier for the member account.  <br />Example: F001.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccompaniedGuestDays</td>\n<td>The remaining number of accompanied guest days this season for the member account.  <br />Example: 100.</td>\n</tr>\n<tr>\n<td>UnaccompaniedGuestDays</td>\n<td>The remaining number of unaccompanied guest days this season for the member account.  <br />Example: 20.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","access","getguestdays"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>The unique identifier for the member account. </p>\n","type":"text/plain"},"key":"MemberID","value":"F001"}],"variable":[]}},"response":[{"id":"7b0e1101-79cc-4ce3-b643-2d24b94c1f14","name":"GuestGuestDays","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{base_url}}/api/v1/booking/access/getguestdays?ContactID=468C2EB9-096E-41C3-A06B-B7D9532CC431&MemberID=F001","host":["{{base_url}}"],"path":["api","v1","booking","access","getguestdays"],"query":[{"key":"ContactID","value":"468C2EB9-096E-41C3-A06B-B7D9532CC431","description":"The unique identifier for the contact."},{"key":"MemberID","value":"F001","description":"The unique identifier for the member account. "}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"AccompaniedGuestDays\": \"100.\",\r\n    \"UnaccompaniedGuestDays\": \"20\"\r\n}"}],"_postman_id":"dd86d2df-6288-432e-bad3-c41dbe195cd4"},{"name":"GetRegistrationTypes","id":"b8a6f994-dc72-4620-9139-052a0af79315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/booking/access/getregistrationtypes","description":"<p>Provides the list of available access registration types which may be booked.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>None</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Registration Types (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>RegistrationTypeID</td>\n<td>The unique identifier for the type of access registration.  <br />Example: ACCOMPANIED</td>\n</tr>\n<tr>\n<td>RegistrationTypeName</td>\n<td>The customer-friendly name for the registration type.  <br />Example: “Accompanied Guest”</td>\n</tr>\n<tr>\n<td>RegistrationDescription</td>\n<td>The customer-friendly description for the registration type.  <br />Example: “Access to club facilities and amenities with a member present.”</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","access","getregistrationtypes"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"4c4a25e5-c300-443d-8f71-001f8319dab5","name":"GetRegistrationTypes","originalRequest":{"method":"GET","header":[],"url":"{{base_url}}/api/v1/booking/access/getregistrationtypes"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"RegistrationTypes\": [\r\n        {\r\n            \"RegistrationTypeID\": \"ACCOMPANIED\",\r\n            \"RegistrationTypeName\": \"Accompanied Guest\",\r\n            \"RegistrationDescription\": \"Access to club facilities and amenities with a member present.\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"b8a6f994-dc72-4620-9139-052a0af79315"},{"name":"GetRegistrationDetails","id":"8462ece3-9f34-4e22-8dcb-591c4c524b40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/booking/access/RegistrationDetails?RegistrationTypeID=ACCOMPANIED","description":"<p>Provides the list of fields that should be shown or hidden based on the selected registration type.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RegistrationTypeID REQUIRED</td>\n<td>The unique identifier for the type of access registration.  <br />Example: MEMBER</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RegistrationTypeID</td>\n<td>The unique identifier for the type of access registration.  <br />Example: MEMBER</td>\n</tr>\n<tr>\n<td>RegistrationTypeName</td>\n<td>The customer-friendly name for the registration type.  <br />Labelled ‘WebTitle’ in current version.  <br />Example: “Accompanied Guest”</td>\n</tr>\n<tr>\n<td>RegistrationDescription</td>\n<td>The customer-friendly description for the registration type.  <br />Labelled ‘WebSubTitle’ in current version.  <br />Example: “Access to club facilities and amenities with a member present.”</td>\n</tr>\n<tr>\n<td>RequireMemberID</td>\n<td>Whether or not a valid member ID is required.  <br />Example: False.</td>\n</tr>\n<tr>\n<td>RequireEmail</td>\n<td>Whether or not a unique email address is required.  <br />Example: True.</td>\n</tr>\n<tr>\n<td>RequirePhoto</td>\n<td>Whether or not an uploaded photo must be provided.  <br />Example: False.</td>\n</tr>\n<tr>\n<td>CardPickUpLocations (List)</td>\n<td>Where the user can pick up their access pass.</td>\n</tr>\n<tr>\n<td>ID</td>\n<td>The unique identifier for the location.  <br />Example: 1</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>The description/name for the location.  <br />Example: Main Gate</td>\n</tr>\n<tr>\n<td>RegistrationTypeFieldVisibility</td>\n<td></td>\n</tr>\n<tr>\n<td>HideAdditionalNotes</td>\n<td>Show or hide a text area field for “Additional Notes”  <br />Example: False.</td>\n</tr>\n<tr>\n<td>HideArriving</td>\n<td>Show or hide the field “Will the guest(s) be arriving with a member?”  <br />Example: False.</td>\n</tr>\n<tr>\n<td>HideCardPickup</td>\n<td>Show or hide the drop-down “Card pick up location.”  <br />Example: True.</td>\n</tr>\n<tr>\n<td>HideDestinationAddress</td>\n<td>Show or hide the field for “Guest Destination/Address”</td>\n</tr>\n<tr>\n<td>HideVisitReason</td>\n<td>Show or hide the field for ‘Visit Reason’  <br />Example: false.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","access","RegistrationDetails"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique identifier for the type of access registration.Example: MEMBER</p>\n","type":"text/plain"},"key":"RegistrationTypeID","value":"ACCOMPANIED"}],"variable":[]}},"response":[{"id":"a20f1280-ab7d-4bca-82f1-7bce8bebbd26","name":"GetRegistrationDetails","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/api/v1/booking/access/RegistrationDetails?RegistrationTypeID=ACCOMPANIED","host":["{{base_url}}"],"path":["api","v1","booking","access","RegistrationDetails"],"query":[{"key":"RegistrationTypeID","value":"ACCOMPANIED","description":"REQUIRED - The unique identifier for the type of access registration.Example: MEMBER"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"RegistrationTypes\": [\r\n        {\r\n            \"RegistrationTypeID\": \"ACCOMPANIED\",\r\n            \"RegistrationTypeName\": \"Accompanied Guest\",\r\n            \"RegistrationDescription\": \"Access to club facilities and amenities with a member present.\",\r\n            \"RequireMemberID\": false,\r\n            \"RequireEmail\": true,\r\n            \"RequirePhoto\": false,\r\n            \"CardPickUpLocations\": [\r\n                {\r\n                    \"ID\": 1,\r\n                    \"Location\": \"Main Gate\"\r\n                }\r\n            ],\r\n            \"RegistrationTypeFieldVisibility\": {\r\n                \"HideAdditionalNotes\": false,\r\n                \"HideArriving\": false,\r\n                \"HideCardPickup\": true,\r\n                \"HideDestinationAddress\": false,\r\n                \"HideVisitReason\": false\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"8462ece3-9f34-4e22-8dcb-591c4c524b40"},{"name":"PostGuestRegistration","id":"a8c4e1c2-5a88-4804-89c7-438c2f712903","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"NumberOfRegistrants\": 2,\r\n    \"RequestingContactID\": \"71F61FAB-9251-41BB-86C9-43EC68A0BBE3\",\r\n    \"RegistrantDetails\": [\r\n        {\r\n            \"RegistrationUID\": \"d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3\",\r\n            \"RegistrationTypeID\": \"ACCOMPANIED\",\r\n            \"StartDate\": \"2023-04-26T00:00:00Z\",\r\n            \"EndDate\": \"2023-05-26T00:00:00Z\",\r\n            \"FirstName\": \"Aaron\",\r\n            \"LastName\": \"Roque\",\r\n            \"Email\": \"Aaron.Roque@dayrep.com\",\r\n            \"Phone\": \"8888888888\",\r\n            \"DateOfBirth\": \"1990-05-26T00:00:00Z\",\r\n            \"Photo\": \"/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/\",\r\n            \"AdditionalNotes\": \"Guest has requested a parking spot.\",\r\n            \"DestinationAddress\": \"123 Beachside Ave, Miami, FL\",\r\n            \"PickUpLocation\": 1,\r\n            \"VisitReason\": \"Attending a private event.\"\r\n        },\r\n        {\r\n            \"RegistrationUID\": \"e2345fgh-a223-495e-9b2e-bb1e3bf1d3c3\",\r\n            \"RegistrationTypeID\": \"ACCOMPANIED\",\r\n            \"StartDate\": \"2023-04-26T00:00:00Z\",\r\n            \"EndDate\": \"2023-05-26T00:00:00Z\",\r\n            \"FirstName\": \"Emily\",\r\n            \"LastName\": \"Smith\",\r\n            \"Email\": \"Emily.Smith@dayrep.com\",\r\n            \"Phone\": \"9999999999\",\r\n            \"DateOfBirth\": \"1992-08-15T00:00:00Z\",\r\n            \"Photo\": \"/9j/5AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/\",\r\n            \"AdditionalNotes\": \"Vegetarian meal requested.\",\r\n            \"DestinationAddress\": \"123 Beachside Ave, Miami, FL\",\r\n            \"PickUpLocation\": 1,\r\n            \"VisitReason\": \"Attending a private event.\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/access/GuestRegistration","description":"<p>Submits a new or edits an existing guest access registration to the TEI access dashboard.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NumberofRegistrants</td>\n<td>The number of individuals being registered.  <br />Example: 2.</td>\n</tr>\n<tr>\n<td>RequestingContactID</td>\n<td>The unique identifier for the contact who submitted this access request.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.</td>\n</tr>\n<tr>\n<td>RegistrantDetails (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>RegistrationUID</td>\n<td>The unique identifier for each access registration. Pass this in to edit an existing access registration, exclude from API for new registrations.  <br />Please note, you cannot change the assigned contact of an approved guest registration - must be in pending status.  <br />Example: d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3.</td>\n</tr>\n<tr>\n<td>RegistrationTypeID</td>\n<td>The unique identifier for the type of access registration.  <br />Note, this cannot be changed for an existing RegistrationUID.  <br />Example: ACCOMPANIED.</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>The start date of the booking.  <br />Example: 2023-04-26T00:00:000Z</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>The end date of the booking.  <br />Example: 2023-05-26T00:00:000Z</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name of the guest.  <br />Example: Aaron.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name of the guest.  <br />Example: Roque.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>The email address of the guest.  <br />Note: if email already exists in DB we will match registration to the contact.  <br />Example: <a href=\"https://mailto:Aaron.Roque@dayrep.com\">Aaron.Roque@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>The phone number of the contact.  <br />Example: 8888888888</td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td>The date of birth of the contact.  <br />Example: 1990-05-26T00:00:00Z</td>\n</tr>\n<tr>\n<td>Photo</td>\n<td>The uploaded photo of the contact using Base64 type encoding. The Base64 encoded image data is then sent to the API to save within the DB. Max size of 1mb and file must be JPEG or PNG.  <br />Example: /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/</td>\n</tr>\n<tr>\n<td>AdditionalNotes</td>\n<td>Any additional notes added to the reservation.</td>\n</tr>\n<tr>\n<td>DestinationAddress</td>\n<td>The property address where the guest will be staying.</td>\n</tr>\n<tr>\n<td>PickUpLocation</td>\n<td>The selected card pick up location ID.</td>\n</tr>\n<tr>\n<td>VisitReason</td>\n<td>Why the guest is visiting the club.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Status</td>\n<td>The status ID to indicate if the registration was successfully submitted.  <br />Example: Success</td>\n</tr>\n<tr>\n<td>Message</td>\n<td>The message description to be shown to the end user.  <br />Example: “Registrations were submitted successfully!”</td>\n</tr>\n<tr>\n<td>RegistrationUID (List)</td>\n<td>The unique identifier for each access registration.  <br />Example: d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","access","GuestRegistration"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"2de23288-a1cd-4237-ab59-aa1aa7cef49a","name":"PostGuestRegistration","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"NumberOfRegistrants\": 2,\r\n    \"RequestingContactID\": \"71F61FAB-9251-41BB-86C9-43EC68A0BBE3\",\r\n    \"RegistrantDetails\": [\r\n        {\r\n            \"RegistrationUID\": \"d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3\",\r\n            \"RegistrationTypeID\": \"ACCOMPANIED\",\r\n            \"StartDate\": \"2023-04-26T00:00:00Z\",\r\n            \"EndDate\": \"2023-05-26T00:00:00Z\",\r\n            \"FirstName\": \"Aaron\",\r\n            \"LastName\": \"Roque\",\r\n            \"Email\": \"Aaron.Roque@dayrep.com\",\r\n            \"Phone\": \"8888888888\",\r\n            \"DateOfBirth\": \"1990-05-26T00:00:00Z\",\r\n            \"Photo\": \"/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/\",\r\n            \"AdditionalNotes\": \"Guest has requested a parking spot.\",\r\n            \"DestinationAddress\": \"123 Beachside Ave, Miami, FL\",\r\n            \"PickUpLocation\": 1,\r\n            \"VisitReason\": \"Attending a private event.\"\r\n        },\r\n        {\r\n            \"RegistrationUID\": \"e2345fgh-a223-495e-9b2e-bb1e3bf1d3c3\",\r\n            \"RegistrationTypeID\": \"ACCOMPANIED\",\r\n            \"StartDate\": \"2023-04-26T00:00:00Z\",\r\n            \"EndDate\": \"2023-05-26T00:00:00Z\",\r\n            \"FirstName\": \"Emily\",\r\n            \"LastName\": \"Smith\",\r\n            \"Email\": \"Emily.Smith@dayrep.com\",\r\n            \"Phone\": \"9999999999\",\r\n            \"DateOfBirth\": \"1992-08-15T00:00:00Z\",\r\n            \"Photo\": \"/9j/5AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/\",\r\n            \"AdditionalNotes\": \"Vegetarian meal requested.\",\r\n            \"DestinationAddress\": \"123 Beachside Ave, Miami, FL\",\r\n            \"PickUpLocation\": 1,\r\n            \"VisitReason\": \"Attending a private event.\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/access/GuestRegistration"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Status\": \"Success\",\r\n    \"Message\": \"Registrations were submitted successfully!\",\r\n    \"RegistrationUID\": [\r\n        \"d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3\",\r\n        \"e2345fgh-a223-495e-9b2e-bb1e3bf1d3c3\"\r\n    ]\r\n}"}],"_postman_id":"a8c4e1c2-5a88-4804-89c7-438c2f712903"},{"name":"PostMemberRegistration","id":"bd2d2d93-24ba-4cd5-83d8-fe16bfed255b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"NumberofRegistrants\": 1,\r\n  \"RequestingContactID\":\"B9454737-30EB-4F0C-A2D1-80E74897B1B2\",\r\n  \"RegistrantDetails\": [\r\n    {\r\n      \"RegistrationTypeID\": \"MEMBER\",\r\n      \"StartDate\": \"2024-06-26T00:00:00Z\",\r\n      \"EndDate\": \"2024-06-28T00:00:00Z\",\r\n      \"FirstName\": \"Mike\",\r\n      \"LastName\": \"Hudson\",\r\n      \"MemberID\": \"05602\",\r\n      \"Photo\": \"/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/RD84QzQ5OjcBCgoKDQwNGg8PGjclHyU3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3N//AABEIAJQAxQMBEQACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAADBAECBQYAB//EADkQAAIBAwMCBQIDBQgDAQAAAAECAwAEEQUSITFhBhMiQVFxkRRSgSMyQmKhBxUzcoKxweFDktEk/8QAGgEAAwEBAQEAAAAAAAAAAAAAAQIDAAQFBv/EACcRAAICAQUAAgICAwEAAAAAAAABAhEDBBIhMUETUSIyYXEUI0IF/9oADAMBAAIRAxEAPwDQ0y2j2DKRH6jmvVnI+bwwjXQZ7SRX3QsEB6gHispL0Lxyu4st+ElY4Kgn5B60NyCoSZUWUkXqMfI71tyZvicOQtsSGJVsH4NBoaD54CuitJudASe9Dkd02NQ2UUoxl0z8Ujk0VjjUha90e6tjvh/aD6c08cql2Ryaecf1BWlxPC5yvI6jFGUIsXHklF8mjJcwXMJW4tznHUCpbXF8M6HkjOP5Izry2hgCG0Ykn59qrFtv8jnyQjFfgRHbXSgkwh9w65zW3R+wRhkXlib2LzTkMAp+DVN6SISwuUuSbiwlQDcQyj4oRmmGeGSQm8GfaqJnPKNkfh+1azbCfw1Cw7CDbUbBsPfhq1g+M8LftWsZQL+QKFjbCwhoWOkeMNazUR5FazbSDD2o2K4m/FaFeAVH6VzuR3rG16Mi1Zl2l1+1JuKfG3xZVNKmzuinXPwaPyr1A/x5Lpg5YbxHKSDdkcEdKKcWuBZRyLhkLayRep4TtPxRckwKEo8tB40tZOuQcUj3eFFsfY3bWiA+iX7mkcmWhBeMM8s0BAPqB9xQpSGcnEiEwsSHiHPvis0/GCLj9FnhSQlB6QR8VraC4p8GdeaSEX9nIST0FVjkvs5smnpcMpbwX1s4Uqw7ZoycWLCGWBDWFxJMSWXeeTk0d6ozxTb5YlIsoJBY46GnVHPJSXADyO1NYm0nyO1azbC3kD4oWNsI8gfFawbT3kD4o2baV8ntWs2095PahYdpKw89K1hUSTD2oWHae8ntWsO0qYe1GxdpsqD7qTXMdyLAkH0qawRmB2z0IpWqKRbGcDjdzilRQLvTZtA+9A18UZjWheUswGPbFWU+ODmeK5WxuKzj45I/Wkc2VWNDH4RSfTIc96XcU+Mq1r0HQ/IrbgOBE9mwRTuxRUkCWNi8tu4G8NnHemUkTlB9gl3NINztTUhFbfLLmNfNLFt2RjJoWHb+Vlf7vixksf0rb2D4I9sDJYoP3WI7GmU/sSWBeFFs12ksDxRc+QLFwBaAqeRxRUhHCivk9qNi7T3k9q1h2nvJ7VrBtI8ntWs2095XatYVE95R+KFh2nvK7VrDtIMXatYNppDd8VA7FYVdw560AhkY+4oDJlyA4wQRWGBNCR0bNGxHE8FYd61hVlxuHtQCrLq23rmsMHjljz6jStDJobBhlTYSMd6XlD8MXl05MfspCB7inWQnLCn0KGw2e4+9P8hL4Ac0ltEu2W5iXHywzSvJQ6wuXCRkXXiO0gJVYZTGP/IBgfpUHqsSdXZ1R/8APyuNvgRXxrp7ybUglkH5iBWepijR0U3waFt4l02X0yFoR/OOP6UI6qDGloJxXBpFYbiHdEyP75Vq6IZE+mcWTTyj+yBm3ULnJz9KruIPGink/wApo2JtZHldq1m2keXRs2095dazUR5dBs1HjHQs1FTHRsFF/P8Aip0XskXDA1qMpBVuW7UKH3FxcN8ihQbCLLQoYvvHvWCXDD4rGQre6nYWKF7q7iiH8zc0OgpX0Yg8XWMz4tYZ5UH/AJCm1f69ajPU44e2dGPR5Z+UCufFgQ4ihAP8zVB6y+kdK0CX7SEJPGk0ZzJcLEvYVOWfNLhFo6fBDs5y+8UX1/ehbS9u5c8BIyeaZPIl+bA44pSqERtpf7rtxcagWib4bkk1zNvI6XJ1pLFG5cEya7Y6rZMkch88jpsNBYZwf8BeeORUYRSazYN5RKdyBV7T4s5vyj4Dm1zyExIodm/hQ5IorFYHmoNb654hkTdpsPkxgZ7/ANaKjCL7A55JroBa+KfFZkbyLqVznlfLBx/Sunel6cjxbv8Ak3dD13xc1wJLy5UxfkljX/ipz1VdFMei3dqje1HxxJZKpk09Hc8Eq+KOPVbuKFyaFR9Frf8AtBtyM3NmyD5Vqt/kHM9H/Jrw+L9FkVTJO0Ib+J0OPvVI5ov0hPTTj4bNtdWl5H5ttcRSoehVqfdZP42u0XMkAOPNjz/mFZyS7MsbfQrJqWmxMVe8gDD23ijuFcGgYGOtawKJJdFGWdR9TSuUV6Oscn0hO71zTbNczXcf0DZNI8sV6Vjp5vwxLrx7ZI221t5Zu/QUrzoqtLL1gV8c3Df4dio+rVGWofh0Q0kfQq+MNQccW0S/epvUyLR0mMXuPEGrXC7TIqg8ekYqbzzfpVabGn+pa00xbk77tvMY1y5M0jsx4I/RuWlhbwDEcYA7nNcspyZ1RhFdBZ9MtJx+0hH6HFBZJIZ44vtGVP4S09zvUMG/mO4f1qq1MyL0sGD/ALqurQgWrQoB7hOaKyxf7A+GUf1FbrTpLhd97EbhlHG6qRyxT/F0Tlhk1+XJiPFevL5FqqW4zwBHt/qaunDt8nO45OlwZ8lhO7ss6yuVPJaTr9qqprwk4P0b0S306C43zsinrtk4zS5HOS4GxRxxlyaWoSTzxsUhaGHOFIXhhUoJLt8l5tvpcCWnCWzm3M8KRE8tuGRVJJSRHG3FjOt6tFFAo02TzJD+8/OKTHj5/IplzcVExLCyu9alcXF0qkc4ZsfauhyjBcI5owlkfLN6LTLfTbfM8ySn3B5rneSU3wdCxxguWK217afjMKgEZ4ZSMg07i9om6O7ge1K1isodtvJtSXldhxikxylY+SEUjPia8gXcGZ0xyQc1Ru+ycVt6EHgtZZGeQneeuadSaJ7It8iUuu6xcH13sw+jVbc/TnUF4gfnXkvMt1K2fljSNlEmXS3yctk/WlsfaORW4+KRsdRH4IR8VNsqoj8SYFTbKpBlQ7gaDYUjWs5MYzUJIvFmtDID71JoqmNKQRQoYkjigwpgJBzWMCZRWABkQH94A/pTIDFJLWJuSi/amUmhXFMVl061Y7mhViOhIp1lmumTlig/AUkUwQxrLIsf5RjFOp82K8fFWZ8mlW0jbpi5P0FVWdoi8EX2CbSbIezkf5qb55CvTwIWxtozlUrfLJ9m+KKLeTH0IBrb2bYiBDH+QfatvZvjQTYCMHke2fahuNtPCJU6cVtxtoF7WJmyRk029iuCOcSLtV7OahiOLtStjpDMcfalbGoZjSlbHSGolxSDoajFIyiGEpWMhiPilHHYZSPekaHTH4bikodMcSRWHWhQTzpmlCmLSKR0rBAuybggdN+M7c8/amSfdCtrqwbAY71jCGhTSaxqN7bLDiGFikcinlmHXI+K7Hgioq+2caztyf0izjFc50C0gHxRTFYtIKdCMWcUwoI0wp7OKxiwesayGkogsE0wzRSFbMdBVjnQdBQYyDoKVjoMlAYYSlGDoaRjoOhpQh0NAdDCNShQdHxSjjMcxWlYyZTVNdh0qyM86s+ThEXqx/4p8WF5ZUiWbPHFHcxXw34jGtuYLi2FrcFPNjRZN4dc4yDgcj3GKfUaX4+VyhNPqvl4apnPeEYpbzxleSl94jZlkk/MQ2Biu7LSxxSOLDbyybOg8UX402wvJ14fzXiiHyxYgY+39K4oYt+WvDtyZHDBu9NLwPp8ljpcTyekpEWk7k8n9avN3Jsgo7YKIg4zmuJHcAdfimQjF3TNMgC8kdMIAZe1OKCbiiKwZasLYN5OKZIVsWeXmnSFbF1pmKgyUgyDrWGCpSjIMhpRkHQ0BkGU0GEMrUgwZWoDBlagFGZq3iO30uQRvC8rYydpAxV8WnlkV3Rz5dVHG6qzmNd8Vf3pbJCll5O19wcy7uMY6YH+9dmDB8Tbs4s+p+aNVQSO6STQLQBB5is0ZZTtZR2I55oO1NhVOCNzwiFsrC4cKf8AEzGD7VHM90i+BKMB2Swk1+ZZeco+5A3KqfcgfP8A9pVJQ6KODmuejs7iRdO8OztIwwoVN2cZycVPuLGk1vRglk2l1Po+a5jpv1C8E1veLJ5EuWjOCKZprsnvTdAJOBzTIzAP0phWKyMB704jYvI4/SmQjZBiJTcuCD8GsgCsisKoIJyghutMhGeWgFBkpRgymgMgqGlYwVTQCGQ0BkGU0rGCqaAbCq1AYKrd6UNnHeLIduoklh+1AcZ+n/VelpXeM8zVqshzTtGGI3V00cdmrobxOpiaVBzkBjioZb8OrC1VNnaWyssMEEYBPVu1cjd8ndGNcHV2EIgjVEGB2qF2dG0f1G0jvNKkgmRWjyGKnpwaLbUeCapy5OLuvDscBJtZp7cHjCucfY0Fmb7QZYF4yulacmnzzO0xkZ/ngitOTlXAIY1Bt2MTSwg7ZcgH3xWjZpSS7ErvSXkXfBcypnpg5FPHIl2I4blwzEu9L1Jf8O93fUVeOSH0Qlin9mVNZ6sqlTOMH2Bqqnj+iLx5fsnSItStbnd5oI9wxzmhkcGg44zi+TevFt2XKjDH94BuM1CFl5JGLOkIbln/AParog0g6mkY6DIaUcKprBQRTShCqaUYKrUBkGVqAQivQCEDUA2J61qZ03TpLhVBfIVM9Mmq4Me+dMlqM3xwtHz641C7uS7T3EjM/wC+c43f9fAr04xUVSPHlOU3cmLZHamFIyD1xRMdP4P1qW1uRFeTMbQdGfnyz7c/FcufCpK12dmm1Dg6k+D69pw8z3yvUEe9eZ/Z7DfFo2VRWiKHHqG2qVwQd2Yuk2N1Pqb3V2dkcSlYoD/Vj3pscVFGnOxfxZYW99cNMYmMqooJi4J4pJ5Hv4NDH+BwU/lCTyRd3AXdghmyVP0qq5XRzy44s39P2pBs88ysOM56Vztc2dGNqgd4NhyFZgPy00QyMW7vo0Y74ZR/pq8Yt+kJSS8M2TU7cHI3Bh/LVFjZJ5IoXfVoT0Yg9xT/ABsR5Yi0l7Cxzx9qbYxN8TRU1EugqGlGDKawQgNAYIhpRgimgFBQ1AYIGpQlg/NYxwWv6jd3OoywXXoSFyqx5yAPn9RXpYYRjFNHk55zlNqRk7qsmQosu3cd+4dgK1moesoLc3G24LKR/Bt5/WhbCkP6lLFPIumWNv5Qz63J5OPc9u1BX2xuOkfWPAGH0KFEYt5LGM7jkjBrzc8f9jPV0sv9KR1iRH5pUh3IusSqxdWOT1o8IF3wc3LdebPJJk4ZuPpXLLlnVHhUKXem2GoENcQJ5g5DgYb70VOS6YJQjLtAbPQo7RpWidm3njPtWeRvsVYYp2gdzbbM5pkzNGVciEHa7J+pxVY34SlXpk3NrEcldhzVU2QaRm3NhG/RUqqmybgjOfS1B6/aqLKyLwo0AaiXCKaUZBVNYIQGgMEU0oQgNAIVTWGRfdigExdY11IFlhs3RpVX1PnOw/H1rpw6e+ZdHJn1O3iJykrbys0zGZ39Tktkn612pJcI85uUnbHl0mRrR73iGGNQ7bm/hLbRjnk5zx14ougJugbWtt+GW4t5XEi4O9wdu4Htk8+nGQBSMZdHotI1O+iN5HC0obksHG77Zz7UrnGPA6hKStDWl3bM34W4i/8A0qCPNY+rAx6SPvRfVg6dM+m/2cyeVLc2JPMiib6kcN/uv2rj1EbpndpZVaO7ykIOXyB75rntI6+ZGNqOuBt0NoQfYv7fpSOf0NGC9MhX6VIsFSStQQ8c2PehRiZUWYDnBrGfJm3+lwXC4liVu+KpGbROWOL7OavfDUXqMLunwAxrpjn+zllp/pmHdaHdRE7J3/VqsssX2jnlhkumIvpt8hxvY/6qoskPom8c/sdBqJcIDQGCKaAQgNANhVNAJdWoDBVOaAUwV3dC2iZiASAcA9M00I7mLOaijhhCOS3LE5r0bPJLrZ7l4OCaDkMomjc2s19BbRRQohgTacMf2h/N2pXlS7GWF1wAuF1KxsXtZoXS3lYGRtoIfB45xxyB9qMZxk+GCWOUe0MXNtZmaxOmmWS6Kb5rY8iPAHIPfn6Uf7B7wO6lfJrEUetQ2X4a4tGRLkq24TL03n4OcZqcVsdFZP5FaXRveFdRkt9e86EblSFsjPAzjFR1DqBXSq5nTXmp3F56XbbH+Rff6/NcDZ6dC6MBQCGV6wQgesZMIr0AhVl71jBhLkYOMUKMBmt1dTs6/FMmBoyru1B9LDmnUiMomTPaeqrKRJxObBqxAuppRkwimgEKDQGCA0Al1asGxe61CO2U+oFscCnhjcic8igc/dXk10x3t6fZfiuyEFDg4Z5HNlUhJwazkBRNOysmlC8Ec1GUjohCzpdK0vfkMvQ9RXPKZ1QxnVwaVA1q0FygkRxgq3ORUNzu0X2qqZ878beGh4cmgutNaYQTbgSTkofjPxj5ruwZt/EjztRgWPmJhQooPlWwuJY5rfbKiHHr/wCeccV0f2cyvpencaLZixtAHwZnwZCPn4rzMs97PWwY9kf5Hw1SosEDVqCXD0DBFesGy4ehRrCB6xrLrJ3rBsKsvesAuxSVcOP1rGEp7ElsqQRTKQjifOl6V2nCXU0GFBFNKMFU1gl92BzQCIX2orFlIsMfr0q0MTfLIZMyXCMV5GlfcxPNdSSiuDkbcnyGgizzStjxiatraF8YG4dqhKR0RgdTpFh6cbc+1c05HXjidVYWKL7YxUbsvVI1oY1A/wAtABh+OYFuvDl7G52KIywOOmOafFKsiYmWF43Z8r8Nu0phhLnbFN5ixADOSOWJ+K9HPxF2eVgjc1R2Yb3+ea809aywagEsHrGLCStRrLiSgEuJKxi4krUawgkoUay6yVjWXEtY1hBNWo1nzKM9Ppj613nnoIDxmgEvmgwokyBBkkCso2G6My8vi/pRiB810QxV2cuTM3whEncaqRqw0MeTmlkx4xNaztWJ4XJ71CUjphA6nTNPG0MR9BXNKR1wgdLYWu05wBUmyyVGugwMAc5pQjGNqd6zMjjv7SNVFnoht4xunu/2aKBk7f4jj6f71bTQ3TvxENVPZjr1nJeH7Z7SxUORzkhdmCueuT1PSq557nSIabHsjbNYPXPR0lt9YJYPWMTvoBssHrUaywk5o0ay4koUay4krUaywloUaywlrUay6y8VqNZ89T94j2612nAgwJ479aAxYcZHsKy7N4ZV5M7vtJ4rphFLk5Mkm3QoDnrVCYRBzSsZGlYorPgiozZeCOn02FN6cdRXPJnXBHW2EKA4xxiudnTE1IlAAxQGGoRmVaBi05whxQYUfPPELefrbySqGeH0IfyjANVi2o0Rmk52KZ6URUTk1glwTQNZIY5rBLEnFZGPbjRBZIY5oGsuCaASdxpqBZIY1qMWDHFAFl1Y4rGs/9k=\",\r\n      \"DestinationAddress\": \"123 Street, New York, USA\",\r\n      \"PickUpLocation\": \"Conceirge\"\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/access/MemberRegistration","description":"<p>Submits a new or edits an existing member registration to the TEI access dashboard.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NumberofRegistrants</td>\n<td>The number of individuals being registered.  <br />Example: 2.</td>\n</tr>\n<tr>\n<td>RequestingContactID</td>\n<td>The unique identifier for the contact who submitted this access request.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3</td>\n</tr>\n<tr>\n<td>RegistrantDetails (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>RegistrationUID</td>\n<td>The unique identifier for each access registration. Pass this in to edit an existing access registration, exclude from API for new registrations.  <br />Example: d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3.</td>\n</tr>\n<tr>\n<td>RegistrationTypeID</td>\n<td>The unique identifier for the type of access registration.  <br />Note, this cannot be changed for an existing RegistrationUID.  <br />Example: MEMBER.</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>The start date of the booking.  <br />Example: 2023-04-26T00:00:000Z</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>The end date of the booking.  <br />Example: 2023-05-26T00:00:000Z</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name of the guest.  <br />Example: Aaron.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name of the guest.  <br />Example: Roque.</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>The unique member identifier for the member registering.  <br />Currently labeled Member Number in API.  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>Photo</td>\n<td>The uploaded photo of the contact using Base64 type encoding. The Base64 encoded image data is then sent to the API to save within the DB. Max size of 1mb and file must be JPEG or PNG.  <br />  <br />Example: /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/</td>\n</tr>\n<tr>\n<td>DestinationAddress</td>\n<td>The property address where the member will be staying.</td>\n</tr>\n<tr>\n<td>PickUpLocation</td>\n<td>The selected card pick up location ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Status</td>\n<td>The status ID to indicate if the registration was successfully submitted.  <br />Example: Success</td>\n</tr>\n<tr>\n<td>Message</td>\n<td>The message description to be shown to the end user.  <br />Example: “Registrations were submitted successfully!”</td>\n</tr>\n<tr>\n<td>RegistrationUID (List)</td>\n<td>The unique identifier for each access registration.  <br />Example: d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","access","MemberRegistration"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"c98ebe0b-8c28-4669-a007-46a11b7504fc","name":"PostMemberRegistration","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"NumberofRegistrants\": 1,\r\n  \"RequestingContactID\":\"B9454737-30EB-4F0C-A2D1-80E74897B1B2\",\r\n  \"RegistrantDetails\": [\r\n    {\r\n      \"RegistrationTypeID\": \"MEMBER\",\r\n      \"StartDate\": \"2024-06-26T00:00:00Z\",\r\n      \"EndDate\": \"2024-06-28T00:00:00Z\",\r\n      \"FirstName\": \"Mike\",\r\n      \"LastName\": \"Hudson\",\r\n      \"MemberID\": \"05602\",\r\n      \"Photo\": \"/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/RD84QzQ5OjcBCgoKDQwNGg8PGjclHyU3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3N//AABEIAJQAxQMBEQACEQEDEQH/xAAbAAACAwEBAQAAAAAAAAAAAAADBAECBQYAB//EADkQAAIBAwMCBQIDBQgDAQAAAAECAwAEEQUSITFhBhMiQVFxkRRSgSMyQmKhBxUzcoKxweFDktEk/8QAGgEAAwEBAQEAAAAAAAAAAAAAAQIDAAQFBv/EACcRAAICAQUAAgICAwEAAAAAAAABAhEDBBIhMUETUSIyYXEUI0IF/9oADAMBAAIRAxEAPwDQ0y2j2DKRH6jmvVnI+bwwjXQZ7SRX3QsEB6gHispL0Lxyu4st+ElY4Kgn5B60NyCoSZUWUkXqMfI71tyZvicOQtsSGJVsH4NBoaD54CuitJudASe9Dkd02NQ2UUoxl0z8Ujk0VjjUha90e6tjvh/aD6c08cql2Ryaecf1BWlxPC5yvI6jFGUIsXHklF8mjJcwXMJW4tznHUCpbXF8M6HkjOP5Izry2hgCG0Ykn59qrFtv8jnyQjFfgRHbXSgkwh9w65zW3R+wRhkXlib2LzTkMAp+DVN6SISwuUuSbiwlQDcQyj4oRmmGeGSQm8GfaqJnPKNkfh+1azbCfw1Cw7CDbUbBsPfhq1g+M8LftWsZQL+QKFjbCwhoWOkeMNazUR5FazbSDD2o2K4m/FaFeAVH6VzuR3rG16Mi1Zl2l1+1JuKfG3xZVNKmzuinXPwaPyr1A/x5Lpg5YbxHKSDdkcEdKKcWuBZRyLhkLayRep4TtPxRckwKEo8tB40tZOuQcUj3eFFsfY3bWiA+iX7mkcmWhBeMM8s0BAPqB9xQpSGcnEiEwsSHiHPvis0/GCLj9FnhSQlB6QR8VraC4p8GdeaSEX9nIST0FVjkvs5smnpcMpbwX1s4Uqw7ZoycWLCGWBDWFxJMSWXeeTk0d6ozxTb5YlIsoJBY46GnVHPJSXADyO1NYm0nyO1azbC3kD4oWNsI8gfFawbT3kD4o2baV8ntWs2095PahYdpKw89K1hUSTD2oWHae8ntWsO0qYe1GxdpsqD7qTXMdyLAkH0qawRmB2z0IpWqKRbGcDjdzilRQLvTZtA+9A18UZjWheUswGPbFWU+ODmeK5WxuKzj45I/Wkc2VWNDH4RSfTIc96XcU+Mq1r0HQ/IrbgOBE9mwRTuxRUkCWNi8tu4G8NnHemUkTlB9gl3NINztTUhFbfLLmNfNLFt2RjJoWHb+Vlf7vixksf0rb2D4I9sDJYoP3WI7GmU/sSWBeFFs12ksDxRc+QLFwBaAqeRxRUhHCivk9qNi7T3k9q1h2nvJ7VrBtI8ntWs2095XatYVE95R+KFh2nvK7VrDtIMXatYNppDd8VA7FYVdw560AhkY+4oDJlyA4wQRWGBNCR0bNGxHE8FYd61hVlxuHtQCrLq23rmsMHjljz6jStDJobBhlTYSMd6XlD8MXl05MfspCB7inWQnLCn0KGw2e4+9P8hL4Ac0ltEu2W5iXHywzSvJQ6wuXCRkXXiO0gJVYZTGP/IBgfpUHqsSdXZ1R/8APyuNvgRXxrp7ybUglkH5iBWepijR0U3waFt4l02X0yFoR/OOP6UI6qDGloJxXBpFYbiHdEyP75Vq6IZE+mcWTTyj+yBm3ULnJz9KruIPGink/wApo2JtZHldq1m2keXRs2095dazUR5dBs1HjHQs1FTHRsFF/P8Aip0XskXDA1qMpBVuW7UKH3FxcN8ihQbCLLQoYvvHvWCXDD4rGQre6nYWKF7q7iiH8zc0OgpX0Yg8XWMz4tYZ5UH/AJCm1f69ajPU44e2dGPR5Z+UCufFgQ4ihAP8zVB6y+kdK0CX7SEJPGk0ZzJcLEvYVOWfNLhFo6fBDs5y+8UX1/ehbS9u5c8BIyeaZPIl+bA44pSqERtpf7rtxcagWib4bkk1zNvI6XJ1pLFG5cEya7Y6rZMkch88jpsNBYZwf8BeeORUYRSazYN5RKdyBV7T4s5vyj4Dm1zyExIodm/hQ5IorFYHmoNb654hkTdpsPkxgZ7/ANaKjCL7A55JroBa+KfFZkbyLqVznlfLBx/Sunel6cjxbv8Ak3dD13xc1wJLy5UxfkljX/ipz1VdFMei3dqje1HxxJZKpk09Hc8Eq+KOPVbuKFyaFR9Frf8AtBtyM3NmyD5Vqt/kHM9H/Jrw+L9FkVTJO0Ib+J0OPvVI5ov0hPTTj4bNtdWl5H5ttcRSoehVqfdZP42u0XMkAOPNjz/mFZyS7MsbfQrJqWmxMVe8gDD23ijuFcGgYGOtawKJJdFGWdR9TSuUV6Oscn0hO71zTbNczXcf0DZNI8sV6Vjp5vwxLrx7ZI221t5Zu/QUrzoqtLL1gV8c3Df4dio+rVGWofh0Q0kfQq+MNQccW0S/epvUyLR0mMXuPEGrXC7TIqg8ekYqbzzfpVabGn+pa00xbk77tvMY1y5M0jsx4I/RuWlhbwDEcYA7nNcspyZ1RhFdBZ9MtJx+0hH6HFBZJIZ44vtGVP4S09zvUMG/mO4f1qq1MyL0sGD/ALqurQgWrQoB7hOaKyxf7A+GUf1FbrTpLhd97EbhlHG6qRyxT/F0Tlhk1+XJiPFevL5FqqW4zwBHt/qaunDt8nO45OlwZ8lhO7ss6yuVPJaTr9qqprwk4P0b0S306C43zsinrtk4zS5HOS4GxRxxlyaWoSTzxsUhaGHOFIXhhUoJLt8l5tvpcCWnCWzm3M8KRE8tuGRVJJSRHG3FjOt6tFFAo02TzJD+8/OKTHj5/IplzcVExLCyu9alcXF0qkc4ZsfauhyjBcI5owlkfLN6LTLfTbfM8ySn3B5rneSU3wdCxxguWK217afjMKgEZ4ZSMg07i9om6O7ge1K1isodtvJtSXldhxikxylY+SEUjPia8gXcGZ0xyQc1Ru+ycVt6EHgtZZGeQneeuadSaJ7It8iUuu6xcH13sw+jVbc/TnUF4gfnXkvMt1K2fljSNlEmXS3yctk/WlsfaORW4+KRsdRH4IR8VNsqoj8SYFTbKpBlQ7gaDYUjWs5MYzUJIvFmtDID71JoqmNKQRQoYkjigwpgJBzWMCZRWABkQH94A/pTIDFJLWJuSi/amUmhXFMVl061Y7mhViOhIp1lmumTlig/AUkUwQxrLIsf5RjFOp82K8fFWZ8mlW0jbpi5P0FVWdoi8EX2CbSbIezkf5qb55CvTwIWxtozlUrfLJ9m+KKLeTH0IBrb2bYiBDH+QfatvZvjQTYCMHke2fahuNtPCJU6cVtxtoF7WJmyRk029iuCOcSLtV7OahiOLtStjpDMcfalbGoZjSlbHSGolxSDoajFIyiGEpWMhiPilHHYZSPekaHTH4bikodMcSRWHWhQTzpmlCmLSKR0rBAuybggdN+M7c8/amSfdCtrqwbAY71jCGhTSaxqN7bLDiGFikcinlmHXI+K7Hgioq+2caztyf0izjFc50C0gHxRTFYtIKdCMWcUwoI0wp7OKxiwesayGkogsE0wzRSFbMdBVjnQdBQYyDoKVjoMlAYYSlGDoaRjoOhpQh0NAdDCNShQdHxSjjMcxWlYyZTVNdh0qyM86s+ThEXqx/4p8WF5ZUiWbPHFHcxXw34jGtuYLi2FrcFPNjRZN4dc4yDgcj3GKfUaX4+VyhNPqvl4apnPeEYpbzxleSl94jZlkk/MQ2Biu7LSxxSOLDbyybOg8UX402wvJ14fzXiiHyxYgY+39K4oYt+WvDtyZHDBu9NLwPp8ljpcTyekpEWk7k8n9avN3Jsgo7YKIg4zmuJHcAdfimQjF3TNMgC8kdMIAZe1OKCbiiKwZasLYN5OKZIVsWeXmnSFbF1pmKgyUgyDrWGCpSjIMhpRkHQ0BkGU0GEMrUgwZWoDBlagFGZq3iO30uQRvC8rYydpAxV8WnlkV3Rz5dVHG6qzmNd8Vf3pbJCll5O19wcy7uMY6YH+9dmDB8Tbs4s+p+aNVQSO6STQLQBB5is0ZZTtZR2I55oO1NhVOCNzwiFsrC4cKf8AEzGD7VHM90i+BKMB2Swk1+ZZeco+5A3KqfcgfP8A9pVJQ6KODmuejs7iRdO8OztIwwoVN2cZycVPuLGk1vRglk2l1Po+a5jpv1C8E1veLJ5EuWjOCKZprsnvTdAJOBzTIzAP0phWKyMB704jYvI4/SmQjZBiJTcuCD8GsgCsisKoIJyghutMhGeWgFBkpRgymgMgqGlYwVTQCGQ0BkGU0rGCqaAbCq1AYKrd6UNnHeLIduoklh+1AcZ+n/VelpXeM8zVqshzTtGGI3V00cdmrobxOpiaVBzkBjioZb8OrC1VNnaWyssMEEYBPVu1cjd8ndGNcHV2EIgjVEGB2qF2dG0f1G0jvNKkgmRWjyGKnpwaLbUeCapy5OLuvDscBJtZp7cHjCucfY0Fmb7QZYF4yulacmnzzO0xkZ/ngitOTlXAIY1Bt2MTSwg7ZcgH3xWjZpSS7ErvSXkXfBcypnpg5FPHIl2I4blwzEu9L1Jf8O93fUVeOSH0Qlin9mVNZ6sqlTOMH2Bqqnj+iLx5fsnSItStbnd5oI9wxzmhkcGg44zi+TevFt2XKjDH94BuM1CFl5JGLOkIbln/AParog0g6mkY6DIaUcKprBQRTShCqaUYKrUBkGVqAQivQCEDUA2J61qZ03TpLhVBfIVM9Mmq4Me+dMlqM3xwtHz641C7uS7T3EjM/wC+c43f9fAr04xUVSPHlOU3cmLZHamFIyD1xRMdP4P1qW1uRFeTMbQdGfnyz7c/FcufCpK12dmm1Dg6k+D69pw8z3yvUEe9eZ/Z7DfFo2VRWiKHHqG2qVwQd2Yuk2N1Pqb3V2dkcSlYoD/Vj3pscVFGnOxfxZYW99cNMYmMqooJi4J4pJ5Hv4NDH+BwU/lCTyRd3AXdghmyVP0qq5XRzy44s39P2pBs88ysOM56Vztc2dGNqgd4NhyFZgPy00QyMW7vo0Y74ZR/pq8Yt+kJSS8M2TU7cHI3Bh/LVFjZJ5IoXfVoT0Yg9xT/ABsR5Yi0l7Cxzx9qbYxN8TRU1EugqGlGDKawQgNAYIhpRgimgFBQ1AYIGpQlg/NYxwWv6jd3OoywXXoSFyqx5yAPn9RXpYYRjFNHk55zlNqRk7qsmQosu3cd+4dgK1moesoLc3G24LKR/Bt5/WhbCkP6lLFPIumWNv5Qz63J5OPc9u1BX2xuOkfWPAGH0KFEYt5LGM7jkjBrzc8f9jPV0sv9KR1iRH5pUh3IusSqxdWOT1o8IF3wc3LdebPJJk4ZuPpXLLlnVHhUKXem2GoENcQJ5g5DgYb70VOS6YJQjLtAbPQo7RpWidm3njPtWeRvsVYYp2gdzbbM5pkzNGVciEHa7J+pxVY34SlXpk3NrEcldhzVU2QaRm3NhG/RUqqmybgjOfS1B6/aqLKyLwo0AaiXCKaUZBVNYIQGgMEU0oQgNAIVTWGRfdigExdY11IFlhs3RpVX1PnOw/H1rpw6e+ZdHJn1O3iJykrbys0zGZ39Tktkn612pJcI85uUnbHl0mRrR73iGGNQ7bm/hLbRjnk5zx14ougJugbWtt+GW4t5XEi4O9wdu4Htk8+nGQBSMZdHotI1O+iN5HC0obksHG77Zz7UrnGPA6hKStDWl3bM34W4i/8A0qCPNY+rAx6SPvRfVg6dM+m/2cyeVLc2JPMiib6kcN/uv2rj1EbpndpZVaO7ykIOXyB75rntI6+ZGNqOuBt0NoQfYv7fpSOf0NGC9MhX6VIsFSStQQ8c2PehRiZUWYDnBrGfJm3+lwXC4liVu+KpGbROWOL7OavfDUXqMLunwAxrpjn+zllp/pmHdaHdRE7J3/VqsssX2jnlhkumIvpt8hxvY/6qoskPom8c/sdBqJcIDQGCKaAQgNANhVNAJdWoDBVOaAUwV3dC2iZiASAcA9M00I7mLOaijhhCOS3LE5r0bPJLrZ7l4OCaDkMomjc2s19BbRRQohgTacMf2h/N2pXlS7GWF1wAuF1KxsXtZoXS3lYGRtoIfB45xxyB9qMZxk+GCWOUe0MXNtZmaxOmmWS6Kb5rY8iPAHIPfn6Uf7B7wO6lfJrEUetQ2X4a4tGRLkq24TL03n4OcZqcVsdFZP5FaXRveFdRkt9e86EblSFsjPAzjFR1DqBXSq5nTXmp3F56XbbH+Rff6/NcDZ6dC6MBQCGV6wQgesZMIr0AhVl71jBhLkYOMUKMBmt1dTs6/FMmBoyru1B9LDmnUiMomTPaeqrKRJxObBqxAuppRkwimgEKDQGCA0Al1asGxe61CO2U+oFscCnhjcic8igc/dXk10x3t6fZfiuyEFDg4Z5HNlUhJwazkBRNOysmlC8Ec1GUjohCzpdK0vfkMvQ9RXPKZ1QxnVwaVA1q0FygkRxgq3ORUNzu0X2qqZ878beGh4cmgutNaYQTbgSTkofjPxj5ruwZt/EjztRgWPmJhQooPlWwuJY5rfbKiHHr/wCeccV0f2cyvpencaLZixtAHwZnwZCPn4rzMs97PWwY9kf5Hw1SosEDVqCXD0DBFesGy4ehRrCB6xrLrJ3rBsKsvesAuxSVcOP1rGEp7ElsqQRTKQjifOl6V2nCXU0GFBFNKMFU1gl92BzQCIX2orFlIsMfr0q0MTfLIZMyXCMV5GlfcxPNdSSiuDkbcnyGgizzStjxiatraF8YG4dqhKR0RgdTpFh6cbc+1c05HXjidVYWKL7YxUbsvVI1oY1A/wAtABh+OYFuvDl7G52KIywOOmOafFKsiYmWF43Z8r8Nu0phhLnbFN5ixADOSOWJ+K9HPxF2eVgjc1R2Yb3+ea809aywagEsHrGLCStRrLiSgEuJKxi4krUawgkoUay6yVjWXEtY1hBNWo1nzKM9Ppj613nnoIDxmgEvmgwokyBBkkCso2G6My8vi/pRiB810QxV2cuTM3whEncaqRqw0MeTmlkx4xNaztWJ4XJ71CUjphA6nTNPG0MR9BXNKR1wgdLYWu05wBUmyyVGugwMAc5pQjGNqd6zMjjv7SNVFnoht4xunu/2aKBk7f4jj6f71bTQ3TvxENVPZjr1nJeH7Z7SxUORzkhdmCueuT1PSq557nSIabHsjbNYPXPR0lt9YJYPWMTvoBssHrUaywk5o0ay4koUay4krUaywloUaywlrUay6y8VqNZ89T94j2612nAgwJ479aAxYcZHsKy7N4ZV5M7vtJ4rphFLk5Mkm3QoDnrVCYRBzSsZGlYorPgiozZeCOn02FN6cdRXPJnXBHW2EKA4xxiudnTE1IlAAxQGGoRmVaBi05whxQYUfPPELefrbySqGeH0IfyjANVi2o0Rmk52KZ6URUTk1glwTQNZIY5rBLEnFZGPbjRBZIY5oGsuCaASdxpqBZIY1qMWDHFAFl1Y4rGs/9k=\",\r\n      \"DestinationAddress\": \"123 Street, New York, USA\",\r\n      \"PickUpLocation\": \"Conceirge\"\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/access/MemberRegistration"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Status\": \"Success\",\r\n    \"Message\": \"Registrations were submitted successfully!\",\r\n    \"RegistrationUID\": [\r\n        \"d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3\",\r\n        \"e2345fgh-a223-495e-9b2e-bb1e3bf1d3c3\"\r\n    ]\r\n}"}],"_postman_id":"bd2d2d93-24ba-4cd5-83d8-fe16bfed255b"},{"name":"PostCancelAccessRegistration","id":"1dad12b8-108f-4576-b56a-6c69f41970a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"RegistrationUID\":\"d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/access/CancelAccessRegistration","description":"<p>Cancels the access registration.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RegistrationUID</td>\n<td>The unique identifier for the access registration.  <br />Example: d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsSuccess</td>\n<td>Indicates whether or not the reservation was successfully cancelled.  <br />Example: true</td>\n</tr>\n<tr>\n<td>Message</td>\n<td>If the API returned some details they will be displayed here.  <br />Example: null</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","access","CancelAccessRegistration"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"2bd009ac-38a5-486a-a0a4-fc4b10fa1e97","name":"PostCancelAccessRegistration","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"RegistrationUID\":\"d8250a1e-a223-495e-9b2e-bb1e3bf1d3c3\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/access/CancelAccessRegistration"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"IsSuccess\": true,\r\n    \"Message\": null\r\n}"}],"_postman_id":"1dad12b8-108f-4576-b56a-6c69f41970a7"}],"id":"9b64b759-3b7b-4d76-b800-405318697964","description":"<p>Total e Integrated offers APIs for booking registrations within the Access Management Dashboard.</p>\n","_postman_id":"9b64b759-3b7b-4d76-b800-405318697964"},{"name":"Contacts","item":[{"name":"CreateContact","event":[{"listen":"test","script":{"id":"d8dc50b1-5bcf-4f46-a7a6-883473a5228d","exec":[""],"type":"text/javascript","packages":{}}}],"id":"f7f8942c-f4b7-4b77-9ad1-0aafd56b0f8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"url":"{{base_url}}/api/v1/Office/CreateContact?FirstName=John&LastName=Doe&Email=John.Doe@dayrep.com&Phone=888-660-6131&DateOfBirth=1990-05-26T00:00:00Z","description":"<p>Attempts to match with an existing contact based on the information provided or create a new contact if no existing contact is found.</p>\n<p><strong>Method:</strong> Post</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FirstName REQUIRED</td>\n<td>Example: John</td>\n</tr>\n<tr>\n<td>LastName REQUIRED</td>\n<td>Example: Doe</td>\n</tr>\n<tr>\n<td>Email REQUIRED</td>\n<td>Example: <a href=\"https://mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>Example: 888-660-6131</td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td>The date of birth of the contact.  <br />Example: 1990-05-26T00:00:00Z</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Message</td>\n<td>The message explaining the outcome of the contact creation. Possible outcomes include:  <br />Existing contact found.  <br />New contact created.</td>\n</tr>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact record created or found.  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","Office","CreateContact"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - Example: John</p>\n","type":"text/plain"},"key":"FirstName","value":"John"},{"description":{"content":"<p>REQUIRED - Example: Doe</p>\n","type":"text/plain"},"key":"LastName","value":"Doe"},{"description":{"content":"<p>REQUIRED - Example: <a href=\"mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></p>\n","type":"text/plain"},"key":"Email","value":"John.Doe@dayrep.com"},{"description":{"content":"<p>Example: 888-660-6131</p>\n","type":"text/plain"},"key":"Phone","value":"888-660-6131"},{"description":{"content":"<p>The date of birth of the contact.</p>\n","type":"text/plain"},"key":"DateOfBirth","value":"1990-05-26T00:00:00Z"}],"variable":[]}},"response":[{"id":"111c8c41-e6c1-4534-9e4b-ea6cdbe97881","name":"CreateContact","originalRequest":{"method":"POST","header":[{"key":"Bearer","value":"CfDJ8OtuScpyptxDoXbuJ4rA5EujwbaussUeJxUMFnkjP8l_VdDNUj0m-i9li7Tsmz4F2TqzNaqxuCnPYGm0lcOlw068SowvusZ8oH54VjnbaliKkbyj1YRWRQ5UMYHi9xaOxTF6ZzKYnT1RQCIq7dGiNsbbNVtCDrjk5Xaf4uhY28GgmYXMX-CF5UrjiE2qpbwqOjDScmWUsCYyp5beiJ4WQRb_xcIcTJVbeFwFvOBd6SHungrpHWbMovIWFYqhCCDtiCjQFpD48rjg5m313LpGdI0P0oL08exmNIn7cFI7hxegR2QE3DKd-cbeYrXjNY8ke-WcDh6JLHu1k1ppXftNrq7FGuj1_cGXXP1wfF4DdY-MxsGolycyp2vrwMG8vR-q8abs-WDiKN_7BgKIgS24wk6v0P5TyQiFE0_FG2pkqmy1kBeMP_DqgysfSyGlHakZy0V757khlEyZmW7h5SOrwW7EYBDcxtl93419I536hERa6duX6TnvhfN9VOzZAvMnmA","type":"text","disabled":true},{"key":"Path","value":"","type":"text","disabled":true}],"url":{"raw":"{{base_url}}/api/v1/Office/CreateContact?FirstName=John&LastName=Doe&Email=John.Doe@dayrep.com&Phone=888-660-6131&DateOfBirth=1990-05-26T00:00:00Z","host":["{{base_url}}"],"path":["api","v1","Office","CreateContact"],"query":[{"key":"FirstName","value":"John","description":"REQUIRED - Example: John"},{"key":"LastName","value":"Doe","description":"REQUIRED - Example: Doe"},{"key":"Email","value":"John.Doe@dayrep.com","description":"REQUIRED - Example: John.Doe@dayrep.com"},{"key":"Phone","value":"888-660-6131","description":"Example: 888-660-6131"},{"key":"DateOfBirth","value":"1990-05-26T00:00:00Z","description":"The date of birth of the contact."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Message\": \"New contact created.\",\r\n    \"ContactID\": \"ca498010-bf53-11ec-9d64-0242ac120002\"\r\n}"}],"_postman_id":"f7f8942c-f4b7-4b77-9ad1-0aafd56b0f8a"},{"name":"ContactClasses","event":[{"listen":"test","script":{"id":"d8dc50b1-5bcf-4f46-a7a6-883473a5228d","exec":[""],"type":"text/javascript","packages":{}}}],"id":"1bfa8f0a-0f47-42f7-a4d8-d9df50dca480","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/Office/ContactClasses?PageNumber=1&PageCount=10","description":"<p>Pulls the list of Contact Classes found within the database.</p>\n<p><strong>Method:</strong> Get</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PageNumber REQUIRED</td>\n<td>The page of records to return.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>PageCount REQUIRED</td>\n<td>The number of records to return per page.  <br />Example: 25.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContactClasses (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>ClassUID</td>\n<td>The unique identifier for the contact class auto-generated when the contact class was created.  <br />Example: 27D2DEF9-3704-412A-8B34-A6FBADD698D1</td>\n</tr>\n<tr>\n<td>ClassID</td>\n<td>The unique identifier for the contact class written by the client when the contact class was created.  <br />Example: GOLD MEMBER</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>The customer friendly name given to the contact class.  <br />Example: Gold Member</td>\n</tr>\n<tr>\n<td>Code</td>\n<td>An acronym given to the contact class. Maximum of 3 characters permitted.  <br />Example: GLD</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","Office","ContactClasses"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The page of records to return.</p>\n","type":"text/plain"},"key":"PageNumber","value":"1"},{"description":{"content":"<p>REQUIRED  - The number of records to return per page.</p>\n","type":"text/plain"},"key":"PageCount","value":"10"}],"variable":[]}},"response":[{"id":"e9343580-79c1-495c-98df-3036ed6b9747","name":"ContactClasses","originalRequest":{"method":"GET","header":[{"key":"Bearer","value":"CfDJ8OtuScpyptxDoXbuJ4rA5EujwbaussUeJxUMFnkjP8l_VdDNUj0m-i9li7Tsmz4F2TqzNaqxuCnPYGm0lcOlw068SowvusZ8oH54VjnbaliKkbyj1YRWRQ5UMYHi9xaOxTF6ZzKYnT1RQCIq7dGiNsbbNVtCDrjk5Xaf4uhY28GgmYXMX-CF5UrjiE2qpbwqOjDScmWUsCYyp5beiJ4WQRb_xcIcTJVbeFwFvOBd6SHungrpHWbMovIWFYqhCCDtiCjQFpD48rjg5m313LpGdI0P0oL08exmNIn7cFI7hxegR2QE3DKd-cbeYrXjNY8ke-WcDh6JLHu1k1ppXftNrq7FGuj1_cGXXP1wfF4DdY-MxsGolycyp2vrwMG8vR-q8abs-WDiKN_7BgKIgS24wk6v0P5TyQiFE0_FG2pkqmy1kBeMP_DqgysfSyGlHakZy0V757khlEyZmW7h5SOrwW7EYBDcxtl93419I536hERa6duX6TnvhfN9VOzZAvMnmA","type":"text","disabled":true},{"key":"Path","value":"","type":"text","disabled":true}],"url":{"raw":"{{base_url}}/api/v1/Office/ContactClasses?PageNumber=1&PageCount=10","host":["{{base_url}}"],"path":["api","v1","Office","ContactClasses"],"query":[{"key":"PageNumber","value":"1","description":"REQUIRED - The page of records to return."},{"key":"PageCount","value":"10","description":"REQUIRED  - The number of records to return per page."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"ContactClasses\": [\r\n        {\r\n            \"ClassUID\": \"91BE6F02-05A5-4571-8924-909064F7A0D6\",\r\n            \"ClassID\": \"FAMILY MEMBER G\",\r\n            \"Description\": \"Family/ Member Guest\",\r\n            \"Code\": \"\"\r\n        },\r\n        {\r\n            \"ClassUID\": \"3D23E3A0-A08D-41EC-8CD2-4C032F4AE4E3\",\r\n            \"ClassID\": \"FULL MEMBER\",\r\n            \"Description\": \"Full Member\",\r\n            \"Code\": \"FM\"\r\n        },\r\n        {\r\n            \"ClassUID\": \"F100B12C-F298-408A-8311-679656C6100F\",\r\n            \"ClassID\": \"PUBLIC\",\r\n            \"Description\": \"Public\",\r\n            \"Code\": \"\"\r\n        },\r\n        {\r\n            \"ClassUID\": \"400D852B-0E04-47BA-9253-01A142EFFFBA\",\r\n            \"ClassID\": \"SOCIAL MEMBERS\",\r\n            \"Description\": \"Social Members\",\r\n            \"Code\": \"\"\r\n        },\r\n        {\r\n            \"ClassUID\": \"90B9CE7C-0FBE-4841-8901-F55E1BEE4B08\",\r\n            \"ClassID\": \"STAFF\",\r\n            \"Description\": \"Staff\",\r\n            \"Code\": \"\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"1bfa8f0a-0f47-42f7-a4d8-d9df50dca480"},{"name":"ContactRosterV1","event":[{"listen":"test","script":{"id":"d8dc50b1-5bcf-4f46-a7a6-883473a5228d","exec":[""],"type":"text/javascript","packages":{}}}],"id":"c98a58dc-6188-4aa7-8488-6fc6e0a375c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/contacts?ContactClassIDs=GOLD MEMBER&LastModifiedDate=2025-05-15T00:00:00","description":"<p>Returns a list of contacts on the client database.</p>\n<p><strong>Method:</strong> Get</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContactClassIDs REQUIRED  <br />  <br />Comma delineated for multiple.</td>\n<td>The unique contact class identifier for the contact classes you’d like to pull contact information for. Example: PrimaryMember.</td>\n</tr>\n<tr>\n<td>LastModifiedDate REQUIRED</td>\n<td>Only pull contacts which have been updated since a certain date and time. Use to pull any new changes since your last pull. Example: 2021-03-02T10:20:00</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact record.  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>The unique member identifier for the contact (if applicable).  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name for the contact record.  <br />Example: John</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name for the contact record.  <br />Example: Doe</td>\n</tr>\n<tr>\n<td>Salutation</td>\n<td>Examples: Mr., Mrs., Ms, Dr.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>The contact’s email address.  <br />Example: <a href=\"https://mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>The contact’s primary phone on record.  <br />Example: (888) 669-6131</td>\n</tr>\n<tr>\n<td>Fax</td>\n<td>The contact’s fax number on record.  <br />Example: (888) 669-6131</td>\n</tr>\n<tr>\n<td>WorkPhone</td>\n<td>The contact’s work phone on record.  <br />Example: (888) 669-6131</td>\n</tr>\n<tr>\n<td>CellPhone</td>\n<td>The contact’s cell phone on record.  <br />Example: (888) 669-6131</td>\n</tr>\n<tr>\n<td>PrimaryAddressLine1</td>\n<td>Example: 111 Zenway Blvd</td>\n</tr>\n<tr>\n<td>PrimaryAddressLine2</td>\n<td>Example: Unit 32</td>\n</tr>\n<tr>\n<td>PrimaryAddressCity</td>\n<td>Example: Vaughan</td>\n</tr>\n<tr>\n<td>PrimaryAddressCountry</td>\n<td>Example: Canada</td>\n</tr>\n<tr>\n<td>PrimaryAddressStateProv</td>\n<td>Example: Ontario</td>\n</tr>\n<tr>\n<td>PrimaryAddressZipPostal</td>\n<td>Example: L4H 3H9</td>\n</tr>\n<tr>\n<td>StatusID</td>\n<td>The current member status on the contact’s record.  <br />Example: Active</td>\n</tr>\n<tr>\n<td>ContactIsDeleted</td>\n<td>If the contact record has been deleted.  <br />Example: True.</td>\n</tr>\n<tr>\n<td>ContactClassID (List)</td>\n<td>The unique contact class identifier for the contact’s contact class.  <br />Example: PrimaryMember.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","contacts"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique contact class identifier for the contact classes you’d like to pull contact information for. Example: PrimaryMember.</p>\n","type":"text/plain"},"key":"ContactClassIDs","value":"GOLD MEMBER"},{"description":{"content":"<p>REQUIRED - Only pull contacts which have been updated since a certain date and time. Use to pull any new changes since your last pull. Example: 2021-03-02T10:20:00</p>\n","type":"text/plain"},"key":"LastModifiedDate","value":"2025-05-15T00:00:00"}],"variable":[]}},"response":[{"id":"70300300-1239-4a07-bb66-5d2d61a4c617","name":"ContactRoster","originalRequest":{"method":"GET","header":[{"key":"Bearer","value":"CfDJ8OtuScpyptxDoXbuJ4rA5EujwbaussUeJxUMFnkjP8l_VdDNUj0m-i9li7Tsmz4F2TqzNaqxuCnPYGm0lcOlw068SowvusZ8oH54VjnbaliKkbyj1YRWRQ5UMYHi9xaOxTF6ZzKYnT1RQCIq7dGiNsbbNVtCDrjk5Xaf4uhY28GgmYXMX-CF5UrjiE2qpbwqOjDScmWUsCYyp5beiJ4WQRb_xcIcTJVbeFwFvOBd6SHungrpHWbMovIWFYqhCCDtiCjQFpD48rjg5m313LpGdI0P0oL08exmNIn7cFI7hxegR2QE3DKd-cbeYrXjNY8ke-WcDh6JLHu1k1ppXftNrq7FGuj1_cGXXP1wfF4DdY-MxsGolycyp2vrwMG8vR-q8abs-WDiKN_7BgKIgS24wk6v0P5TyQiFE0_FG2pkqmy1kBeMP_DqgysfSyGlHakZy0V757khlEyZmW7h5SOrwW7EYBDcxtl93419I536hERa6duX6TnvhfN9VOzZAvMnmA","type":"text","disabled":true},{"key":"Path","value":"","type":"text","disabled":true}],"url":{"raw":"{{base_url}}/api/v1/contacts?ContactClassID=&LastModifiedDate=","host":["{{base_url}}"],"path":["api","v1","contacts"],"query":[{"key":"ContactClassID","value":"","description":"REQUIRED - The unique contact class identifier for the contact classes you’d like to pull contact information for. Example: PrimaryMember."},{"key":"LastModifiedDate","value":"","description":"REQUIRED - Only pull contacts which have been updated since a certain date and time. Use to pull any new changes since your last pull. Example: 2021-03-02T10:20:00"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Contacts\": [\r\n        {\r\n            \"ContactID\": \"942e04f1-865d-4d66-8dea-0044d80c10b6\",\r\n            \"MemberID\": \"F001\",\r\n            \"Salutation\": \"Mr.\",\r\n            \"FirstName\": \"John\",\r\n            \"LastName\": \"Doe\",\r\n            \"Email\": \"John.Doe@dayrep.com\",\r\n            \"PrimaryAddressLine1\": \"111 Zenway Blvd\",\r\n            \"PrimaryAddressLine2\": \"Unit 32\",\r\n            \"PrimaryAddressCity\": \"Vaughan\",\r\n            \"PrimaryAddressStateProv\": \"Ontario\",\r\n            \"PrimaryAddressZipPostal\": \"L4H 3H9\",\r\n            \"PrimaryAddressCountry\": \"Canada\",\r\n            \"Phone\": \"(888) 669-6131\",\r\n            \"Fax\": \"(888) 669-6131\",\r\n            \"WorkPhone\": \"(888) 669-6131\",\r\n            \"CellPhone\": \"(888) 669-6131\",\r\n            \"StatusID\": \"Active\",\r\n            \"ContactIsDeleted\": false,\r\n            \"ContactClassID\": \"PrimaryMember\"\r\n        }\r\n                ]\r\n}"}],"_postman_id":"c98a58dc-6188-4aa7-8488-6fc6e0a375c9"},{"name":"ContactRosterV2","event":[{"listen":"test","script":{"id":"d8dc50b1-5bcf-4f46-a7a6-883473a5228d","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e825d018-f1f6-41d1-987d-3c95844a91ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v2/contacts?MemberID=04949&PageNumber=1&PageSize=25","description":"<p>Queries and returns a list of contacts on the client database.</p>\n<p><strong>Method:</strong> Get</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.100.22</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact record.  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>The unique member identifier for the contact (if applicable).  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name for the contact record.  <br />Example: John</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name for the contact record.  <br />Example: Doe</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>The contact’s email address.  <br />Example: <a href=\"https://mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>The contact’s primary phone on record.  <br />Example: 8886696131</td>\n</tr>\n<tr>\n<td>ContactClassID</td>\n<td>The unique contact class identifier for the contact’s contact class.  <br />Example: PrimaryMember.</td>\n</tr>\n<tr>\n<td>UDFsToInclude</td>\n<td>A comma-delimited list of Contact UDFs to include in the response.</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td>The page of records to return.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>The number of records to return per page.  <br />Example: 25.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td>Only pull contacts which have been updated since a certain date and time. Use to pull any new changes since your last pull. Example: 2021-03-02T10:20:00</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact record.  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>The unique member identifier for the contact (if applicable).  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name for the contact record.  <br />Example: John</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name for the contact record.  <br />Example: Doe</td>\n</tr>\n<tr>\n<td>Salutation</td>\n<td>Examples: Mr., Mrs., Ms, Dr.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>The contact’s email address.  <br />Example: <a href=\"https://mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>The contact’s primary phone on record.  <br />Example: (888) 669-6131</td>\n</tr>\n<tr>\n<td>Fax</td>\n<td>The contact’s fax number on record.  <br />Example: (888) 669-6131</td>\n</tr>\n<tr>\n<td>WorkPhone</td>\n<td>The contact’s work phone on record.  <br />Example: (888) 669-6131</td>\n</tr>\n<tr>\n<td>CellPhone</td>\n<td>The contact’s cell phone on record.  <br />Example: (888) 669-6131</td>\n</tr>\n<tr>\n<td>Gender</td>\n<td>The gender specified for the contact. Example: Female</td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td>The contact’s date of birth. Example: 1988-03-02T00:00:00</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>A free-text field used to store additional information about the contact.</td>\n</tr>\n<tr>\n<td>PrimaryAddressLine1</td>\n<td>Example: 111 Zenway Blvd</td>\n</tr>\n<tr>\n<td>PrimaryAddressLine2</td>\n<td>Example: Unit 32</td>\n</tr>\n<tr>\n<td>PrimaryAddressCity</td>\n<td>Example: Vaughan</td>\n</tr>\n<tr>\n<td>PrimaryAddressCountry</td>\n<td>Example: Canada</td>\n</tr>\n<tr>\n<td>PrimaryAddressStateProv</td>\n<td>Example: Ontario</td>\n</tr>\n<tr>\n<td>PrimaryAddressZipPostal</td>\n<td>Example: L4H 3H9</td>\n</tr>\n<tr>\n<td>StatusID</td>\n<td>The current member status on the contact’s record.  <br />Example: Active</td>\n</tr>\n<tr>\n<td>ContactIsDeleted</td>\n<td>If the contact record has been deleted.  <br />Example: True.</td>\n</tr>\n<tr>\n<td>ContactClassID</td>\n<td>The unique contact class identifier for the contact’s contact class.  <br />Example: PrimaryMember.</td>\n</tr>\n<tr>\n<td>UserDefinedFields (List):</td>\n<td>A list of user-defined fields associated with the contact.</td>\n</tr>\n<tr>\n<td>UDFCategoryName</td>\n<td>The name of the user-defined field category that the UDF belongs to.</td>\n</tr>\n<tr>\n<td>UDFName</td>\n<td>The name of the contact’s user-defined field.</td>\n</tr>\n<tr>\n<td>UDFValue</td>\n<td>The value stored for the contact’s user-defined field.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v2","contacts"],"host":["{{base_url}}"],"query":[{"disabled":true,"description":{"content":"<p>The unique identifier for the contact record.\nExample: ca498010-bf53-11ec-9d64-0242ac120002</p>\n","type":"text/plain"},"key":"ContactID","value":""},{"description":{"content":"<p>The unique member identifier for the contact.\nExample: F001.</p>\n","type":"text/plain"},"key":"MemberID","value":"04949"},{"disabled":true,"description":{"content":"<p>The first name for the contact record.\nExample: John</p>\n","type":"text/plain"},"key":"FirstName","value":""},{"disabled":true,"description":{"content":"<p>The last name for the contact record.\nExample: Doe</p>\n","type":"text/plain"},"key":"LastName","value":""},{"disabled":true,"description":{"content":"<p>The contact’s email address.\nExample: <a href=\"mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></p>\n","type":"text/plain"},"key":"Email","value":""},{"disabled":true,"description":{"content":"<p>The contact’s primary phone on record.\nExample: 8886696131</p>\n","type":"text/plain"},"key":"Phone","value":""},{"disabled":true,"description":{"content":"<p>The unique contact class identifier for the contact classes you’d like to pull contact information for. Comma delineated for multiple. \nExample: PrimaryMember.</p>\n","type":"text/plain"},"key":"ContactClassID","value":""},{"description":{"content":"<p>REQUIRED - The page of records to return.\nExample: 1.</p>\n","type":"text/plain"},"key":"PageNumber","value":"1"},{"description":{"content":"<p>REQUIRED - The number of records to return per page.\nExample: 25.</p>\n","type":"text/plain"},"key":"PageSize","value":"25"},{"disabled":true,"description":{"content":"<p>Only pull contacts which have been updated since a certain date and time. Use to pull any new changes since your last pull. Example: 2021-03-02T10:20:00</p>\n","type":"text/plain"},"key":"LastModifiedDate","value":""},{"disabled":true,"key":"UDFsToInclude","value":""}],"variable":[]}},"response":[{"id":"60cc2d9a-ffb9-4c07-b479-6ce3c2a34cb7","name":"ContactRoster","originalRequest":{"method":"GET","header":[{"key":"Bearer","value":"CfDJ8OtuScpyptxDoXbuJ4rA5EujwbaussUeJxUMFnkjP8l_VdDNUj0m-i9li7Tsmz4F2TqzNaqxuCnPYGm0lcOlw068SowvusZ8oH54VjnbaliKkbyj1YRWRQ5UMYHi9xaOxTF6ZzKYnT1RQCIq7dGiNsbbNVtCDrjk5Xaf4uhY28GgmYXMX-CF5UrjiE2qpbwqOjDScmWUsCYyp5beiJ4WQRb_xcIcTJVbeFwFvOBd6SHungrpHWbMovIWFYqhCCDtiCjQFpD48rjg5m313LpGdI0P0oL08exmNIn7cFI7hxegR2QE3DKd-cbeYrXjNY8ke-WcDh6JLHu1k1ppXftNrq7FGuj1_cGXXP1wfF4DdY-MxsGolycyp2vrwMG8vR-q8abs-WDiKN_7BgKIgS24wk6v0P5TyQiFE0_FG2pkqmy1kBeMP_DqgysfSyGlHakZy0V757khlEyZmW7h5SOrwW7EYBDcxtl93419I536hERa6duX6TnvhfN9VOzZAvMnmA","type":"text","disabled":true},{"key":"Path","value":"","type":"text","disabled":true}],"url":{"raw":"{{base_url}}/api/v2/contacts?ContactID=&MemberID=&FirstName&LastName&Email&Phone&ContactClassID&UDFsToInclude&PageNumber&PageSize&LastModifiedDate","host":["{{base_url}}"],"path":["api","v2","contacts"],"query":[{"key":"ContactID","value":"","description":"The unique identifier for the contact record.\nExample: ca498010-bf53-11ec-9d64-0242ac120002"},{"key":"MemberID","value":"","description":"The unique member identifier for the contact.\nExample: F001."},{"key":"FirstName","value":null,"description":"The first name for the contact record.\nExample: John"},{"key":"LastName","value":null,"description":"The last name for the contact record.\nExample: Doe"},{"key":"Email","value":null,"description":"The contact’s email address.\nExample: John.Doe@dayrep.com"},{"key":"Phone","value":null,"description":"The contact’s primary phone on record.\nExample: 8886696131"},{"key":"ContactClassID","value":null,"description":"The unique contact class identifier for the contact classes you’d like to pull contact information for. Comma delineated for multiple. \nExample: PrimaryMember."},{"key":"UDFsToInclude","value":null,"description":"A comma-delimited list of Contact UDFs to include in the response."},{"key":"PageNumber","value":null,"description":"The page of records to return.\nExample: 1."},{"key":"PageSize","value":null,"description":"The number of records to return per page.\nExample: 25."},{"key":"LastModifiedDate","value":null,"description":"Only pull contacts which have been updated since a certain date and time. Use to pull any new changes since your last pull. Example: 2021-03-02T10:20:00"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Contacts\": [\r\n        {\r\n            \"ContactID\": \"942e04f1-865d-4d66-8dea-0044d80c10b6\",\r\n            \"MemberID\": \"F001\",\r\n            \"Salutation\": \"Mr.\",\r\n            \"FirstName\": \"John\",\r\n            \"LastName\": \"Doe\",\r\n            \"Email\": \"John.Doe@dayrep.com\",\r\n            \"PrimaryAddressLine1\": \"111 Zenway Blvd\",\r\n            \"PrimaryAddressLine2\": \"Unit 32\",\r\n            \"PrimaryAddressCity\": \"Vaughan\",\r\n            \"PrimaryAddressStateProv\": \"Ontario\",\r\n            \"PrimaryAddressZipPostal\": \"L4H 3H9\",\r\n            \"PrimaryAddressCountry\": \"Canada\",\r\n            \"Phone\": \"(888) 669-6131\",\r\n            \"Fax\": \"(888) 669-6131\",\r\n            \"WorkPhone\": \"(888) 669-6131\",\r\n            \"CellPhone\": \"(888) 669-6131\",\r\n            \"Gender\": \"Male\",\r\n            \"DateOfBirth\": \"1977-06-07T00:00:00\",\r\n            \"Note\": \"This customer tips very well!!!\",\r\n            \"StatusID\": \"Active\",\r\n            \"ContactIsDeleted\": false,\r\n            \"ContactClassID\": \"PrimaryMember\"\r\n            \"UserDefinedFields\": [\r\n                {\r\n                    \"ContactID\": \"60bbe4dc-88ad-47a5-8f37-7b10a61da684\",\r\n                    \"UDFCategoryName\": \"Assistant Data\",\r\n                    \"UDFName\": \"Assistant Email\",\r\n                    \"UDFValue\": \"stephanie.gremaldi@gmail.com\"\r\n                },\r\n                {\r\n                    \"ContactID\": \"60bbe4dc-88ad-47a5-8f37-7b10a61da684\",\r\n                    \"UDFCategoryName\": \"\",\r\n                    \"UDFName\": \"Bag#\",\r\n                    \"UDFValue\": \"198\"\r\n                }\r\n            ]\r\n        }\r\n                ]\r\n}"}],"_postman_id":"e825d018-f1f6-41d1-987d-3c95844a91ef"},{"name":"EditContact","id":"dae930d1-bd35-b903-479c-bcdb3cb2b3e4","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"ContactID\": \"ca498010-bf53-11ec-9d64-0242ac120002\",\n    \"FirstName\": \"Irene\",\n    \"LastName\": \"Adler\",\n    \"Email\": \"irene.adler@dayrep.com\",\n    \"PhoneCountryCode\": \"US\",\n    \"Phone\": \"8886696131\",\n    \"CellCountryCode\": \"US\",\n    \"Cell\": \"8886696132\",\n    \"WorkCountryCode\": null,\n    \"Work\": null\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/contacts/edit","description":"<p>Updates core contact details for an existing contact record.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.100.24</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContactID REQUIRED</td>\n<td>The unique identifier of the contact to update. Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The contact's first name. Example: Irene</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The contact's last name. Example: Adler</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>The contact's email address. Must be valid format and not already in use by another contact. Example: <a href=\"https://mailto:irene.adler@dayrep.com\">irene.adler@dayrep.com</a></td>\n</tr>\n<tr>\n<td>PhoneCountryCode</td>\n<td>Country code for the primary phone number. Example: US</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>The contact's primary phone number. Example: 8886696131</td>\n</tr>\n<tr>\n<td>CellCountryCode</td>\n<td>Country code for the cell phone number. Example: US</td>\n</tr>\n<tr>\n<td>Cell</td>\n<td>The contact's cell phone number. Example: 8886696131</td>\n</tr>\n<tr>\n<td>WorkCountryCode</td>\n<td>Country code for the work phone number. Example: US</td>\n</tr>\n<tr>\n<td>Work</td>\n<td>The contact's work phone number. Example: 8886696131</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Success</td>\n<td>Whether the update was applied successfully. Example: true</td>\n</tr>\n<tr>\n<td>Error</td>\n<td>Descriptive error message if the update failed, null on success.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","contacts","edit"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dae930d1-bd35-b903-479c-bcdb3cb2b3e4"},{"name":"GetAccountHistory","id":"dabac9cd-6b31-44a8-be6a-cef7068ffff2","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/accounts/history?AccountID=e72a2364-245a-4fbc-83b1-141832a07012&PageCount=25&PageNumber=1","description":"<p>Returns account transactions and summary details for a selected account, including both charges and payments.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.100.26</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountID REQUIRED</td>\n<td>Unique identifier of the account to retrieve history for. Example: e72a2364-245a-4fbc-83b1-141832a07012</td>\n</tr>\n<tr>\n<td>PageCount REQUIRED</td>\n<td>Number of records to return per page. Example: 25</td>\n</tr>\n<tr>\n<td>PageNumber REQUIRED</td>\n<td>Page number to return (1-based). Example: 1</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>Filter by transaction type. Admin Fee (6), Additional Charge (2), Additional Credit (3), F&amp;B Minimum Charge (5), Finance Charge (4), Food &amp; Beverage Charge (1), Payment (7), Payment Void (8), Retail Charge (0). Example: 7</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>Filter transactions on or after this date. Example: 2026-01-01T00:00:00</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>Filter transactions on or before this date. Example: 2026-03-31T23:59:59</td>\n</tr>\n<tr>\n<td>InvoiceID</td>\n<td>Filter by a specific invoice identifier. Example: INV4</td>\n</tr>\n<tr>\n<td>MinimumAmount</td>\n<td>Filter to transactions at or above this amount. Example: 10.00</td>\n</tr>\n<tr>\n<td>MaximumAmount</td>\n<td>Filter to transactions at or below this amount. Example: 500.00</td>\n</tr>\n<tr>\n<td>POSID</td>\n<td>Filter by point of sale terminal identifier. Example: TERMINAL01</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>Filter by transaction status. Posted (0), Unposted (1), DayNotEnded (2). Example: 0</td>\n</tr>\n<tr>\n<td>TransactionID</td>\n<td>Filter by a specific transaction identifier. Example: 7A64E955-F505-40B6-A4A6-8116101638C7</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements--accounttransactions-list\">Response Elements — AccountTransactions (List)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Site ID</td>\n<td>Site ID that processed the transaction. Example: CGPRSHOP</td>\n</tr>\n<tr>\n<td>Site Description</td>\n<td>Site Description that processed the transaction. Example: CG PRO SHOP</td>\n</tr>\n<tr>\n<td>RestaurantID</td>\n<td>Restaurant ID that processed the transaction. Example: DWNCFE</td>\n</tr>\n<tr>\n<td>RestaurantDescription</td>\n<td>Restaurant Description that processed the transaction. Example: DIWAN CAFE</td>\n</tr>\n<tr>\n<td>TerminalID</td>\n<td>POS terminal that processed the transaction. Example: TERMINAL01</td>\n</tr>\n<tr>\n<td>TerminalDescription</td>\n<td>POS terminal description Example: DWN</td>\n</tr>\n<tr>\n<td>Contact</td>\n<td>Name of the contact associated with the transaction. Example: Irene Adler</td>\n</tr>\n<tr>\n<td>InvoiceID</td>\n<td>Invoice identifier linked to the transaction. Example: INV4</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Transaction amount in dollars.  <br />Example: 31.5</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>Optional note recorded against the transaction.</td>\n</tr>\n<tr>\n<td>RunningBalance</td>\n<td>Account's running balance at the time of this transaction.  <br />Example: 22980.71</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>Posting status of the transaction.  <br />Example: Unposted</td>\n</tr>\n<tr>\n<td>TrxTime</td>\n<td>Date and time the transaction occurred. Example: 2026-03-18T11:18:54.33</td>\n</tr>\n<tr>\n<td>TrxUID</td>\n<td>Unique identifier for the transaction.  <br />Example: 7A64E955-F505-40B6-A4A6-8116101638C7</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>Human-readable transaction type.  <br />Example: Retail Charge</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements--orderitems-object\">Response Elements — OrderItems (Object)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parametr</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LineItemID</td>\n<td>Unique identifier (GUID) for the line item  <br />Example: 4bb0d67c-b41a-4e0d-b11a-a560703a2d47</td>\n</tr>\n<tr>\n<td>CategoryID</td>\n<td>Retail -Unique identifier for the category  <br />Example: CLOTHES</td>\n</tr>\n<tr>\n<td>CategoryDescription</td>\n<td>Retail - Display name of the category  <br />Example: Clothing Items</td>\n</tr>\n<tr>\n<td>SubCategoryID</td>\n<td>Retail -Unique identifier for the sub-category  <br />Example: Shirt</td>\n</tr>\n<tr>\n<td>SubCatagoryDescription</td>\n<td>Retail -Display name of the sub-category  <br />Example: T- shirts</td>\n</tr>\n<tr>\n<td>Class</td>\n<td>F&amp;B- Classification grouping for the item.  <br />Example: Food</td>\n</tr>\n<tr>\n<td>SubClass</td>\n<td>F&amp;B - Sub-classification grouping for the item.  <br />Example: Main</td>\n</tr>\n<tr>\n<td>ItemID</td>\n<td>The unique identifier for the item in the inventory  <br />Example: DNFLFPLATE</td>\n</tr>\n<tr>\n<td>ItemDescription</td>\n<td>The full display name of the item  <br />Example: Falafel Plate</td>\n</tr>\n<tr>\n<td>ItemSubtotal</td>\n<td>The base price of the item(s) before any taxes or discounts are applied  <br />Example: 8.80</td>\n</tr>\n<tr>\n<td>ItemTotal</td>\n<td>The final item amount after discounts have been applied but before tax is added  <br />Example: 1.00</td>\n</tr>\n<tr>\n<td>Quantity</td>\n<td>The number of units of this item included in the transaction  <br />Example: 1</td>\n</tr>\n<tr>\n<td>ShortCode</td>\n<td>A short alphanumeric code used to quickly identify the item  <br />Example: FALAF</td>\n</tr>\n<tr>\n<td>TaxTotal</td>\n<td>The total tax amount applied to this line item.  <br />Example: 5.23</td>\n</tr>\n<tr>\n<td>DiscountTotal</td>\n<td>The total discount amount deducted from this line item.  <br />Example: 7.80</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>The final amount charged for this line item, inclusive of all taxes and after all discounts  <br />Example: 6.23</td>\n</tr>\n<tr>\n<td>Modifiers</td>\n<td>Array of modifier objects applied to the line item  <br />Example: List of the modifiers</td>\n</tr>\n<tr>\n<td>OptionID</td>\n<td>Unique identifier for the modifier option.  <br />Example: DN HALFPOSD</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Display name of the modifier.  <br />Example: Half Potatoes Half Salad</td>\n</tr>\n<tr>\n<td>LineItemID</td>\n<td>Unique identifier (GUID) for the modifier line item  <br />Example: aaaad1a4-e37b-4670-92e2-9e37927b5fc1</td>\n</tr>\n<tr>\n<td>UofM</td>\n<td>Unit of measure for the modifier.  <br />Example: EACH</td>\n</tr>\n<tr>\n<td>AddPrice</td>\n<td>Additional price charged for the modifier.  <br />Example: 2.00</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements--accountsummary-object\">Response Elements — AccountSummary (Object)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AccountBalance</td>\n<td>Current outstanding balance on the account. Example: 22980.71</td>\n</tr>\n<tr>\n<td>TotalPayments</td>\n<td>Total payments made against the account. Example: 36384.32</td>\n</tr>\n<tr>\n<td>TotalRemaining</td>\n<td>Net remaining balance — may be negative. Example: -13403.61</td>\n</tr>\n<tr>\n<td>TotalCount</td>\n<td>Total number of transactions available across all pages. Example: 239</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","accounts","history"],"host":["{{base_url}}"],"query":[{"key":"AccountID","value":"e72a2364-245a-4fbc-83b1-141832a07012"},{"key":"PageCount","value":"25"},{"key":"PageNumber","value":"1"}],"variable":[]}},"response":[],"_postman_id":"dabac9cd-6b31-44a8-be6a-cef7068ffff2"},{"name":"GetContactAccounts","id":"93e2ecf4-6300-b5c4-a295-e4e4c2788e49","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/contacts/accounts?ContactID=ca498010-bf53-11ec-9d64-0242ac120002","description":"<p>Returns the list of accounts associated with a contact.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.100.24</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContactID REQUIRED</td>\n<td>The unique identifier of the contact whose accounts should be returned. Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CustomerAccounts (List):</td>\n<td>A list of accounts associated with the contact.</td>\n</tr>\n<tr>\n<td>AccountID</td>\n<td>Unique identifier for the account. Example: e72a2364-245a-4fbc-83b1-141832a07012</td>\n</tr>\n<tr>\n<td>AccountName</td>\n<td>Display name of the account. Example: Adler Irene</td>\n</tr>\n<tr>\n<td>AllowAR</td>\n<td>Whether accounts receivable is enabled for this account. Example: true</td>\n</tr>\n<tr>\n<td>CreditLimitAmount</td>\n<td>The credit limit amount assigned to the account. Example: 0</td>\n</tr>\n<tr>\n<td>CreditLimitType</td>\n<td>The type of credit limit applied. Example: 1</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>The member identifier associated with the account. Example: F001</td>\n</tr>\n<tr>\n<td>IsDefault</td>\n<td>Whether this is the contact's default account. Example: true</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","contacts","accounts"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>The unique identifier of the contact whose accounts should be returned.</p>\n","type":"text/plain"},"key":"ContactID","value":"ca498010-bf53-11ec-9d64-0242ac120002"}],"variable":[]}},"response":[],"_postman_id":"93e2ecf4-6300-b5c4-a295-e4e4c2788e49"},{"name":"GetContactAddresses","id":"59d60776-1bd7-5e91-7bb9-6f275e0f816d","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/contacts/addresses?ContactID=ca498010-bf53-11ec-9d64-0242ac120002","description":"<p>Returns the list of addresses associated with a contact, along with available address types.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.100.24</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContactID REQUIRED</td>\n<td>The unique identifier of the contact whose addresses should be returned. Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements--addresses-list\">Response Elements — Addresses (List)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AddressUID</td>\n<td>Unique identifier for the address record.</td>\n</tr>\n<tr>\n<td>AddressType</td>\n<td>The type of address. Example: Home</td>\n</tr>\n<tr>\n<td>IsPrimary</td>\n<td>Whether this is the contact's primary address. Example: true</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td>First line of the street address. Example: 111 Zenway Blvd</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td>Second line of the street address (optional). Example: Unit 32</td>\n</tr>\n<tr>\n<td>City</td>\n<td>City. Example: Vaughan</td>\n</tr>\n<tr>\n<td>State</td>\n<td>State or province. Example: Ontario</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td>Postal or zip code. Example: L4H 3H9</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Country. Example: Canada</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Optional description or label for the address.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements--addresstypes-list\">Response Elements — AddressTypes (List)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AddressTypes</td>\n<td>A list of all available address type options configured for this platform.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","contacts","addresses"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>The unique identifier of the contact whose addresses should be returned.</p>\n","type":"text/plain"},"key":"ContactID","value":"ca498010-bf53-11ec-9d64-0242ac120002"}],"variable":[]}},"response":[],"_postman_id":"59d60776-1bd7-5e91-7bb9-6f275e0f816d"},{"name":"UpdateContactAddress","id":"fe2ee3e6-7562-42f8-341a-0346cf30a2a8","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"ContactID\": \"ca498010-bf53-11ec-9d64-0242ac120002\",\n    \"AddressUID\": \"b1c2d3e4-0000-0000-0000-000000000001\",\n    \"AddressType\": \"Home\",\n    \"IsPrimary\": true,\n    \"Address1\": \"222 Mountain View Drive\",\n    \"Address2\": null,\n    \"City\": \"Eden\",\n    \"State\": \"UT\",\n    \"PostalCode\": \"84310\",\n    \"Country\": \"US\",\n    \"Description\": \"Primary Residence\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/contacts/addresses/update","description":"<p>Updates an existing address record for a contact, including support for updating the primary address.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.100.24</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContactID REQUIRED</td>\n<td>The unique identifier of the contact whose address is being updated. Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>AddressUID REQUIRED</td>\n<td>The unique identifier of the address record to update. Example: b1c2d3e4-0000-0000-0000-000000000001</td>\n</tr>\n<tr>\n<td>AddressType</td>\n<td>The type of address. Example: Home</td>\n</tr>\n<tr>\n<td>IsPrimary</td>\n<td>Set to true to make this the contact's primary address. Example: true</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td>First line of the street address. Example: 222 Mountain View Drive</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td>Second line of the street address. Example: Unit 4</td>\n</tr>\n<tr>\n<td>City</td>\n<td>City. Example: Eden</td>\n</tr>\n<tr>\n<td>State</td>\n<td>State or province. Example: UT</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td>Postal or zip code. Example: 84310</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Country. Example: US</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Optional description or label for the address. Example: Primary Residence</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Success</td>\n<td>Whether the update was applied successfully. Example: true</td>\n</tr>\n<tr>\n<td>Error</td>\n<td>Descriptive error message if the update failed, null on success.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","contacts","addresses","update"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe2ee3e6-7562-42f8-341a-0346cf30a2a8"},{"name":"GetProperties","event":[{"listen":"test","script":{"id":"d8dc50b1-5bcf-4f46-a7a6-883473a5228d","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"b92c268c-3e2c-4473-86ca-4169d3a157e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/properties?ContactID=&MemberID=&PropertyID=&PropertyDescription=&PropertyType=&IncludePropertyUDFs=True&PageNumber=1&PageSize=25","description":"<p>Queries and returns a list of contacts on the client database.</p>\n<p><strong>Method:</strong> Get</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.100.22</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContactID</td>\n<td>Unique identifier of the contact record. Used to retrieve properties linked to this contact.  <br />  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>Unique member identifier associated with the contact. Used to retrieve properties linked to this member.  <br />  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>PropertyID</td>\n<td>Unique identifier of the property to retrieve.  <br />  <br />Example: DB668010-45GH-12GB-9d64-0242ac126665</td>\n</tr>\n<tr>\n<td>PropertyDescription</td>\n<td>Filters results to properties where the description contains the specified value.  <br />  <br />Example: 123 American Way</td>\n</tr>\n<tr>\n<td>PropertyType</td>\n<td>Filters results to properties of the specified type. Supports multiple values separated by commas.  <br />  <br />Example: House</td>\n</tr>\n<tr>\n<td>IncludePropertyUDFs</td>\n<td>When set to true, results will include user-defined field (UDF) names and values for each property. Default: false.  <br />  <br />Example: True</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td>The page of records to return.  <br />  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>The number of records to return per page.  <br />  <br />Example: 25.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PropertyID</td>\n<td>The unique identifier of the property.  <br />  <br />Example: DB668010-45GH-12GB-9d64-0242ac126665</td>\n</tr>\n<tr>\n<td>PropertyDescription</td>\n<td>The description of the property.  <br />  <br />Example: 123 American Way</td>\n</tr>\n<tr>\n<td>PropertyType</td>\n<td>The type of property.  <br />  <br />Example: House</td>\n</tr>\n<tr>\n<td>ComplexID</td>\n<td>Unique identifier of the complex this property belongs to. A complex is a group of properties.</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td>First line of the property’s address.  <br />  <br />Example: 123 American Way</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td>Second line of the property’s address (if applicable).  <br />  <br />Example: Unit 32</td>\n</tr>\n<tr>\n<td>City</td>\n<td>City where the property is located.  <br />  <br />Example: Big Sky</td>\n</tr>\n<tr>\n<td>State</td>\n<td>State/Province where the property is located.  <br />  <br />Example: MT</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Country where the property is located.  <br />  <br />Example: US</td>\n</tr>\n<tr>\n<td>PostCode</td>\n<td>Postal or ZIP code of the property.  <br />  <br />Example: 12345</td>\n</tr>\n<tr>\n<td>Note</td>\n<td>Any notes stored against the property.</td>\n</tr>\n<tr>\n<td>Contact (List):</td>\n<td></td>\n</tr>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact record.  <br />  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>The unique member identifier for the contact (if applicable).  <br />  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name for the contact record.  <br />  <br />Example: John</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name for the contact record.  <br />  <br />Example: Doe</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>The contact’s email address.  <br />  <br />Example: <a href=\"https://mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>The contact’s primary phone on record.  <br />  <br />Example: (888) 669-6131</td>\n</tr>\n<tr>\n<td>MemberStatusID</td>\n<td>The current member status on the contact’s record.  <br />  <br />Example: Active</td>\n</tr>\n<tr>\n<td>InvestorID</td>\n<td>The contact’s investor unique identifier if applicable.  <br />  <br />Example: 3511</td>\n</tr>\n<tr>\n<td>IsPrimary</td>\n<td>Indicates which contact associated with the property is the primary.  <br />  <br />Example: True</td>\n</tr>\n<tr>\n<td>PropertyUserDefinedFields (List):</td>\n<td></td>\n</tr>\n<tr>\n<td>UDFName</td>\n<td>The name of the property’s user defined field.  <br />  <br />Example: SubDivision</td>\n</tr>\n<tr>\n<td>UDFValue</td>\n<td>The value assigned to the user-defined field.  <br />  <br />Example: 01</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","properties"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Unique identifier of the contact record. Used to retrieve properties linked to this contact.</p>\n<p>Example: ca498010-bf53-11ec-9d64-0242ac120002</p>\n","type":"text/plain"},"key":"ContactID","value":""},{"description":{"content":"<p>Unique member identifier associated with the contact. Used to retrieve properties linked to this member. </p>\n<p>Example: F001.</p>\n","type":"text/plain"},"key":"MemberID","value":""},{"description":{"content":"<p>Unique identifier of the property to retrieve.</p>\n<p>Example:  DB668010-45GH-12GB-9d64-0242ac126665</p>\n","type":"text/plain"},"key":"PropertyID","value":""},{"description":{"content":"<p>Filters results to properties where the description contains the specified value.</p>\n<p>Example: 123 American Way</p>\n","type":"text/plain"},"key":"PropertyDescription","value":""},{"description":{"content":"<p>Filters results to properties of the specified type. Supports multiple values separated by commas.</p>\n<p>Example: House</p>\n","type":"text/plain"},"key":"PropertyType","value":""},{"description":{"content":"<p>When set to true, results will include user-defined field (UDF) names and values for each property. Default: false.</p>\n<p>Example: True</p>\n","type":"text/plain"},"key":"IncludePropertyUDFs","value":"True"},{"description":{"content":"<p>REQUIRED - The page of records to return.\nExample: 1.</p>\n","type":"text/plain"},"key":"PageNumber","value":"1"},{"description":{"content":"<p>REQUIRED - The number of records to return per page.\nExample: 25.</p>\n","type":"text/plain"},"key":"PageSize","value":"25"}],"variable":[]}},"response":[{"id":"398f0ec9-cc12-4603-821d-b158cb032f40","name":"GetProperties","originalRequest":{"method":"GET","header":[{"key":"Bearer","value":"CfDJ8OtuScpyptxDoXbuJ4rA5EujwbaussUeJxUMFnkjP8l_VdDNUj0m-i9li7Tsmz4F2TqzNaqxuCnPYGm0lcOlw068SowvusZ8oH54VjnbaliKkbyj1YRWRQ5UMYHi9xaOxTF6ZzKYnT1RQCIq7dGiNsbbNVtCDrjk5Xaf4uhY28GgmYXMX-CF5UrjiE2qpbwqOjDScmWUsCYyp5beiJ4WQRb_xcIcTJVbeFwFvOBd6SHungrpHWbMovIWFYqhCCDtiCjQFpD48rjg5m313LpGdI0P0oL08exmNIn7cFI7hxegR2QE3DKd-cbeYrXjNY8ke-WcDh6JLHu1k1ppXftNrq7FGuj1_cGXXP1wfF4DdY-MxsGolycyp2vrwMG8vR-q8abs-WDiKN_7BgKIgS24wk6v0P5TyQiFE0_FG2pkqmy1kBeMP_DqgysfSyGlHakZy0V757khlEyZmW7h5SOrwW7EYBDcxtl93419I536hERa6duX6TnvhfN9VOzZAvMnmA","type":"text","disabled":true},{"key":"Path","value":"","type":"text","disabled":true}],"url":{"raw":"{{base_url}}/api/v1/properties?ContactID=&MemberID=&PropertyID=&PropertyDescription=&PropertyType=&IncludePropertyUDFs=True&PageNumber=1&PageSize=25","host":["{{base_url}}"],"path":["api","v1","properties"],"query":[{"key":"ContactID","value":"","description":"Unique identifier of the contact record. Used to retrieve properties linked to this contact.\n\nExample: ca498010-bf53-11ec-9d64-0242ac120002"},{"key":"MemberID","value":"","description":"Unique member identifier associated with the contact. Used to retrieve properties linked to this member. \n\nExample: F001."},{"key":"PropertyID","value":"","description":"Unique identifier of the property to retrieve.\n\nExample:  DB668010-45GH-12GB-9d64-0242ac126665"},{"key":"PropertyDescription","value":"","description":"Filters results to properties where the description contains the specified value.\n\nExample: 123 American Way"},{"key":"PropertyType","value":"","description":"Filters results to properties of the specified type. Supports multiple values separated by commas.\n\nExample: House"},{"key":"IncludePropertyUDFs","value":"True","description":"When set to true, results will include user-defined field (UDF) names and values for each property. Default: false.\n\nExample: True"},{"key":"PageNumber","value":"1","description":"REQUIRED - The page of records to return.\nExample: 1."},{"key":"PageSize","value":"25","description":"REQUIRED - The number of records to return per page.\nExample: 25."}]}},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"\"Properties\": [\r\n        {\r\n            \"PropertyID\": \"d351b477-4a00-464d-8591-d5e809ea8b3d\",\r\n            \"PropertyDescription\": \"123 American Spirit Way - U12\",\r\n            \"PropertyType\": \"Apartment\",\r\n            \"ComplexID\": null,\r\n            \"Address1\": \"123 American Spirit Way\",\r\n            \"Address2\": \"Unit 12\",\r\n            \"City\": \"Silvercoast\",\r\n            \"State\": \"WA\",\r\n            \"PostCode\": \"\",\r\n            \"Country\": \"US\",\r\n            \"Note\": \"\",\r\n            \"TotalCount\": 98,\r\n            \"Contacts\": [\r\n                {\r\n                    \"PropertyID\": \"d351b477-4a00-464d-8591-d5e809ea8b3d\",\r\n                    \"ContactID\": \"222604c1-ece3-4980-98d3-c25af309b53f\",\r\n                    \"MemberID\": \"F001\",\r\n                    \"FirstName\": \"Irene\",\r\n                    \"LastName\": \"Adler\",\r\n                    \"Email\": \"irene.adler@dayrep.com\",\r\n                    \"Phone\": \"5555551321\",\r\n                    \"MemberStatusID\": \"ACTIVE\",\r\n                    \"InvestorID\": \"\",\r\n                    \"IsPrimary\": true\r\n                }\r\n            ],\r\n            \"PropertyUserDefinedFields\": [\r\n                {\r\n                    \"PropertyID\": \"88a7cfd9-9659-4e74-8d8d-026d31af81b1\",\r\n                    \"UDFName\": \"Parcel Number\",\r\n                    \"UDFValue\": \"a\"\r\n                },\r\n                {\r\n                    \"PropertyID\": \"88a7cfd9-9659-4e74-8d8d-026d31af81b1\",\r\n                    \"UDFName\": \"Sub Division\",\r\n                    \"UDFValue\": \"123\"\r\n                },\r\n                {\r\n                    \"PropertyID\": \"88a7cfd9-9659-4e74-8d8d-026d31af81b1\",\r\n                    \"UDFName\": \"Sub Lot Number\",\r\n                    \"UDFValue\": \"1234\"\r\n                }\r\n            ]\r\n        },"}],"_postman_id":"b92c268c-3e2c-4473-86ca-4169d3a157e4"},{"name":"MemberValidator","event":[{"listen":"test","script":{"id":"d8dc50b1-5bcf-4f46-a7a6-883473a5228d","exec":[""],"type":"text/javascript","packages":{}}}],"id":"e12f564a-1def-4067-b96d-c05d28ab7783","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/Contacts/MemberValidator/ValidateMemberIds?MemberIDs=24","description":"<p>Validates a list of member ID’s member statuses.</p>\n<p><strong>Method:</strong> Get</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberID (List) REQUIRED  <br />  <br />Comma delimited for multiple.</td>\n<td>The unique member identifier for the members you’d like to pull status information for. Example: F001.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact record.  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>The unique member identifier for the contact (if applicable).  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name for the contact record.  <br />Example: John</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name for the contact record.  <br />Example: Doe</td>\n</tr>\n<tr>\n<td>Salutation</td>\n<td>Examples: Mr., Mrs., Ms, Dr.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>The contact’s email address.  <br />Example: <a href=\"https://mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>The contact’s primary phone on record.  <br />Example: (888) 669-6131</td>\n</tr>\n<tr>\n<td>PropertyID (List)</td>\n<td>The unique identifier for the member’s property.  <br />Example: ZenwayCondo101</td>\n</tr>\n<tr>\n<td>MemberStatus:</td>\n<td>-</td>\n</tr>\n<tr>\n<td>StatusID</td>\n<td>The unique member status identifier for the contact record.  <br />Example: Active</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>The description of the member’s status.  <br />Example: Active</td>\n</tr>\n<tr>\n<td>APIResponse</td>\n<td>Additional notes or comments from the API response.  <br />Example: Member ID Not Found.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","Contacts","MemberValidator","ValidateMemberIds"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique member identifier for the members you’d like to pull status information for. Example: F001.</p>\n","type":"text/plain"},"key":"MemberIDs","value":"24"}],"variable":[]}},"response":[{"id":"32d2ad8e-d66c-4403-be9c-dd12caf23b99","name":"MemberValidator","originalRequest":{"method":"GET","header":[{"key":"Bearer","value":"CfDJ8OtuScpyptxDoXbuJ4rA5EujwbaussUeJxUMFnkjP8l_VdDNUj0m-i9li7Tsmz4F2TqzNaqxuCnPYGm0lcOlw068SowvusZ8oH54VjnbaliKkbyj1YRWRQ5UMYHi9xaOxTF6ZzKYnT1RQCIq7dGiNsbbNVtCDrjk5Xaf4uhY28GgmYXMX-CF5UrjiE2qpbwqOjDScmWUsCYyp5beiJ4WQRb_xcIcTJVbeFwFvOBd6SHungrpHWbMovIWFYqhCCDtiCjQFpD48rjg5m313LpGdI0P0oL08exmNIn7cFI7hxegR2QE3DKd-cbeYrXjNY8ke-WcDh6JLHu1k1ppXftNrq7FGuj1_cGXXP1wfF4DdY-MxsGolycyp2vrwMG8vR-q8abs-WDiKN_7BgKIgS24wk6v0P5TyQiFE0_FG2pkqmy1kBeMP_DqgysfSyGlHakZy0V757khlEyZmW7h5SOrwW7EYBDcxtl93419I536hERa6duX6TnvhfN9VOzZAvMnmA","type":"text","disabled":true},{"key":"Path","value":"","type":"text","disabled":true}],"url":{"raw":"{{base_url}}/api/v1/Contacts/MemberValidator/ValidateMemberIds?MemberIDs=24","host":["{{base_url}}"],"path":["api","v1","Contacts","MemberValidator","ValidateMemberIds"],"query":[{"key":"MemberIDs","value":"24","description":"REQUIRED - The unique member identifier for the members you’d like to pull status information for. Example: F001."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{{\r\n    \"Members\": [\r\n        {\r\n            \"ContactID\": \"00000000-0000-0000-0000-000000000000\",\r\n            \"Salutation\": \"Mr.\",\r\n            \"FirstName\": \"John\",\r\n            \"LastName\": \"Doe\",\r\n            \"Phone\": \"(888) 669-6131\",\r\n            \"Email\": \"John.Doe@dayrep.com\",\r\n            \"MemberID\": \"24\",\r\n            \"PropertyID\": \"ZenwayCondo101\",\r\n            \"MemberStatus\": {\r\n                \"StatusID\": \"INACTIVE\",\r\n                \"Description\": \"Inactive\"\r\n            },\r\n            \"APIResponse\": \"\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"e12f564a-1def-4067-b96d-c05d28ab7783"},{"name":"PostRetailOnAccountCharge","id":"fae27482-16b4-4c73-896e-70e52acf0144","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"TerminalID\": \"KEBOBPOS01\",\r\n    \"Transactions\": [{\r\n        \"MemberID\": \"3511\",\r\n        \"TransactionID\": \"5767\",\r\n        \"DateTime\": \"2025-02-12T10:20:00\",\r\n        \"Items\": [\r\n            {\r\n                \"ItemID\": \"PSWEEE114\",\r\n                \"Quantity\": 1,\r\n                \"Price\": 99.00,\r\n                \"Description\": \"Guest Fee 1\"\r\n            },\r\n            {\r\n                \"ItemID\": \"PSWEEE114\",\r\n                \"Quantity\": 2,\r\n                \"Price\": 99.00,\r\n                \"Description\": \"Guest Fee 2\"\r\n            }\r\n        ]\r\n    }]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/Office/PostRetailOnAccountCharge","description":"<p>Creates and posts a <strong>Retail On Account Charge</strong> to TEI for the selected Member’s default AR account.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.100.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TerminalID</td>\n<td>Unique identifier for the POS terminal submitting the charges. REQUIRED</td>\n</tr>\n<tr>\n<td>Transactions</td>\n<td>A list of transaction objects. Each represents a unique member charge transaction. REQUIRED</td>\n</tr>\n<tr>\n<td>Transactions (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>Identifier of the member the charge will be applied to. Must exist in TEI. REQUIRED</td>\n</tr>\n<tr>\n<td>TransactionID</td>\n<td>A unique transaction identifier generated by the partner system. This field is required and is used to link the transaction with the TEI TransactionID. Submitting the same TransactionID more than once will be treated as a duplicate transaction and will be rejected to prevent duplicate postings. REQUIRED</td>\n</tr>\n<tr>\n<td>DateTime</td>\n<td>Transaction Date/Time – The date and time the transaction is recorded. If not specified, this will default to the current system date and time.  <br />  <br /><em>Note: The business day must be manually opened before processing transactions, unless the terminal is configured with a default float of zero, which allows the day to open automatically.</em></td>\n</tr>\n<tr>\n<td>Items (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>ItemID</td>\n<td>Identifier of the item being charged. Must exist in TEI. REQUIRED.</td>\n</tr>\n<tr>\n<td>Quantity</td>\n<td>Quantity of the item being charged. REQUIRED</td>\n</tr>\n<tr>\n<td>Price</td>\n<td>Price per unit. If omitted, defaults to the item’s configured price in TEI.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Optional text description for the line item. If omitted, defaults to the item’s configured description in TEI.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Success</td>\n<td>Indicates whether all transactions were processed successfully.</td>\n</tr>\n<tr>\n<td>Results (List)</td>\n<td>Contains detailed results for each transaction submitted.</td>\n</tr>\n<tr>\n<td>Results[n].MemberID</td>\n<td>Member ID from the request.</td>\n</tr>\n<tr>\n<td>Results[n].TransactionID</td>\n<td>Includes the transaction ID if the process was successful.</td>\n</tr>\n<tr>\n<td>Results[n].Success</td>\n<td>Indicates success/failure for that member’s transaction.</td>\n</tr>\n<tr>\n<td>Results[n].Message</td>\n<td>Details of validation errors or success confirmation.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","Office","PostRetailOnAccountCharge"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"4b67d6f7-0d31-463b-b749-c864a2d7e7e6","name":"PostRetailOnAccountCharge","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"TerminalID\": \"POS01\",\r\n    \"Transactions\": [{\r\n        \"MemberID\": \"F001\",\r\n        \"TransactionID\": \"5767\",\r\n        \"DateTime\": \"2025-03-02T10:20:00\",\r\n        \"Items\": [\r\n            {\r\n                \"ItemID\": \"ORCA00001\",\r\n                \"Quantity\": 1,\r\n                \"Price\": 99.00,\r\n                \"Description\": \"Guest Fee (GUESTNAME)\"\r\n            },\r\n            {\r\n                \"ItemID\": \"ORCA00002\",\r\n                \"Quantity\": 2,\r\n                \"Price\": 99.00,\r\n                \"Description\": \"Guest Fee (GUESTNAME)\"\r\n            }\r\n        ]\r\n    }]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/Office/PostRetailOnAccountCharge"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Success\": true,\r\n    \"Results\": [\r\n         \"MemberID\": \"F001\",\r\n         \"TransactionID\": 123456,\r\n         \"Success\": true,\r\n         \"Message\": Success!,\r\n    ]\r\n} "}],"_postman_id":"fae27482-16b4-4c73-896e-70e52acf0144"}],"id":"faafdc9f-7ffc-4a54-9d3c-0dc04de5320d","description":"<p>Total e Integrated offers a suite of Contact APIs that allow users to retrieve contact information directly from the TEI database.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"8eff5446-0fce-40c9-9b87-516d67a8a821","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"163b490f-28de-4e13-8cf3-3aa7ae80ef63","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"faafdc9f-7ffc-4a54-9d3c-0dc04de5320d"},{"name":"Event Registrations","item":[{"name":"HoldPackages","id":"4ae0d0b7-995b-4c5c-8136-0590e7590c85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"EventUID\": \"4f171274-54c0-43c8-8734-dc30576b9ca4\",\r\n  \"BookerContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\",\r\n  \"EventPackages\": [\r\n    {\r\n      \"EventPackageUID\": \"c45a03be-bf8b-4b92-98f0-3fd3f292341b\",\r\n      \"IsWaitList\": false,\r\n      \"Quantity\": 2\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/events/HoldPackages","description":"<p>Holds event packages so that other users cannot book it during the booking process. Note that packages in the hold table are automatically released after 5 minutes, ensure your interface displays a five minute timer for users.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EventUID *REQUIRED  <br />Comma delimited for multiple.</td>\n<td>The unique identifier for the event used in the database.  <br />Example: 598510BC-214B-44DB-BBE0-8821967C34EA</td>\n</tr>\n<tr>\n<td>BookerContactID *REQUIRED</td>\n<td>The unique identifier for the contact who is holding the packages  <br />Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6</td>\n</tr>\n<tr>\n<td>EventPackages (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>EventPackageUID *REQUIRED</td>\n<td>The unique identifier given to the package in the database which you’d like to hold.  <br />  <br />Example: 738AFD41-E250-4C17-BAD7-97F139795146</td>\n</tr>\n<tr>\n<td>IsWaitList *REQUIRED</td>\n<td>Whether or not the package being booked is for a waitlist.  <br />  <br />Example: false.</td>\n</tr>\n<tr>\n<td>Quantity *REQUIRED</td>\n<td>The number of packages you’d like to hold.  <br />Example: 2</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Message</td>\n<td>Description of error/issue with hold (if applicable).</td>\n</tr>\n<tr>\n<td>Success</td>\n<td>Whether or not the package(s) are available and held.  <br />Example: true</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","events","HoldPackages"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"78623dae-5eef-49a1-ae11-2692ccb62ea8","name":"HoldPackages","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"EventUID\": \"4f171274-54c0-43c8-8734-dc30576b9ca4\",\r\n  \"BookerContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\",\r\n  \"EventPackages\": [\r\n    {\r\n      \"EventPackageUID\": \"c45a03be-bf8b-4b92-98f0-3fd3f292341b\",\r\n      \"IsWaitList\": false,\r\n      \"Quantity\": 2\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/events/HoldPackages"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Message\": null,\r\n    \"Success\": true\r\n}"}],"_postman_id":"4ae0d0b7-995b-4c5c-8136-0590e7590c85"},{"name":"ReleasePackages","id":"0bf5b658-c9b0-4bc6-b003-f4a96957252a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"EventUID\": \"4f171274-54c0-43c8-8734-dc30576b9ca4\",\r\n  \"BookerContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\",\r\n  \"EventPackages\": [\r\n    {\r\n      \"EventPackageUID\": \"c45a03be-bf8b-4b92-98f0-3fd3f292341b\",\r\n      \"IsWaitList\": false,\r\n      \"Quantity\": 2\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/events/ReleasePackages","description":"<p>Releases event packages so that abandoned registrations can be booked by other users. Note that packages in the hold table are automatically released after 5 minutes, this can be used should the user cancel earlier.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EventUID *REQUIRED  <br />Comma-delimited for multiple.</td>\n<td>The unique identifier for the event used in the database.  <br />Example: 598510BC-214B-44DB-BBE0-8821967C34EA</td>\n</tr>\n<tr>\n<td>BookerContactID *REQUIRED</td>\n<td>The unique identifier for the contact who is releasing the packages.  <br />Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6</td>\n</tr>\n<tr>\n<td>EventPackages (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>EventPackageUID *REQUIRED</td>\n<td>The unique identifier given to the package in the database which you’d like to hold.  <br />  <br />Example: 738AFD41-E250-4C17-BAD7-97F139795146</td>\n</tr>\n<tr>\n<td>IsWaitList *REQUIRED</td>\n<td>Whether or not the package being booked is for a waitlist.  <br />  <br />Example: false.</td>\n</tr>\n<tr>\n<td>Quantity *REQUIRED</td>\n<td>The number of packages you’d like to hold.  <br />Example: 2</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Message</td>\n<td>Description of the outcome of the release.</td>\n</tr>\n<tr>\n<td>Success</td>\n<td>Whether or not the package(s) are released.  <br />Example: true</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","events","ReleasePackages"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"93bd4cf7-5ef4-44d9-811f-316e496deed8","name":"ReleasePackages","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"EventUID\": \"4f171274-54c0-43c8-8734-dc30576b9ca4\",\r\n  \"BookerContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\",\r\n  \"EventPackages\": [\r\n    {\r\n      \"EventPackageUID\": \"c45a03be-bf8b-4b92-98f0-3fd3f292341b\",\r\n      \"IsWaitList\": false,\r\n      \"Quantity\": 2\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/events/ReleasePackages"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Message\": null,\r\n    \"Success\": true\r\n}"}],"_postman_id":"0bf5b658-c9b0-4bc6-b003-f4a96957252a"},{"name":"BookEventPackages","id":"df06ba83-bfec-48d7-8469-bbb8030d410a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"EventUID\": \"4f171274-54c0-43c8-8734-dc30576b9ca4\",\r\n  \"BookerContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\",\r\n  \"Registrants\": [\r\n    {\r\n      \"EventPackageUID\": \"c45a03be-bf8b-4b92-98f0-3fd3f292341b\",\r\n      \"ContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\",\r\n      \"FirstName\": \"Ian\",\r\n      \"LastName\": \"Robinson\",\r\n      \"Email\": \"Ian@TEI.com\",\r\n      \"Phone\": \"8886606131\",\r\n      \"PositionNumber\": 1,\r\n      \"EventRegistrantNote\": \"Test Note.\"\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/events/BookEventPackages","description":"<p>Book the event packages or join the wait list as a ‘pay later’ booking for the selected registrants.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EventUID *REQUIRED  <br />Comma-delimited for multiple.</td>\n<td>The unique identifier for the event used in the database.  <br />Example: 598510BC-214B-44DB-BBE0-8821967C34EA</td>\n</tr>\n<tr>\n<td>BookerContactID *REQUIRED</td>\n<td>The unique identifier for the contact who is booking the packages.  <br />Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6</td>\n</tr>\n<tr>\n<td>Registrants (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>EventPackageUID *REQUIRED</td>\n<td>The unique identifier given to the package in the database which you’d like to book.  <br />Example: 738AFD41-E250-4C17-BAD7-97F139795146</td>\n</tr>\n<tr>\n<td>ReservationID</td>\n<td>The unique identifier for the reservation (i.e. group) within TEI. Pass this to update an existing event registration’s details/add a package to an existing group. Exclude from API to generate a new group reservation.  <br />Example: 94133134-1312-4050-8ef5-ffb4cc6345db.</td>\n</tr>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact who is booking the event package.  <br />  <br />Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6  <br />  <br />To book a Guest (i.e. contact who you do not have a Contact ID for), simply pass in the ContactID 00000000-0000-0000-0000-000000000000 along with the guest’s information (name, email, etc.)  <br />  <br />To book a Hold/TBD (i.e. no contact information for registrant yet), pass in the ContactID 88888888-8888-8888-8888-888888888888 and we recommend a FirstName of ‘Hold/TBD’. The other fields are not required for Hold/TBD’s.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name of the contact who is booking the package.  <br />Example: John.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name of the contact who is booking the package.  <br />Example: Doe.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>The email address of the contact who is booking the package.  <br />Example: <a href=\"https://mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>The phone number of the contact who is booking the package.  <br />Example: 8886606131</td>\n</tr>\n<tr>\n<td>PositionNumber</td>\n<td>1</td>\n</tr>\n<tr>\n<td>EventRegistrantNote</td>\n<td>Any notes to be saved for the event registrant. Available in WV1.98+</td>\n</tr>\n<tr>\n<td>Waitlist (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>EventPackageUID REQUIRED</td>\n<td>The unique identifier given to the package in the database which you’d like to join the waitlist for.  <br />Example: 738AFD41-E250-4C17-BAD7-97F139795146</td>\n</tr>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact who is joining the event package waitlist.  <br />Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name of the contact who is joining the event package waitlist.  <br />Example: John.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name of the contact who is joining the event package waitlist.  <br />Example: Doe.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>The email address of the contact who is joining the event package waitlist.  <br />Example: <a href=\"https://mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>The phone number of the contact who is joining the event package waitlist.  <br />Example: 8886606131</td>\n</tr>\n<tr>\n<td>PositionNumber</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Success</td>\n<td>Whether or not the event packages were successfully booked.  <br />Example: true.</td>\n</tr>\n<tr>\n<td>Message</td>\n<td>Message explaining any errors which may have occurred.</td>\n</tr>\n<tr>\n<td>Registrants (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>The customer friendly identification for the booking. For events this will be the last 12 digits of the ReservationID.  <br />Please note, if 2 or more types of packages booked at the same time the response will list multiple Reference IDs.  <br />Example: ffb4cc6345db.</td>\n</tr>\n<tr>\n<td>ReservationID</td>\n<td>The unique identifier for the reservation within TEI.  <br />Please note, if 2 or more types of packages booked at the same time the response will list multiple Reservation IDs.  <br />Example: 94133134-1312-4050-8ef5-ffb4cc6345db.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name of the contact.  <br />Example: Aaron.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name of the contact.  <br />Example: Roque.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>The email address of the contact.  <br />Example: <a href=\"https://mailto:aaron.roque@aol.com\">aaron.roque@aol.com</a></td>\n</tr>\n<tr>\n<td>EventPackageUID</td>\n<td>The unique identifier given to the package in the database.  <br />Example: 738AFD41-E250-4C17-BAD7-97F139795146</td>\n</tr>\n<tr>\n<td>EventRegistrantNote</td>\n<td>Any notes saved for the event registrant. Available in WV1.98+</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","events","BookEventPackages"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"e3afe361-8c58-47c4-813b-f463a74fbec0","name":"BookEventPackages","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"EventUID\": \"4f171274-54c0-43c8-8734-dc30576b9ca4\",\r\n  \"BookerContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\",\r\n  \"Registrants\": [\r\n    {\r\n      \"EventPackageUID\": \"c45a03be-bf8b-4b92-98f0-3fd3f292341b\",\r\n      \"ContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\",\r\n      \"FirstName\": \"Ian\",\r\n      \"LastName\": \"Robinson\",\r\n      \"Email\": \"Ian@TEI.com\",\r\n      \"Phone\": \"8886606131\",\r\n      \"PositionNumber\": 1,\r\n      \"EventRegistrantNote\": \"Test Note.\"\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/events/BookEventPackages"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Success\": true,\r\n    \"Message\": null,\r\n    \"Registrants\": [\r\n        {\r\n            \"ReferenceID\": \"93304E6C8588\",\r\n            \"ReservationID\": \"ba71f9c7-d894-4291-91ae-93304e6c8588\",\r\n            \"EventRegistrantID\": \"4420f7d7-221b-412f-8993-ce743f862dd6\",\r\n            \"ContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\",\r\n            \"FirstName\": \"Ian\",\r\n            \"LastName\": \"Robinson\",\r\n            \"Email\": \"Ian@TEI.com\",\r\n            \"PositionNUmber\": 1,\r\n            \"EventPackageUID\": \"c45a03be-bf8b-4b92-98f0-3fd3f292341b\"\r\n            \"EventRegistrantNote\": \"Test Note.\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"df06ba83-bfec-48d7-8469-bbb8030d410a"},{"name":"CancelEventRegistration","id":"898fbd7e-ffaf-4c8f-9ffa-8af7c7b8785c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"EventRegistrantID\": \"4420f7d7-221b-412f-8993-ce743f862dd6\",\r\n  \"IsWaitlist\": \"false\",\r\n  \"BookerContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\"\r\n} \r\n","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/events/CancelEventRegistration","description":"<p>Cancel the event registration or waitlist within Total e Integrated.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EventRegistrantID (List) *REQUIRED</td>\n<td>The unique registrant IDs you’d like to cancel. Use this to cancel specific event registrants.  <br />Example: 87bf30c-404e-4ebd-bbac-0b757c75aec4</td>\n</tr>\n<tr>\n<td>IsWaitlist *REQUIRED</td>\n<td>Whether or not the package being cancelled is for a waitlist.  <br />Example: false.</td>\n</tr>\n<tr>\n<td>BookerContactID *REQUIRED</td>\n<td>The unique identifier for the contact who is cancelling the event booking(s).  <br />Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsSuccess</td>\n<td>Indicates whether or not the package was successfully cancelled.  <br />Example: true</td>\n</tr>\n<tr>\n<td>Message</td>\n<td>If the API returned some details they will be displayed here.  <br />Example: null</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","events","CancelEventRegistration"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"85ef14f9-0290-4840-9cc9-98d3ac69470b","name":"CancelEventRegistration","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"EventRegistrantID\": \"4420f7d7-221b-412f-8993-ce743f862dd6\",\r\n  \"IsWaitlist\": \"false\",\r\n  \"BookerContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\"\r\n} \r\n","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/events/CancelEventRegistration"},"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"Message\": null,\n    \"Registrants\": [\n        {\n            \"ReferenceID\": \"93304E6C8588\",\n            \"ReservationID\": \"ba71f9c7-d894-4291-91ae-93304e6c8588\",\n            \"EventRegistrantID\": \"4420f7d7-221b-412f-8993-ce743f862dd6\",\n            \"ContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\",\n            \"FirstName\": \"Ian\",\n            \"LastName\": \"Robinson\",\n            \"Email\": \"Ian@TEI.com\",\n            \"PositionNUmber\": 1,\n            \"EventPackageUID\": \"c45a03be-bf8b-4b92-98f0-3fd3f292341b\"\n        }\n    ]\n}"}],"_postman_id":"898fbd7e-ffaf-4c8f-9ffa-8af7c7b8785c"},{"name":"ModifyEventRegistrant","id":"6e120b8d-05d5-4ccb-b03f-2bc6ebaf3ed4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"EventRegistrantID\": \"f61b4233-f881-4564-96ee-167662188208\",\r\n    \"BookerContactID\": \"346b1de3-9a56-47eb-80f5-efa9cb26a424\",\r\n    \"IsWaitlist\": false,\r\n    \"Registrant\": {\r\n        \"ContactID\": \"00000000-0000-0000-0000-000000000000\",\r\n        \"FirstName\": \"Frank\",\r\n        \"LastName\": \"Robinson\",\r\n        \"Email\": \"Frank@TEI.com\",\r\n        \"EventRegistrantNote\": \"Test Note.\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/events/ModifyEventBooking","description":"<p>Modifies an existing event booking. Permitted edits are limited to changing the selected contact on a package. To add an additional package use ‘BookEventPackages’ API and to cancel use ‘CancelEventRegistration’ API.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EventRegistrantID (List) *REQUIRED</td>\n<td>The unique registrant ID you’d like to modify. Use this to modify specific event registrants.  <br />Example: 598510BC-214B-44DB-BBE0-8821967C34EA</td>\n</tr>\n<tr>\n<td>IsWaitlist *REQUIRED</td>\n<td>Whether or not the package being modified is on the waitlist.  <br />Example: false.</td>\n</tr>\n<tr>\n<td>BookerContactID *REQUIRED</td>\n<td>The unique identifier for the contact who is modifying the booking.  <br />Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6</td>\n</tr>\n<tr>\n<td>Registrant:</td>\n<td>-</td>\n</tr>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact who is booking the event package.  <br />Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name of the contact who is booking the package.  <br />Example: John.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name of the contact who is booking the package.  <br />Example: Doe.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>The email address of the contact who is booking the package.  <br />Example: <a href=\"https://mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>The phone number of the contact who is booking the package.  <br />Example: 8886606131</td>\n</tr>\n<tr>\n<td>EventRegistrantNote</td>\n<td>Any notes saved for the event registrant. Available in WV1.98+</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Success</td>\n<td>Whether or not the event packages were successfully modified  <br />Example: true.</td>\n</tr>\n<tr>\n<td>Message</td>\n<td>Message explaining any errors that may have occurred.</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>The customer friendly identification for the booking. For events this will be the last 12 digits of the ReservationID.  <br />Please note, if 2 or more types of packages booked at the same time the response will list multiple Reference IDs.  <br />Example: ffb4cc6345db.</td>\n</tr>\n<tr>\n<td>ReservationID</td>\n<td>The unique identifier for the reservation within TEI.  <br />Please note, if 2 or more types of packages booked at the same time the response will list multiple Reservation IDs.  <br />Example: 94133134-1312-4050-8ef5-ffb4cc6345db.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","events","ModifyEventBooking"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"af1baa26-65da-4e5c-a4b7-d4f74f08bf80","name":"ModifyEventRegistrant","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"EventRegistrantID\": \"f61b4233-f881-4564-96ee-167662188208\",\r\n    \"BookerContactID\": \"346b1de3-9a56-47eb-80f5-efa9cb26a424\",\r\n    \"IsWaitlist\": false,\r\n    \"Registrant\": {\r\n        \"ContactID\": \"00000000-0000-0000-0000-000000000000\",\r\n        \"FirstName\": \"Frank\",\r\n        \"LastName\": \"Robinson\",\r\n        \"Email\": \"Frank@TEI.com\",\r\n        \"EventRegistrantNote\": \"Test Note.\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/booking/events/ModifyEventBooking"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Success\": true,\r\n    \"Message\": null,\r\n    \"ReferenceID\": [\"ffb4cc6345db\"],\r\n    \"ReservationID\": [\"94133134-1312-4050-8ef5-ffb4cc6345db\"]\r\n}"}],"_postman_id":"6e120b8d-05d5-4ccb-b03f-2bc6ebaf3ed4"},{"name":"GetBOEventsBulk","id":"6bb7f8bc-abe0-4018-88e9-2b9f71eca458","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/booking/events/BOEventsBulk?SessionID=&DateTime=&PageNumber=&PageSize=","description":"<p>Provides a list of the events from the Total e Integrated Back Office application.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SessionID REQUIRED</td>\n<td>Pass your own unique schema to the API.  <br />New ID - TEI will return any modifications made since your last request.  <br />Previously Used ID - TEI will return modifications from the session ID. Use this in case the first attempt failed. Note, TEI will store session ID history for 2 days.  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>DateTime REQUIRED</td>\n<td>The date and time of last data pull, so TEI can send the modified data since the last pull save point.  <br />Example: 2023-09-02T10:20:00</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td>The page of records to return.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>The number of records to return per page.  <br />Example: 25.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"response-elements\">Response Elements</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Events (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>EventID</td>\n<td>The unique identifier for the event.  <br />Example: TOUR30001948</td>\n</tr>\n<tr>\n<td>EventUID</td>\n<td>The unique identifier for the event used in the database. Used to book to the event.  <br />Example: 598510BC-214B-44DB-BBE0-8821967C34EA</td>\n</tr>\n<tr>\n<td>EventName</td>\n<td>The customer-friendly name for the event.  <br />Example: Silver Coast Tournament</td>\n</tr>\n<tr>\n<td>EventTypeID</td>\n<td>The unique identifier for the event type from back office.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>EventTypeName</td>\n<td>The configured event type from back office for the event.  <br />Example: Tournament</td>\n</tr>\n<tr>\n<td>EventStartDate</td>\n<td>The date and time the event begins.  <br />Example: 2023-05-24T09:00:00</td>\n</tr>\n<tr>\n<td>EventEndDate</td>\n<td>The date and time the event ends.  <br />Example: 2023-05-24T18:00:00</td>\n</tr>\n<tr>\n<td>IsDeleted</td>\n<td>Indicates if the event has since been deleted.  <br />Example: False.</td>\n</tr>\n<tr>\n<td>Packages (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>PackageID</td>\n<td>The unique identifier given to the package.  <br />Example: REGPACKAGE01</td>\n</tr>\n<tr>\n<td>PackageDescription</td>\n<td>The longer description given to the event package.  <br />Example: Tournament participant</td>\n</tr>\n<tr>\n<td>PackageUID</td>\n<td>The unique identifier given to the package in the database. Used for booking the package.  <br />Example: 738AFD41-E250-4C17-BAD7-97F139795146</td>\n</tr>\n<tr>\n<td>PackageGratuity</td>\n<td>The gratuity amount for this package.  <br />Example: 5.5</td>\n</tr>\n<tr>\n<td>PackageSubtotal</td>\n<td>The price to book the package before taxes.  <br />Example: 40</td>\n</tr>\n<tr>\n<td>PackageTax</td>\n<td>Amount of tax owed to book this package.  <br />Example: 4</td>\n</tr>\n<tr>\n<td>PackageTotal</td>\n<td>The total price to book this package inclusive of taxes and gratuity.  <br />Example: 49.5</td>\n</tr>\n<tr>\n<td>PackagesSold</td>\n<td>The number of packages sold.  <br />Example: 29</td>\n</tr>\n<tr>\n<td>TotalAvailable</td>\n<td>The maximum number of packages available for this event.  <br />Example: 50</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","events","BOEventsBulk"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - Pass your own unique schema to the API.<br />New ID - TEI will return any modifications made since your last request.<br />Previously Used ID - TEI will return modifications from the session ID. Use this in case the first attempt failed. Note, TEI will store session ID history for 2 days.<br />Example: ca498010-bf53-11ec-9d64-0242ac120002</p>\n","type":"text/plain"},"key":"SessionID","value":""},{"description":{"content":"<p>REQUIRED - The date and time of last data pull, so TEI can send the modified data since the last pull save point.<br />Example: 2023-09-02T10:20:00</p>\n","type":"text/plain"},"key":"DateTime","value":""},{"description":{"content":"<p>The page of records to return.<br />Example: 1.</p>\n","type":"text/plain"},"key":"PageNumber","value":""},{"description":{"content":"<p>The number of records to return per page. Example: 25.</p>\n","type":"text/plain"},"key":"PageSize","value":""}],"variable":[]}},"response":[{"id":"067d7fa2-622f-4b9d-b8b1-0266fd614f4d","name":"GetBOEventsBulk","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/api/v1/booking/events/BOEventsBulk?SessionID=&DateTime=&PageNumber=&PageSize=","host":["{{base_url}}"],"path":["api","v1","booking","events","BOEventsBulk"],"query":[{"key":"SessionID","value":"","description":"REQUIRED - Pass your own unique schema to the API.  \nNew ID - TEI will return any modifications made since your last request.  \nPreviously Used ID - TEI will return modifications from the session ID. Use this in case the first attempt failed. Note, TEI will store session ID history for 2 days.  \nExample: ca498010-bf53-11ec-9d64-0242ac120002"},{"key":"DateTime","value":"","description":"REQUIRED - The date and time of last data pull, so TEI can send the modified data since the last pull save point.  \nExample: 2023-09-02T10:20:00"},{"key":"PageNumber","value":"","description":"The page of records to return.  \nExample: 1."},{"key":"PageSize","value":"","description":"The number of records to return per page. Example: 25."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Events\": [\r\n        {\r\n            \"EventID\": \"EVT00002530\",\r\n            \"EventUID\": \"3918144f-3ec7-4872-b620-290c16afef03\",\r\n            \"EventName\": \"Glow Tubing and S'mores at The Barn\",\r\n            \"EventTypeID\": 7,\r\n            \"EventTypeName\": \"Club Sponsored\",\r\n            \"EventStartDate\": \"2023-01-15T00:00:00\",\r\n            \"EventEndDate\": \"2023-01-15T21:00:00\",\r\n            \"IsDeleted\": false,\r\n            \"Packages\": [\r\n                {\r\n                    \"PackageID\": \"GLOW TUBE\",\r\n                    \"PackageDescription\": \"Glow Tubing\",\r\n                    \"PackageUID\": \"5a79754f-cc96-4bea-a809-8f5ff96d2fd4\",\r\n                    \"PackageGratuity\": 4.86,\r\n                    \"PackageSubtotal\": 35.00,\r\n                    \"PackageTax\": 2.00,\r\n                    \"PackageTotal\": 2427.88,\r\n                    \"PackagesSold\": 73,\r\n                    \"TotalAvailable\": 50\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"6bb7f8bc-abe0-4018-88e9-2b9f71eca458"},{"name":"GetBOEventDetails","id":"311c86bc-6697-4991-8f75-9f82689b4ad0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/booking/events/BOEventDetails?EventID=EVT00000185","description":"<p>Provides details for an specific event from the Total e Integrated Back Office application.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EventID REQUIRED</td>\n<td>The unique identifier for the event.  <br />Example: EVT0000508</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EventID</td>\n<td>The unique identifier for the event.  <br />Example: EVT0000468</td>\n</tr>\n<tr>\n<td>EventUID</td>\n<td>The unique identifier for the event used in the database. Used to book to the event.  <br />Example: 598510BC-214B-44DB-BBE0-8821967C34EA</td>\n</tr>\n<tr>\n<td>EventName</td>\n<td>The customer-friendly name for the event.  <br />Example: Silver Coast Tournament</td>\n</tr>\n<tr>\n<td>EventTypeID</td>\n<td>The unique identifier for the event type from back office.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>EventTypeName</td>\n<td>The configured event type from back office for the event.  <br />Example: Tournament</td>\n</tr>\n<tr>\n<td>EventStartDate</td>\n<td>The date and time the event begins.  <br />Example: 2023-05-24T09:00:00</td>\n</tr>\n<tr>\n<td>EventEndDate</td>\n<td>The date and time the event ends.  <br />Example: 2023-05-24T18:00:00</td>\n</tr>\n<tr>\n<td>IsDeleted</td>\n<td>Indicates if the event has been deleted.  <br />Example: False.</td>\n</tr>\n<tr>\n<td>Packages (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>PackageID</td>\n<td>The unique identifier given to the package.  <br />Example: REGPACKAGE01</td>\n</tr>\n<tr>\n<td>PackageDescription</td>\n<td>The longer description given to the event package.  <br />Example: Tournament participant</td>\n</tr>\n<tr>\n<td>PackageUID</td>\n<td>The unique identifier given to the package in the database. Used for booking the package.  <br />Example: 738AFD41-E250-4C17-BAD7-97F139795146</td>\n</tr>\n<tr>\n<td>PackageGratuity</td>\n<td>The gratuity amount for this package.  <br />Example: 5.5</td>\n</tr>\n<tr>\n<td>PackageSubtotal</td>\n<td>The price to book the package before taxes.  <br />Example: 40</td>\n</tr>\n<tr>\n<td>PackageTax</td>\n<td>Amount of tax owed to book this package.  <br />Example: 4</td>\n</tr>\n<tr>\n<td>PackageTotal</td>\n<td>The total price to book this package inclusive of taxes and gratuity.  <br />Example: 49.5</td>\n</tr>\n<tr>\n<td>PackagesSold</td>\n<td>The number of packages sold.  <br />Example: 29</td>\n</tr>\n<tr>\n<td>TotalAvailable</td>\n<td>The maximum number of packages available for this event.  <br />Example: 50</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","booking","events","BOEventDetails"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED -The unique identifier for the event. Example: EVT0000508</p>\n","type":"text/plain"},"key":"EventID","value":"EVT00000185"}],"variable":[]}},"response":[{"id":"e98ad9cc-6f16-4e4d-9c4d-8b4e27bd249b","name":"GetBOEventDetails","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/api/v1/booking/events/BOEventDetails?EventID=EVT00000185","host":["{{base_url}}"],"path":["api","v1","booking","events","BOEventDetails"],"query":[{"key":"EventID","value":"EVT00000185","description":"REQUIRED -The unique identifier for the event. Example: EVT0000508"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"BOEventDetails\": [\r\n        {\r\n            \"EventID\": \"EVT00000185\",\r\n            \"EventUID\": \"4f171274-54c0-43c8-8734-dc30576b9ca4\",\r\n            \"EventName\": \"Fall Round Up: Oktoberfest\",\r\n            \"EventTypeID\": 8,\r\n            \"EventTypeName\": \"Social Events\",\r\n            \"EventStartDate\": \"2024-10-01T00:00:00\",\r\n            \"EventEndDate\": \"2026-10-01T16:40:00\",\r\n            \"IsDeleted\": false,\r\n            \"Packages\": [\r\n                {\r\n                    \"PackageID\": \"FALLROUNDUP\",\r\n                    \"PackageDescription\": \"Fall Round Up - Oktoberfest Adult (21+)\",\r\n                    \"PackageUID\": \"c45a03be-bf8b-4b92-98f0-3fd3f292341b\",\r\n                    \"PackageGratuity\": 0.00,\r\n                    \"PackageSubtotal\": 160.00,\r\n                    \"PackageTax\": 16.00,\r\n                    \"PackageTotal\": 176.00,\r\n                    \"PackagesSold\": 39,\r\n                    \"TotalAvailable\": 400\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"311c86bc-6697-4991-8f75-9f82689b4ad0"}],"id":"b0c72ede-a0e5-41c2-b4ab-dd935f8744f0","description":"<p>Total e Integrated provides a comprehensive set of APIs for managing event bookings, including holding, booking, modifying, confirming, and cancelling reservations.</p>\n","_postman_id":"b0c72ede-a0e5-41c2-b4ab-dd935f8744f0"},{"name":"Food & Beverage","item":[{"name":"GetMenuPositioningTemplates","id":"8c66b0c8-384d-40eb-8c52-d12bd4797b53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/POS/FoodAndBeverage/MenuItems/MenuPositioningTemplates?TerminalID=DIWANPOS4","description":"<p>Returns a list of menu positioning templates for a specified restaurant. Menu positioning templates allow restaurants to display different menus based on day of week and time of day (e.g., breakfast, lunch, dinner).  </p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.100.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TerminalID REQUIRED</td>\n<td>The unique POS terminal identifier for the terminal the menu positioning templates should be pulled for. The client should have provided you with a terminal ID.  <br />Example: POS001.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TemplateID</td>\n<td>The unique identifier for the menu positioning template.  <br />Example: DINNER_SCHEDULE_001.</td>\n</tr>\n<tr>\n<td>TemplateName</td>\n<td>The name is provided for the menu positioning template.  <br />Example: Dinner Schedule.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","name":"Food & Beverage","type":"folder"}},"urlObject":{"path":["api","v1","POS","FoodAndBeverage","MenuItems","MenuPositioningTemplates"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique POS terminal identifier for the terminal the menu positioning templates should be pulled for. The client should have provided you with a terminal ID.  </p>\n","type":"text/plain"},"key":"TerminalID","value":"DIWANPOS4"}],"variable":[]}},"response":[{"id":"7b381a76-b45a-409a-904f-46358f50527d","name":"GetMenuPositioningTemplates","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{base_url}}/api/v1/POS/FoodAndBeverage/MenuItems/GetMenuSections?TerminalID=FBPOS0004","host":["{{base_url}}"],"path":["api","v1","POS","FoodAndBeverage","MenuItems","GetMenuSections"],"query":[{"key":"TerminalID","value":"FBPOS0004","description":"REQUIRED - The unique POS terminal identifier for the terminal the templates should be pulled for. The client should have provided you with a terminal ID.\nExample: CoastalKitchenPOS."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"MenuPositioningTemplates\": [\r\n        {\r\n            \"TemplateID\": \"DINNER_SCHEDULE_001\",\r\n            \"TemplateName\": \"Dinner Schedule\"\r\n        },\r\n        {\r\n            \"TemplateID\": \"BREAKFAST_SCHEDULE_001.\",\r\n            \"TemplateName\": \"Breakfast Schedule\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"8c66b0c8-384d-40eb-8c52-d12bd4797b53"},{"name":"GetMenuSection","id":"05e351e6-8a9b-44f0-8829-93d635ba8dfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/POS/FoodAndBeverage/MenuItems/GetMenuSections?RestaurantID=DIWANCAFE&TerminalID=DIWANPOS4&OrderTime=2026-04-21T10:20:00&TemplateID=","description":"<p>Returns a list of menu sections (i.e. categories) for a specified restaurant.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.100.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RestaurantID REQUIRED</td>\n<td>The unique restaurant identifier for the restaurant you’d like to pull menu sections for.  <br />Example: COASTALREST001.</td>\n</tr>\n<tr>\n<td>TerminalID REQUIRED</td>\n<td>The unique POS terminal identifier for the terminal the sections should be pulled for. The client should have provided you with a terminal ID.  <br />Example: POS001.</td>\n</tr>\n<tr>\n<td>OrderTime</td>\n<td>The date and time to retrieve menu sections for, based on the configured menu schedules. If left blank, the system will use the current date and time.  <br />Example: 2026-02-25T18:30:00.</td>\n</tr>\n<tr>\n<td>TemplateID</td>\n<td>The unique menu positioning template identifier to retrieve sections and items for. If provided, the system will return the sections and items for the specified schedule, ignoring any OrderTime parameter. If left blank, the system will use the OrderTime parameter or the current date and time if OrderTime is not provided.  <br />Example: DINNER_SCHEDULE_001.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MenuSectionID</td>\n<td>The unique identifier for the menu section.  <br />Example: CLMAINS.</td>\n</tr>\n<tr>\n<td>MenuSectionDescription</td>\n<td>The customer-friendly name is provided in the menu section.  <br />Example: Mains.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","name":"Food & Beverage","type":"folder"}},"urlObject":{"path":["api","v1","POS","FoodAndBeverage","MenuItems","GetMenuSections"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique restaurant identifier for the restaurant you’d like to pull menu sections for.\nExample: COASTALREST001.</p>\n","type":"text/plain"},"key":"RestaurantID","value":"DIWANCAFE"},{"description":{"content":"<p>REQUIRED - The unique POS terminal identifier for the terminal the sections should be pulled for. The client should have provided you with a terminal ID.\nExample: CoastalKitchenPOS.</p>\n","type":"text/plain"},"key":"TerminalID","value":"DIWANPOS4"},{"description":{"content":"<p>The date and time to retrieve menu sections for, based on the configured menu schedules. If left blank, the system will use the current date and time.</p>\n","type":"text/plain"},"key":"OrderTime","value":"2026-04-21T10:20:00"},{"description":{"content":"<p>The unique menu schedule identifier to retrieve sections and items for. If provided, the system will return the sections and items for the specified schedule, ignoring any OrderTime parameter. If left blank, the system will use the OrderTime parameter or the current date and time if OrderTime is not provided.</p>\n","type":"text/plain"},"key":"TemplateID","value":""}],"variable":[]}},"response":[{"id":"d907705b-c543-4bb5-879c-a33e37014fa2","name":"GetMenuSection","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{base_url}}/api/v1/POS/FoodAndBeverage/MenuItems/GetMenuSections?RestaurantID=ISLANDERREST001&TerminalID=FBPOS0004&OrderTime=2026-02-25T10:20:00&TemplateID=DINNER_SCHEDULE_001","host":["{{base_url}}"],"path":["api","v1","POS","FoodAndBeverage","MenuItems","GetMenuSections"],"query":[{"key":"RestaurantID","value":"ISLANDERREST001","description":"REQUIRED - The unique restaurant identifier for the restaurant you’d like to pull menu items for.\nExample: COASTALREST001."},{"key":"TerminalID","value":"FBPOS0004","description":"REQUIRED - The unique POS terminal identifier for the terminal the sections should be pulled for. The client should have provided you with a terminal ID.\nExample: CoastalKitchenPOS."},{"key":"OrderTime","value":"2026-02-25T10:20:00","description":"The date and time to retrieve menu sections for, based on the configured menu schedules. If left blank, the system will use the current date and time.","type":"text"},{"key":"TemplateID","value":"DINNER_SCHEDULE_001","description":"The unique menu schedule identifier to retrieve sections and items for. If provided, the system will return the sections and items for the specified schedule, ignoring any OrderTime parameter. If left blank, the system will use the OrderTime parameter or the current date and time if OrderTime is not provided.","type":"text"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"MenuSections\": [\r\n        {\r\n            \"MenuSectionID\": \"IB_ALACARTE\",\r\n            \"MenuSectionDescription\": \"A la Carte\"\r\n        },\r\n        {\r\n            \"MenuSectionID\": \"SHAREDADMIN\",\r\n            \"MenuSectionDescription\": \"Admin\"\r\n        },\r\n        {\r\n            \"MenuSectionID\": \"IB_APPS\",\r\n            \"MenuSectionDescription\": \"Appetizers\"\r\n        },\r\n        {\r\n            \"MenuSectionID\": \"IB_WINEBTB\",\r\n            \"MenuSectionDescription\": \"By The Bottle\"\r\n        },\r\n        {\r\n            \"MenuSectionID\": \"IB_ENTREES\",\r\n            \"MenuSectionDescription\": \"Entrees\"\r\n        },\r\n        {\r\n            \"MenuSectionID\": \"FAMSTYLE\",\r\n            \"MenuSectionDescription\": \"Family Style\"\r\n        },\r\n        {\r\n            \"MenuSectionID\": \"IB_PASTAS\",\r\n            \"MenuSectionDescription\": \"Pasta\"\r\n        },\r\n        {\r\n            \"MenuSectionID\": \"IB_SOUPANDSALAD\",\r\n            \"MenuSectionDescription\": \"Soup and Salads\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"05e351e6-8a9b-44f0-8829-93d635ba8dfa"},{"name":"GetMenuItem","id":"674c23d4-ac9b-48f0-a8ac-eecde4be9bb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/POS/FoodAndBeverage/MenuItems?RestaurantID=COASTALREST001&TerminalID=FBPOS0009&MenuSectionID=&OrderTime=&TemplateID=","description":"<p>Returns a list of menu items for the client database restaurant.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.100.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RestaurantID REQUIRED</td>\n<td>The unique restaurant identifier for the restaurant you’d like to pull menu items for.  <br />Example: COASTALREST001.</td>\n</tr>\n<tr>\n<td>TerminalID REQUIRED</td>\n<td>The unique POS terminal identifier for the terminal the menu items should be pulled for. The client should have provided you with a terminal ID.  <br />Example: CoastalKitchenPOS.</td>\n</tr>\n<tr>\n<td>MenuSectionID REQUIRED</td>\n<td>The unique menu section identifier for the menu sections you’d like to pull menu items for. If left blank, all menu sections are pulled and retrieved.  <br />Example: Mains, Apps</td>\n</tr>\n<tr>\n<td>OrderTime</td>\n<td>The date and time to retrieve menu items for, based on the configured menu schedules. If left blank, the system will use the current date and time.  <br />Example: 2026-02-25T18:30:00.</td>\n</tr>\n<tr>\n<td>TemplateID</td>\n<td>The unique menu positioning template identifier to retrieve sections and items for. If provided, the system will return the sections and items for the specified schedule, ignoring any OrderTime parameter. If left blank, the system will use the OrderTime parameter or the current date and time if OrderTime is not provided.  <br />Example: DINNER_SCHEDULE_001.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ItemID</td>\n<td>The unique identifier for the menu item.  <br />Example: CLBURGER.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>A customer-friendly name is provided to the menu item.  <br />Example: Club Burger</td>\n</tr>\n<tr>\n<td>Price</td>\n<td>The price before taxes for the menu item.  <br />Example: 15.00</td>\n</tr>\n<tr>\n<td>ItemCount</td>\n<td>The remaining quantity for the menu item.  <br />Example: 5.</td>\n</tr>\n<tr>\n<td>IsLimitedQuantity</td>\n<td>Whether or not the ItemCount should be respected (i.e. if ItemCount = 0 the item is sold out).  <br />Example: True</td>\n</tr>\n<tr>\n<td>ItemColor</td>\n<td>The button hex color configured for this menu item.  <br />Example: #095ECC.</td>\n</tr>\n<tr>\n<td>Image</td>\n<td>The image file for the menu item.  <br />Example: <a href=\"https://filerepository.totaleintegrated.com/Repository/2021/08/18/132108961/4d7e5aa8-ff5b-413c-b67e-c36b844c382c.jpg\">https://filerepository.totaleintegrated.com/Repository/2021/08/18/132108961/4d7e5aa8-ff5b-413c-b67e-c36b844c382c.jpg</a></td>\n</tr>\n<tr>\n<td>ItemShortcode</td>\n<td>A five-character alphanumeric code for the menu item.  <br />Example: CBURG.</td>\n</tr>\n<tr>\n<td>Menu Section (List)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>PriceOverride</td>\n<td>Indicates if the item can have a custom price assigned to it when ordered. 0 is false</td>\n</tr>\n<tr>\n<td>PrintClass</td>\n<td>If the item has a custom print classification assigned the ID will display.  <br />Example: PizzaOven.</td>\n</tr>\n<tr>\n<td>ModifierCount</td>\n<td>Indicates whether or not the menu item has modifiers. If 0, the item has no modifiers. If 1 or more, the menu item does have modifiers which will require the use of Get Modifiers API.  <br />Example: 3</td>\n</tr>\n<tr>\n<td>UniversalModifierCount</td>\n<td>Indicates if the item uses universal modifiers. If 0, the item has no universal modifiers. If 1 or more, the menu item does have universal modifiers. Universal modifiers are a global list of modifiers for all F&amp;B items.  <br />Example: 2.</td>\n</tr>\n<tr>\n<td>HasModifiers</td>\n<td>Indicates if the menu item has modifiers via true or false.  <br />Example: true.</td>\n</tr>\n<tr>\n<td>ItemSummary</td>\n<td>A short, customer-friendly description of the menu item used for display in menus, mobile apps, and integrations. The summary should briefly describe the item and key ingredients.  <br />Example: Crispy bite-sized shrimp tossed in Cajun seasoning and served with a zesty dipping sauce.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","name":"Food & Beverage","type":"folder"}},"urlObject":{"path":["api","v1","POS","FoodAndBeverage","MenuItems"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique restaurant identifier for the restaurant you’d like to pull menu items for.\nExample: COASTALREST001.</p>\n","type":"text/plain"},"key":"RestaurantID","value":"COASTALREST001"},{"description":{"content":"<p>REQUIRED - The unique POS terminal identifier for the terminal the menu items should be pulled for. The client should have provided you with a terminal ID.\nExample: CoastalKitchenPOS.</p>\n","type":"text/plain"},"key":"TerminalID","value":"FBPOS0009"},{"description":{"content":"<p>REQUIRED - The unique menu section identifier for the menu sections you’d like to pull menu items for. If left blank, all menu sections are pulled and retrieved.\nExample: Mains, Apps</p>\n","type":"text/plain"},"key":"MenuSectionID","value":""},{"description":{"content":"<p>The date and time to retrieve menu items for, based on the configured menu schedules. If left blank, the system will use the current date and time.  </p>\n","type":"text/plain"},"key":"OrderTime","value":""},{"description":{"content":"<p>The unique menu schedule identifier to retrieve sections and items for. If provided, the system will return the sections and items for the specified schedule, ignoring any OrderTime parameter. If left blank, the system will use the OrderTime parameter or the current date and time if OrderTime is not provided.  </p>\n","type":"text/plain"},"key":"TemplateID","value":""}],"variable":[]}},"response":[{"id":"61af1f75-54ff-47fd-a49c-38e1eb78c0f4","name":"GetMenuItem","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{base_url}}/api/v1/POS/FoodAndBeverage/MenuItems?RestaurantID=DIWANCAFE&TerminalID=DIWANPOS4&MenuSectionID=DSTARTERS&OrderTime=&TemplateID=ATest080","host":["{{base_url}}"],"path":["api","v1","POS","FoodAndBeverage","MenuItems"],"query":[{"key":"RestaurantID","value":"DIWANCAFE","description":"REQUIRED - The unique restaurant identifier for the restaurant you’d like to pull menu items for.\nExample: COASTALREST001."},{"key":"TerminalID","value":"DIWANPOS4","description":"REQUIRED - The unique POS terminal identifier for the terminal the menu items should be pulled for. The client should have provided you with a terminal ID.\nExample: CoastalKitchenPOS."},{"key":"MenuSectionID","value":"DSTARTERS","description":"REQUIRED - The unique menu section identifier for the menu sections you’d like to pull menu items for. If left blank, all menu sections are pulled and retrieved.\nExample: Mains, Apps"},{"key":"OrderTime","value":"","description":"The date and time to retrieve menu items for, based on the configured menu schedules. If left blank, the system will use the current date and time.  "},{"key":"TemplateID","value":"ATest080","description":"The unique menu schedule identifier to retrieve sections and items for. If provided, the system will return the sections and items for the specified schedule, ignoring any OrderTime parameter. If left blank, the system will use the OrderTime parameter or the current date and time if OrderTime is not provided.  "}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-encoding","value":"br"},{"key":"vary","value":"Accept-Encoding"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"api-supported-versions","value":"1.0"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"date","value":"Wed, 11 Mar 2026 18:45:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"MenuItems\": [\n        {\n            \"ItemID\": \"209\",\n            \"Description\": \"Universal Modifiers\",\n            \"Price\": 10,\n            \"ItemCount\": 186,\n            \"ItemColor\": \"#400080\",\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"UNIM\",\n            \"MenuSectionsID\": [\n                \"DMAINS\",\n                \"DSHAREABLES\",\n                \"DSTARTERS\",\n                \"DWINES\"\n            ],\n            \"PriceOverride\": 2,\n            \"AllowPOSChanging\": true,\n            \"PrintClass\": null,\n            \"ModifierCount\": 2,\n            \"UniversalModifierCount\": 3970,\n            \"HasModifiers\": true,\n            \"IsLimitedQuantity\": true,\n            \"ItemSummary\": \"general side items \\\"great test\\\"\"\n        },\n        {\n            \"ItemID\": \"CHEERIOS\",\n            \"Description\": \"Cheerios\",\n            \"Price\": 5,\n            \"ItemCount\": 0,\n            \"ItemColor\": \"#FF8040\",\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"CHEER\",\n            \"MenuSectionsID\": [\n                \"DMAINS\",\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 0,\n            \"AllowPOSChanging\": false,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": true,\n            \"ItemSummary\": \"\"\n        },\n        {\n            \"ItemID\": \"CUSTOM_ITEM_5\",\n            \"Description\": \"Custom Item w Modifiers\",\n            \"Price\": 0,\n            \"ItemCount\": 0,\n            \"ItemColor\": null,\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"CUST\",\n            \"MenuSectionsID\": [\n                \"DMAINS\",\n                \"DSHAREABLES\",\n                \"DSTARTERS\",\n                \"DWINES\"\n            ],\n            \"PriceOverride\": 2,\n            \"AllowPOSChanging\": true,\n            \"PrintClass\": null,\n            \"ModifierCount\": 2,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": true,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"DN_CUSTOM\",\n            \"Description\": \"Custom Item\",\n            \"Price\": 0,\n            \"ItemCount\": 0,\n            \"ItemColor\": null,\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"CUST\",\n            \"MenuSectionsID\": [\n                \"DMAINS\",\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 2,\n            \"AllowPOSChanging\": true,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"DN_CUSTOM_11\",\n            \"Description\": \"Custom Item New\",\n            \"Price\": 0,\n            \"ItemCount\": 0,\n            \"ItemColor\": null,\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"CUSTO\",\n            \"MenuSectionsID\": [\n                \"DMAINS\",\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 2,\n            \"AllowPOSChanging\": true,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"DN_CUSTOM_12\",\n            \"Description\": \"Custom - No CHNG - No OVRIDE\",\n            \"Price\": 0,\n            \"ItemCount\": 0,\n            \"ItemColor\": null,\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"CUSTO\",\n            \"MenuSectionsID\": [\n                \"DMAINS\",\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 0,\n            \"AllowPOSChanging\": false,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"DN_CUSTOM_13\",\n            \"Description\": \"Custom - No CHNG - Allow OVRIDE\",\n            \"Price\": 0,\n            \"ItemCount\": 0,\n            \"ItemColor\": null,\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"CUSTO\",\n            \"MenuSectionsID\": [\n                \"DMAINS\",\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 1,\n            \"AllowPOSChanging\": false,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"DN_CUSTOM_14\",\n            \"Description\": \"Custom - No CHNG - Prompt OVRIDE\",\n            \"Price\": 0,\n            \"ItemCount\": 0,\n            \"ItemColor\": null,\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"CUSTO\",\n            \"MenuSectionsID\": [\n                \"DMAINS\",\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 2,\n            \"AllowPOSChanging\": false,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"DN_CUSTOM_15\",\n            \"Description\": \"Custom - Yes CHNG - Allow OVRIDE\",\n            \"Price\": 0,\n            \"ItemCount\": 0,\n            \"ItemColor\": null,\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"CUSTO\",\n            \"MenuSectionsID\": [\n                \"DMAINS\",\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 1,\n            \"AllowPOSChanging\": true,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"DN_CUSTOM_16\",\n            \"Description\": \"Custom - Yes CHNG - Prompt OVRIDE\",\n            \"Price\": 0,\n            \"ItemCount\": 0,\n            \"ItemColor\": null,\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"CUSTO\",\n            \"MenuSectionsID\": [\n                \"DMAINS\",\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 2,\n            \"AllowPOSChanging\": true,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"DN_KANAFEH\",\n            \"Description\": \"Kanafeh\",\n            \"Price\": 9,\n            \"ItemCount\": 0,\n            \"ItemColor\": \"#59ACFF\",\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"KANAF\",\n            \"MenuSectionsID\": [\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 0,\n            \"AllowPOSChanging\": false,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": true,\n            \"ItemSummary\": \"A Middle Eastern classic that’s equal parts indulgent and irresistible. Layers of buttery (shredded) phyllo pastry embrace a rich, melted cheese filling, all soaked in fragrant orange blossom syrup and topped with a sprinkle of crushed pistachios. Served warm for that perfect contrast of crispy and creamy in every bite.\"\n        },\n        {\n            \"ItemID\": \"DN_PITA\",\n            \"Description\": \"Pita Bread\",\n            \"Price\": 5,\n            \"ItemCount\": 0,\n            \"ItemColor\": \"#0E63D1\",\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"PITAB\",\n            \"MenuSectionsID\": [\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 0,\n            \"AllowPOSChanging\": false,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"DN_SAFRICE\",\n            \"Description\": \"Steamed Saffron Rice\",\n            \"Price\": 10,\n            \"ItemCount\": 0,\n            \"ItemColor\": \"#0E63D1\",\n            \"ItemImage\": null,\n            \"ItemShortcode\": null,\n            \"MenuSectionsID\": [\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 0,\n            \"AllowPOSChanging\": false,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"DN_TRIO\",\n            \"Description\": \"Trio Dip\",\n            \"Price\": 10,\n            \"ItemCount\": 0,\n            \"ItemColor\": \"#1D72E0\",\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"3-DIP\",\n            \"MenuSectionsID\": [\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 0,\n            \"AllowPOSChanging\": false,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"DNHUMMUSGR\",\n            \"Description\": \"Hummus with Garlic\",\n            \"Price\": 9,\n            \"ItemCount\": 0,\n            \"ItemColor\": \"#0047B5\",\n            \"ItemImage\": null,\n            \"ItemShortcode\": null,\n            \"MenuSectionsID\": [\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 0,\n            \"AllowPOSChanging\": false,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"SHAHAB PIZZA\",\n            \"Description\": \"Shawarma Pizza\",\n            \"Price\": 10,\n            \"ItemCount\": 0,\n            \"ItemColor\": \"#FF8000\",\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"PIZZA\",\n            \"MenuSectionsID\": [\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 2,\n            \"AllowPOSChanging\": false,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        },\n        {\n            \"ItemID\": \"TAXINCLUDED2\",\n            \"Description\": \"Tax Included 2\",\n            \"Price\": 100,\n            \"ItemCount\": 0,\n            \"ItemColor\": \"#FF8000\",\n            \"ItemImage\": null,\n            \"ItemShortcode\": \"TAXIN\",\n            \"MenuSectionsID\": [\n                \"DMAINS\",\n                \"DSHAREABLES\",\n                \"DSTARTERS\"\n            ],\n            \"PriceOverride\": 1,\n            \"AllowPOSChanging\": false,\n            \"PrintClass\": null,\n            \"ModifierCount\": 0,\n            \"UniversalModifierCount\": 0,\n            \"HasModifiers\": false,\n            \"IsLimitedQuantity\": false,\n            \"ItemSummary\": null\n        }\n    ]\n}"}],"_postman_id":"674c23d4-ac9b-48f0-a8ac-eecde4be9bb7"},{"name":"GetModifiers","id":"1f49fb8e-6d5b-4f6f-8834-1ca19b217972","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/POS/FoodAndBeverage/Modifiers?RestaurantID=ISLANDERREST001&ItemID=IB_PASTAS0003","description":"<p>Returns a list of modifiers for a selected menu item.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.92.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RestaurantID REQUIRED</td>\n<td>The unique restaurant identifier for the restaurant you’d like to pull an item modifier for.  <br />Example: CoastalLounge.</td>\n</tr>\n<tr>\n<td>ItemID REQUIRED</td>\n<td>The unique identifier for the menu item.  <br />Example: CLBURGER.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MenuItemDescription</td>\n<td>The customer-friendly name provided to the menu item.  <br />Example: Coastal Lounge Burger.</td>\n</tr>\n<tr>\n<td>Modifiers (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>ModifierID</td>\n<td>The unique identifier for the modifier.  <br />Example: CLSIDES.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>The customer-friendly name provided to the modifier.  <br />Example: Sides.</td>\n</tr>\n<tr>\n<td>ForceChoice</td>\n<td>Whether or not a selection must be made for the modifier.  <br />Example: True</td>\n</tr>\n<tr>\n<td>OrderIndex</td>\n<td>The order in which the modifiers should be shown.  <br />Example: 1</td>\n</tr>\n<tr>\n<td>Alternatives (List):</td>\n<td>Alternatives are a list of possible selections within a modifier where only one may be selected.</td>\n</tr>\n<tr>\n<td>AlternativeID</td>\n<td>The unique identifier for the alternative  <br />Example: CLFries</td>\n</tr>\n<tr>\n<td>Quantity</td>\n<td>Example: 1</td>\n</tr>\n<tr>\n<td>AddPrice</td>\n<td>If the item has an additional charge it will be displayed.  <br />Example: 1.00</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>The customer-friendly name provided to the alternative.  <br />Example: Fries</td>\n</tr>\n<tr>\n<td>UOfM</td>\n<td>The unit of measure for the alternative.  <br />Example: EACH</td>\n</tr>\n<tr>\n<td>Options (List):  <br />Options nested within an alternative*</td>\n<td>If an alternative has nested options, they will be listed within the alternative. Results include OptionID, Quantity, AddPrice, Description, UofM, Default, and IsSelected.  <br />Example: Small, Medium, Large, etc.</td>\n</tr>\n<tr>\n<td>Options (List):</td>\n<td>Options are a list of modifiers where multiple can be selected.</td>\n</tr>\n<tr>\n<td>OptionID</td>\n<td>The unique identifier for the option  <br />Example: CLSauce01</td>\n</tr>\n<tr>\n<td>Quantity</td>\n<td>Example: 1</td>\n</tr>\n<tr>\n<td>AddPrice</td>\n<td>If the item has an additional charge it will be displayed.  <br />Example: 1.0</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>The customer-friendly name provided to the option.  <br />Example: Hot Sauce</td>\n</tr>\n<tr>\n<td>UnitOfMeasure</td>\n<td>Example: EACH</td>\n</tr>\n<tr>\n<td>IsSelected</td>\n<td>Whether or not the option is selected by default.  <br />Example: False.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","name":"Food & Beverage","type":"folder"}},"urlObject":{"path":["api","v1","POS","FoodAndBeverage","Modifiers"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique restaurant identifier for the restaurant you’d like to pull an item modifier for. Example: CoastalLounge.</p>\n","type":"text/plain"},"key":"RestaurantID","value":"ISLANDERREST001"},{"description":{"content":"<p>REQUIRED - The unique identifier for the menu item. Example: CLBURGER.</p>\n","type":"text/plain"},"key":"ItemID","value":"IB_PASTAS0003"}],"variable":[]}},"response":[{"id":"4e6e43d9-a18d-4588-aad6-2db75ef0c05b","name":"GetModifiers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{base_url}}/api/v1/POS/FoodAndBeverage/Modifiers?RestaurantID=ISLANDERREST001&ItemID=IB_PASTAS0003","host":["{{base_url}}"],"path":["api","v1","POS","FoodAndBeverage","Modifiers"],"query":[{"key":"RestaurantID","value":"ISLANDERREST001","description":"REQUIRED - The unique restaurant identifier for the restaurant you’d like to pull an item modifier for. Example: CoastalLounge."},{"key":"ItemID","value":"IB_PASTAS0003","description":"REQUIRED - The unique identifier for the menu item. Example: CLBURGER."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"MenuItemDescription\": \"Coastal Lounge Burger\",\r\n    \"Modifiers\": [\r\n        {\r\n            \"ModifierID\": \"CLSIDES\",\r\n            \"Description\": \"Sides\",\r\n            \"ForceChoice\": true,\r\n            \"OrderIndex\": 1,\r\n            \"Alternatives\": [\r\n                {\r\n                    \"AlternativeID\": \"CLFries\",\r\n                    \"Quantity\": 1,\r\n                    \"AddPrice\": 1.00,\r\n                    \"Description\": \"Fries\",\r\n                    \"UOfM\": \"EACH\",\r\n                    \"Options\": [\r\n                        {\r\n                            \"OptionID\": \"CLSauce01\",\r\n                            \"Quantity\": 1,\r\n                            \"AddPrice\": 1.00,\r\n                            \"Description\": \"Hot Sauce\",\r\n                            \"UnitOfMeasure\": \"EACH\",\r\n                            \"IsSelected\": false\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"1f49fb8e-6d5b-4f6f-8834-1ca19b217972"},{"name":"PostNewOrder","id":"09a11827-a4f4-4e9a-bdce-9c874b8d233f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"RestaurantID\": \"ISLANDERREST001\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/POS/FoodAndBeverage/NewOrder","description":"<p>Creates an order within a restaurant. This API is a pre-requisite before adding items to the order.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.92.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RestaurantID REQUIRED</td>\n<td>The unique restaurant identifier for the restaurant you’d like to create an order for.  <br />Example: CoastalLounge.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OrderSeqID</td>\n<td>The unique identifier for the new order created in the F&amp;B POS.  <br />Example: 2143.</td>\n</tr>\n<tr>\n<td>CheckUID</td>\n<td>The unique identifier for the check created within the new order in the F&amp;B POS.  <br />Example: 74604278-a463-4206-b7db-f800d08c8532.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","name":"Food & Beverage","type":"folder"}},"urlObject":{"path":["api","v1","POS","FoodAndBeverage","NewOrder"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"57064926-844a-41a4-89b2-ae3b40c9620a","name":"PostNewOrder","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"RestaurantID\": \"ISLANDERREST001\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/POS/FoodAndBeverage/NewOrder"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"OrderSeqId\": 1733,\r\n    \"CheckUID\": \"b950e1a2-c487-435a-8b64-3a8b7c7374ea\"\r\n}"}],"_postman_id":"09a11827-a4f4-4e9a-bdce-9c874b8d233f"},{"name":"AddContactToCheck","id":"59d0a4e4-6ec5-49e4-a1e2-5d79adbc6aed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"CheckID\": \"a68ec356-7a23-40b2-9a02-96103aae1b5b\",\r\n    \"ContactID\": \"52f2128f-45be-4a7a-9c0d-011d2f40f0f6\",\r\n    \"RestID\": \"GR_THECLUBHOUSE\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/POS/FoodAndBeverage/ManageOrder/AddContactToCheck","description":"<p>Assigns a customer contact to a check. This API is optional but recommended.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.92.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CheckID REQUIRED</td>\n<td>The unique identifier for the check created within the new order in the F&amp;B POS.  <br />Example: 74604278-a463-4206-b7db-f800d08c8532.</td>\n</tr>\n<tr>\n<td>ContactID REQUIRED</td>\n<td>The unique identifier for the contact to be added to the check.  <br />Example: ed201dcf-473e-4037-a231-2688ae633250.</td>\n</tr>\n<tr>\n<td>RestID REQUIRED</td>\n<td>The unique restaurant identifier for the restaurant you’d like to create an order for.  <br />Example: CoastalLounge.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Result</td>\n<td>True or false to determine if add was successful or failed.  <br />Example: true.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","name":"Food & Beverage","type":"folder"}},"urlObject":{"path":["api","v1","POS","FoodAndBeverage","ManageOrder","AddContactToCheck"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"05c71782-1663-429a-a4ae-da34ca14eb94","name":"AddContactToCheck","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"CheckID\": \"b950e1a2-c487-435a-8b64-3a8b7c7374ea\",\r\n    \"ContactID\": \"1c8b2c98-7f21-45dc-9e3a-0755dc679538\",\r\n    \"RestID\": \"ISLANDERREST001\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/POS/FoodAndBeverage/ManageOrder/AddContactToCheck"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Result\": true\r\n}"}],"_postman_id":"59d0a4e4-6ec5-49e4-a1e2-5d79adbc6aed"},{"name":"PostNewMenuItems","id":"19917075-850e-4e96-ba01-e9b70f4f854e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"CourseID\": null,\r\n    \"CheckUID\": \"a68ec356-7a23-40b2-9a02-96103aae1b5b\",\r\n    \"SeatID\": null,\r\n    \"MenuItems\": [{\r\n        \"MenuItemID\": \"DN_BAKLAVA\",\r\n        \"SelectedOptions\": [\r\n            {\r\n                \"ItemID\": \"\",\r\n                \"Options\": [\r\n                    \"\"\r\n                ]\r\n            },\r\n            {\r\n                \"ItemID\": \"\",\r\n                \"Options\": [\r\n                    \"\",\r\n                    \"\",\r\n                    \"\",\r\n                    \"\"\r\n                ]\r\n            }\r\n        ],\r\n        \"SelectedAlternatives\": [\r\n            {\r\n                \"ItemID\": \"\",\r\n                \"OriginalItemID\": \"\",\r\n                \"Options\": []\r\n            }\r\n        ],\r\n        \"SelectedUniversalModifiers\": []\r\n    }]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/POS/FoodAndBeverage/MenuItems/AddMenuItems","description":"<p>Adds items (one or multiple) to the check created for your new order. A pre-requisite to this step is using the Post New Order API to generate an OrderID and CheckUID.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.92.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseID</td>\n<td>If the menu item is to be added to a specific food course, add the CourseID here. Leave blank if not using coursing.  <br />Example: null.</td>\n</tr>\n<tr>\n<td>CheckUID REQUIRED</td>\n<td>The unique check identifier for the check you’d like to add menu items to.  <br />Example: 74604278-a463-4206-b7db-f800d08c8532.</td>\n</tr>\n<tr>\n<td>SeatID</td>\n<td>If unique seat identifier you’d like to associate this menu item with. Leave blank for tab orders.  <br />Example: null.</td>\n</tr>\n<tr>\n<td>MenuItems (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>MenuItemID</td>\n<td>The unique identifer for the menu item to be added to the check.  <br />Example: CLBURGER.</td>\n</tr>\n<tr>\n<td>Selected Options (List):</td>\n<td>If the item has any selected options, use this section to indicate which should be added for the item.</td>\n</tr>\n<tr>\n<td>ItemID</td>\n<td>The unique identifier for the modifier (i.e. group of options) which should be added for the item.  <br />Example: CLSAUCE</td>\n</tr>\n<tr>\n<td>Options (List):</td>\n<td>The unique identifier for each option which was selected to be added to the menu item.  <br />Example: “CLSAUCE03”, “CLSAUCE04”.</td>\n</tr>\n<tr>\n<td>Selected Alternatives (List):</td>\n<td>If the item has any selected alternatives, use this section to indicate which should be added for the item.</td>\n</tr>\n<tr>\n<td>ItemID</td>\n<td>The unique identifier for the alternative which should be added for the item.  <br />Example: “CLRICE”</td>\n</tr>\n<tr>\n<td>OriginalItemID</td>\n<td>The unique identifier for the original alternative group ID.  <br />Example: “CLSIDES”</td>\n</tr>\n<tr>\n<td>Options (List):</td>\n<td>The unique identifier for each nested alternative option (if applicable) which was selected to be added to the menu item.  <br />Example: “CL LARGE”</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Result</td>\n<td>Indicates whether or not the item was successfully added to the check.  <br />Example: true.  <br />Note: if item is sold out the response will return “ItemName is sold out.”</td>\n</tr>\n<tr>\n<td>CheckItemIDs (List)</td>\n<td>The unique identifier for each item which was successfully added to the check.  <br />  <br />Example: 7dbf2939-c949-4419-9c70-4604df430f17.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","name":"Food & Beverage","type":"folder"}},"urlObject":{"path":["api","v1","POS","FoodAndBeverage","MenuItems","AddMenuItems"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"ef363213-4dda-45a8-8581-a2e4b21f6c34","name":"PostNewMenuItems","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"CourseID\": null,\r\n    \"CheckUID\": \"b950e1a2-c487-435a-8b64-3a8b7c7374ea\",\r\n    \"SeatID\": null,\r\n    \"MenuItems\": [{\r\n        \"MenuItemID\": \"IB_APPS0001\",\r\n        \"SelectedOptions\": [\r\n            {\r\n                \"ItemID\": \"\",\r\n                \"Options\": [\r\n                    \"\"\r\n                ]\r\n            },\r\n            {\r\n                \"ItemID\": \"\",\r\n                \"Options\": [\r\n                    \"\",\r\n                    \"\",\r\n                    \"\",\r\n                    \"\"\r\n                ]\r\n            }\r\n        ],\r\n        \"SelectedAlternatives\": [\r\n            {\r\n                \"ItemID\": \"\",\r\n                \"OriginalItemID\": \"\",\r\n                \"Options\": []\r\n            }\r\n        ],\r\n        \"SelectedUniversalModifiers\": []\r\n    }]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/POS/FoodAndBeverage/MenuItems/AddMenuItems"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Result\": true,\r\n    \"CheckItemIDs\": [\r\n        \"ec05dc68-a282-469f-a717-f10621e87f0c\"\r\n    ]\r\n} "}],"_postman_id":"19917075-850e-4e96-ba01-e9b70f4f854e"},{"name":"PostSendOrder","id":"d5415e90-ca07-4f99-836a-3bbe434847e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"OrderSeqID\": 1022,\r\n    \"RestaurantID\": \"COASTALREST001\",\r\n    \"TerminalID\": \"FBPOS0005\",\r\n    \"OrderNote\": \"This is a test. PLEASE DO NOT MAKE.\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/POS/FoodAndBeverage/SendOrder","description":"<p>Sends an order to the kitchen. Must provide OrderSeqID generated in <a href=\"https://totaleintegrated.atlassian.net/wiki/spaces/TPP/pages/2078375937\">Post New Order API</a>.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.92.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OrderSeqID REQUIRED</td>\n<td>The unique identifier for the order you’d like to print to the kitchen.  <br />Example: 2143.</td>\n</tr>\n<tr>\n<td>RestaurantID REQUIRED</td>\n<td>The unique restaurant identifier for the restaurant you’d like to print an order for.  <br />Example: CoastalLounge.</td>\n</tr>\n<tr>\n<td>TerminalID REQUIRED</td>\n<td>The unique POS terminal identifier for the terminal the order should be printed from. The client should have provided you with a terminal ID.  <br />Example: CoastalKitchenPOS.</td>\n</tr>\n<tr>\n<td>OrderNote</td>\n<td>Any additional notes or comments for the order can be added here.  <br />Example: Allergic to peanuts.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Result</td>\n<td>Provides a true or false response to indicate if print was successful.  <br />Example: True</td>\n</tr>\n<tr>\n<td>PrintToFileURL</td>\n<td>If a PDF was generated a URL to the PDF file will be generated.  <br />Example: <a href=\"https://proxy-internal.totaleintegrated.com/dev/repo/Repository/2022/08/24/165129638/20220824045129640622.pdf\">https://proxy-internal.totaleintegrated.com/dev/repo/Repository/2022/08/24/165129638/20220824045129640622.pdf</a></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","POS","FoodAndBeverage","SendOrder"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"14162832-87be-4198-9a30-c7dc24dac16a","name":"PostSendOrder","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{ClientAuthorization}}","type":"default"}],"body":{"mode":"raw","raw":"{\r\n    \"OrderSeqID\": 1733,\r\n    \"RestaurantID\": \"ISLANDERREST001\",\r\n    \"TerminalID\": \"FBPOS0004\",\r\n    \"OrderNote\": \"Note\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v1/POS/FoodAndBeverage/SendOrder"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Result\": true,\r\n    \"PrintToFileUrl\": \"\"\r\n}"}],"_postman_id":"d5415e90-ca07-4f99-836a-3bbe434847e6"}],"id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac","description":"<p>Total e Integrated provides a suite of APIs for ordering food and seamlessly transmitting orders to the TEI Web POS for preparation.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"d7ec6c5b-8c33-46d7-b731-4bbd35bfe4db","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1ed84065-7637-4438-8c20-476be5a26a0e","type":"text/javascript","exec":[""]}}],"_postman_id":"6790a50e-fe5c-47f2-9d14-c50eafd08cac"},{"name":"Lodging","item":[{"name":"GetRoomAvailability","id":"cec925a2-ec7c-4bb1-83cc-602b061a64d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/Lodging/GetRoomAvailability?ArrivalDate=03-26-2022&DepartureDate=03-28-2022&RoomID=VILLA 10","description":"<p>Total e Integrated provides APIs for checking room availability and retrieving booking details from the lodging system.  </p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.92.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ArrivalDate REQUIRED</td>\n<td>The start date desired for booking.  <br />Example: 03-26-2022</td>\n</tr>\n<tr>\n<td>DepartureDate REQUIRED</td>\n<td>The end date desired for booking.  <br />Example: 03-28-2022</td>\n</tr>\n<tr>\n<td>RoomID</td>\n<td>The unique room identifier for the room you’d like to pull availability for. Leave blank to pull all rooms between date range.  <br />Example: VILLA 10</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Rooms (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>RoomID</td>\n<td>The unique room identifier for the room which is available.  <br />Example: RC022</td>\n</tr>\n<tr>\n<td>RoomDescription</td>\n<td>The customer-friendly description of the room which is available.  <br />Example: Sam’s Presidential Suite</td>\n</tr>\n<tr>\n<td>RoomClass</td>\n<td>The unique room class identifier for the type of room which is available.  <br />Example: PresidentalSuites</td>\n</tr>\n<tr>\n<td>RoomClassDescription</td>\n<td>The customer-friendly description for the type of room which is available.  <br />Example: Presidential Suites</td>\n</tr>\n<tr>\n<td>RoomRates (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>RoomID</td>\n<td>The unique room identifier for the room which is available.  <br />Example: RC022</td>\n</tr>\n<tr>\n<td>RateID</td>\n<td>The unique rate identifier for the available rate on this room.  <br />Example: 2 NIGHT PKG</td>\n</tr>\n<tr>\n<td>ClassID</td>\n<td>The unique room class identifier for the type of room which is available.  <br />Example: PresidentalSuites</td>\n</tr>\n<tr>\n<td>StayDate</td>\n<td>The date in which this rate applies  <br />Example: 2/26/2022 12:00:00 AM</td>\n</tr>\n<tr>\n<td>EntitySource</td>\n<td>Example: Weekday</td>\n</tr>\n<tr>\n<td>IsHoliday</td>\n<td>Indicates whether or not this date is considered a holiday and therefore has a different rate.  <br />Example: false.</td>\n</tr>\n<tr>\n<td>Rate</td>\n<td>The amount due for this date.  <br />Example: 173.27</td>\n</tr>\n<tr>\n<td>PricingType</td>\n<td>Whether or not the price is charged per person or per room.  <br />Example: Per Person.</td>\n</tr>\n<tr>\n<td>IsAvailable</td>\n<td>Whether or not the room is available  <br />Example: true</td>\n</tr>\n<tr>\n<td>ErrorMessage</td>\n<td>If the query returns an error it will display here.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","Lodging","GetRoomAvailability"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The start date desired for booking. Example: 03-26-2022</p>\n","type":"text/plain"},"key":"ArrivalDate","value":"03-26-2022"},{"description":{"content":"<p>REQUIRED - The end date desired for booking. Example: 03-28-2022</p>\n","type":"text/plain"},"key":"DepartureDate","value":"03-28-2022"},{"description":{"content":"<p>The unique room identifier for the room you’d like to pull availability for. Leave blank to pull all rooms between date range.\nExample: VILLA 10</p>\n","type":"text/plain"},"key":"RoomID","value":"VILLA 10"}],"variable":[]}},"response":[{"id":"731ae985-aa39-4318-9b4f-bf75a5b6f3b2","name":"GetRoomAvailability","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/api/v1/Lodging/GetRoomAvailability?ArrivalDate=03-26-2022&DepartureDate=03-28-2022&RoomID=VILLA 10","host":["{{base_url}}"],"path":["api","v1","Lodging","GetRoomAvailability"],"query":[{"key":"ArrivalDate","value":"03-26-2022","description":"REQUIRED - The start date desired for booking. Example: 03-26-2022"},{"key":"DepartureDate","value":"03-28-2022","description":"REQUIRED - The end date desired for booking. Example: 03-28-2022"},{"key":"RoomID","value":"VILLA 10","description":"The unique room identifier for the room you’d like to pull availability for. Leave blank to pull all rooms between date range.\nExample: VILLA 10"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"Rooms\": [\r\n    {\r\n      \"RoomID\": \"RC022\",\r\n      \"RoomDescription\": \"Sam’s Presidential Suite\",\r\n      \"RoomClass\": \"PresidentialSuites\",\r\n      \"RoomClassDescription\": \"Presidential Suites\",\r\n      \"RoomRates\": [\r\n        {\r\n          \"RoomID\": \"RC022\",\r\n          \"RateID\": \"2 NIGHT PKG\",\r\n          \"ClassID\": \"PresidentialSuites\",\r\n          \"StayDate\": \"2/26/2022 12:00:00 AM\",\r\n          \"EntitySource\": \"Weekday\",\r\n          \"IsHoliday\": false,\r\n          \"Rate\": 173.27,\r\n          \"PricingType\": \"Per Person\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"IsAvailable\": true,\r\n  \"ErrorMessage\": \"\"\r\n}"}],"_postman_id":"cec925a2-ec7c-4bb1-83cc-602b061a64d6"},{"name":"RoomBookedDates","id":"5db03932-35ea-45e9-827b-4c8257b0d36f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v2/Lodging/GetRoomBookedDates?StartDate=&EndDate&RoomID=VILLA 10","description":"<p>Pull bookings by room within a specified date range.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.92.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>StartDate REQUIRED</td>\n<td>The initial date you’d like to start pulling bookings for.  <br />Example: 03-26-2022</td>\n</tr>\n<tr>\n<td>EndDate REQUIRED</td>\n<td>The last date you’d like to pull bookings for.  <br />Example: 03-28-2022</td>\n</tr>\n<tr>\n<td>RoomID REQUIRED</td>\n<td>The unique room identifier for the room you’d like to pull bookings for.  <br />Example: VILLA 10</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RoomReservations (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>RedUID</td>\n<td>The unique reservation identifier.  <br />Example: 077edeaa-d9d4-4221-ae72-4b7fdc1c3012</td>\n</tr>\n<tr>\n<td>ResID</td>\n<td>The abbreviated more customer friendly unique reservation identifier.  <br />Example: 077ED</td>\n</tr>\n<tr>\n<td>RoomUID</td>\n<td>The unique identifier for the room.  <br />Example: 77f5d25b-bb78-4a0d-ba25-acd586e8493c</td>\n</tr>\n<tr>\n<td>RoomID</td>\n<td>The abbreviated more customer friendly unique room identifier.  <br />Example: VILLA 10</td>\n</tr>\n<tr>\n<td>ArrivalDate</td>\n<td>The start date for the booking.  <br />Example: 5/3/2022 12:00:00 AM</td>\n</tr>\n<tr>\n<td>DepartureDate</td>\n<td>The end date for the booking.  <br />Example: 5/4/2022 12:00:00 AM</td>\n</tr>\n<tr>\n<td>RateUID</td>\n<td>The unique rate identifier.  <br />Example: 077edeaa-d9d4-4221-ae72-4b7fdc1c3012</td>\n</tr>\n<tr>\n<td>RateID</td>\n<td>The abbreviated more customer friendly unique rate identifier.  <br />Example: STANDARDPKG</td>\n</tr>\n<tr>\n<td>RateDescription</td>\n<td>The description provided for the rate.  <br />Example: Standard Rate Package</td>\n</tr>\n<tr>\n<td>NightlyRates (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>ResUID</td>\n<td>The unique reservation identifier.  <br />Example: 077edeaa-d9d4-4221-ae72-4b7fdc1c3012</td>\n</tr>\n<tr>\n<td>RoomUID</td>\n<td>The unique identifier for the room.  <br />Example: 77f5d25b-bb78-4a0d-ba25-acd586e8493c</td>\n</tr>\n<tr>\n<td>StayDate</td>\n<td>The date in which the rate is/was charged for.  <br />Example: 5/3/2022 12:00:00 AM</td>\n</tr>\n<tr>\n<td>SubTotal</td>\n<td>The amount owed for the date before taxes.  <br />Example: 124.68</td>\n</tr>\n<tr>\n<td>TaxAmount</td>\n<td>The tax amount owed for the date.  <br />Example:16.21</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>The total amount owed for the date (including taxes).  <br />Example: 140.89</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>The status for the room between the start and end date.  <br />Example: No Booking, Booked</td>\n</tr>\n<tr>\n<td>ErrorMessage</td>\n<td>If the query returns an error it will display here.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v2","Lodging","GetRoomBookedDates"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The initial date you’d like to start pulling bookings for.\nExample: 03-26-2022</p>\n","type":"text/plain"},"key":"StartDate","value":""},{"description":{"content":"<p>REQUIRED - The last date you’d like to pull bookings for.\nExample: 03-28-2022</p>\n","type":"text/plain"},"key":"EndDate","value":null},{"description":{"content":"<p>REQUIRED - The unique room identifier for the room you’d like to pull bookings for.\nExample: VILLA 10</p>\n","type":"text/plain"},"key":"RoomID","value":"VILLA 10"}],"variable":[]}},"response":[{"id":"1ec85dfe-d86e-489e-a4e5-50056b95f8be","name":"RoomBookedDates","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/api/v2/Lodging/GetRoomBookedDates?StartDate=&EndDate&RoomID=VILLA 10","host":["{{base_url}}"],"path":["api","v2","Lodging","GetRoomBookedDates"],"query":[{"key":"StartDate","value":"","description":"REQUIRED - The initial date you’d like to start pulling bookings for.\nExample: 03-26-2022"},{"key":"EndDate","value":null,"description":"REQUIRED - The last date you’d like to pull bookings for.\nExample: 03-28-2022"},{"key":"RoomID","value":"VILLA 10","description":"REQUIRED - The unique room identifier for the room you’d like to pull bookings for.\nExample: VILLA 10"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"RoomReservations\": [\r\n    {\r\n      \"RedUID\": \"077edeaa-d9d4-4221-ae72-4b7fdc1c3012\",\r\n      \"ResID\": \"077ED\",\r\n      \"RoomUID\": \"77f5d25b-bb78-4a0d-ba25-acd586e8493c\",\r\n      \"RoomID\": \"VILLA 10\",\r\n      \"ArrivalDate\": \"5/3/2022 12:00:00 AM\",\r\n      \"DepartureDate\": \"5/4/2022 12:00:00 AM\",\r\n      \"RateUID\": \"077edeaa-d9d4-4221-ae72-4b7fdc1c3012\",\r\n      \"RateID\": \"STANDARDPKG\",\r\n      \"RateDescription\": \"Standard Rate Package\",\r\n      \"NightlyRates\": [\r\n        {\r\n          \"ResUID\": \"077edeaa-d9d4-4221-ae72-4b7fdc1c3012\",\r\n          \"RoomUID\": \"77f5d25b-bb78-4a0d-ba25-acd586e8493c\",\r\n          \"StayDate\": \"5/3/2022 12:00:00 AM\",\r\n          \"SubTotal\": 124.68,\r\n          \"TaxAmount\": 16.21,\r\n          \"Total\": 140.89\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"Status\": \"Booked\",\r\n  \"ErrorMessage\": \"\"\r\n}"}],"_postman_id":"5db03932-35ea-45e9-827b-4c8257b0d36f"}],"id":"7ebf2c79-d55c-450d-89a4-1f4581e6994b","description":"<p>You can view the availabiliy and booked dates of rooms using the Lodging APIs.</p>\n","_postman_id":"7ebf2c79-d55c-450d-89a4-1f4581e6994b"},{"name":"Master Sales","item":[{"name":"Get RSalesMaster","id":"8298001b-e86b-443d-afa5-82cd5879a5b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{client}}.totaleintegrated.net/api/v1/Analytics/MasterSales?RevenueCenter&Type&TRXDateStartDate&TRXDateEndDate","description":"<p>Pull revenue and statistics data from Master Sales.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.92.0</p>\n<h3 id=\"request\">Request</h3>\n<p><em>The following outlines the applicable query parameters for this API.</em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RevenueCenter</td>\n<td>The type of transaction which occurs, such as:  <br />- Events  <br />- Food and Beverage  <br />- Retail  <br />- Membership  <br />- Tee Sheet  <br />- Lodging  <br />- Leave blank to include all  <br />Example: Food and Beverage</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>Whether to include sales, stats or all RMasterSales data.  <br />- 0 = All  <br />- 1 = Stats  <br />- 2 = Revenue  <br />Example: 0.</td>\n</tr>\n<tr>\n<td>TRXDateStartDate REQUIRED</td>\n<td>The beginning date in which to pull data from RMasterSales.  <br />Example: 2023/01/01</td>\n</tr>\n<tr>\n<td>TRXDateEndDate REQUIRED</td>\n<td>The last date in which to pull data from RMasterSales.  <br />Example: 2023/02/01</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<p><em>The following outlines the list response provided by the API:</em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RTable</td>\n<td>The database table used to store this information.  <br />Example: RFBSales</td>\n</tr>\n<tr>\n<td>RevenueCenter</td>\n<td>The operating unit of the business.  <br />Example: Food And Beverage</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>Whether that data is for revenue or statistics.  <br />Example: Revenue</td>\n</tr>\n<tr>\n<td>TrxDate</td>\n<td>The date this data is for.  <br />Example: 2011-01-01T00:00:00</td>\n</tr>\n<tr>\n<td>Category1</td>\n<td>The first category configured in Master Sales Cube Setup. For example, retail site or restaurant name.  <br />Example: TW Bar</td>\n</tr>\n<tr>\n<td>Category2</td>\n<td>The second category configured in Master Sales Cube Setup. For example, retail category or F&amp;B sales account description. Optional.  <br />Example: Wine Sales</td>\n</tr>\n<tr>\n<td>Category3</td>\n<td>The third category configured in Master Sales Cube Setup. Optional.  <br />Example:</td>\n</tr>\n<tr>\n<td>Category4</td>\n<td>The fourth category configured in Master Sales Cube Setup. Optional.  <br />Example:</td>\n</tr>\n<tr>\n<td>Category5</td>\n<td>The fifth category configured in Master Sales Cube Setup. Optional.  <br />Example:</td>\n</tr>\n<tr>\n<td>DailyTotal</td>\n<td>The amount of revenue (or statistic total) for the day.  <br />Example: 97.00</td>\n</tr>\n<tr>\n<td>DailyTotalLY</td>\n<td>The amount of revenue (or statistic total) for the same day last year.  <br />Example: 80.00</td>\n</tr>\n<tr>\n<td>DailyBudgetTotal</td>\n<td>The revenue (or statistic) amount expected for the day.  <br />Example: 90.00</td>\n</tr>\n<tr>\n<td>DailyBudgetTotalLY</td>\n<td>The revenue (or statistic) amount expected for the day last year.  <br />Example: 75.00</td>\n</tr>\n<tr>\n<td>MTDTotal</td>\n<td>The amount of revenue (or statistic total) for the month to date.  <br />Example: 500.00</td>\n</tr>\n<tr>\n<td>MTDTotalLY</td>\n<td>The amount of revenue (or statistic total) for the month to date last year.  <br />Example: 450.00</td>\n</tr>\n<tr>\n<td>MTDBudgetTotal</td>\n<td>The expected amount of revenue (or statistic total) for the month to date.  <br />Example: 500.00</td>\n</tr>\n<tr>\n<td>MTDBudgetTotalLY</td>\n<td>The expected amount of revenue (or statistic total) for the same month to date last year.  <br />Example: 450.00</td>\n</tr>\n<tr>\n<td>YTDTotal</td>\n<td>The amount of revenue (or statistic total) for the year to date.  <br />Example: 5000.00</td>\n</tr>\n<tr>\n<td>YTDTotalLY</td>\n<td>The amount of revenue (or statistic total) for the year to date last year.  <br />Example: 4500.00</td>\n</tr>\n<tr>\n<td>YTDBudgetTotal</td>\n<td>The expected amount of revenue (or statistic total) for the year to date.  <br />Example: 5000.00</td>\n</tr>\n<tr>\n<td>YTDBudgetTotalLY</td>\n<td>The expected amount of revenue (or statistic total) for the year to date last year.  <br />Example: 4500.00</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Analytics","MasterSales"],"host":["{{client}}","totaleintegrated","net"],"query":[{"description":{"content":"<p>The type of transaction which occurs, such as:</p>\n<ul>\n<li>Events</li>\n<li>Food and Beverage</li>\n<li>Retail</li>\n<li>Membership</li>\n<li>Tee Sheet</li>\n<li>Lodging</li>\n<li>Leave blank to include all\nExample: Food and Beverage</li>\n</ul>\n","type":"text/plain"},"key":"RevenueCenter","value":null},{"description":{"content":"<p>Whether to include sales, stats or all RMasterSales data.</p>\n<ul>\n<li>0 = All</li>\n<li>1 = Stats</li>\n<li>2 = Revenue\nExample: 0.</li>\n</ul>\n","type":"text/plain"},"key":"Type","value":null},{"description":{"content":"<p>REQUIRED - The beginning date in which to pull data from RMasterSales.\nExample: 2023/01/01</p>\n","type":"text/plain"},"key":"TRXDateStartDate","value":null},{"description":{"content":"<p>REQUIRED - The last date in which to pull data from RMasterSales.\nExample: 2023/02/01</p>\n","type":"text/plain"},"key":"TRXDateEndDate","value":null}],"variable":[]}},"response":[{"id":"8ec51b8c-d636-4adc-a369-9e194452c4f0","name":"Get RSalesMaster","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{client}}.totaleintegrated.net/api/v1/Analytics/MasterSales?RevenueCenter&Type&TRXDateStartDate&TRXDateEndDate","protocol":"https","host":["{{client}}","totaleintegrated","net"],"path":["api","v1","Analytics","MasterSales"],"query":[{"key":"RevenueCenter","value":null,"description":"The type of transaction which occurs, such as:\n- Events\n- Food and Beverage\n- Retail\n- Membership\n- Tee Sheet\n- Lodging\n- Leave blank to include all\nExample: Food and Beverage"},{"key":"Type","value":null,"description":"Whether to include sales, stats or all RMasterSales data.\n- 0 = All\n- 1 = Stats\n- 2 = Revenue\nExample: 0."},{"key":"TRXDateStartDate","value":null,"description":"REQUIRED - The beginning date in which to pull data from RMasterSales.\nExample: 2023/01/01"},{"key":"TRXDateEndDate","value":null,"description":"REQUIRED - The last date in which to pull data from RMasterSales.\nExample: 2023/02/01"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"RTable\": \"RFBSales\",\r\n  \"RevenueCenter\": \"Food And Beverage\",\r\n  \"Type\": \"Revenue\",\r\n  \"TrxDate\": \"2011-01-01T00:00:00\",\r\n  \"Category1\": \"TW Bar\",\r\n  \"Category2\": \"Wine Sales\",\r\n  \"Category3\": \"\",\r\n  \"Category4\": \"\",\r\n  \"Category5\": \"\",\r\n  \"DailyTotal\": 97.00,\r\n  \"DailyTotalLY\": 80.00,\r\n  \"DailyBudgetTotal\": 90.00,\r\n  \"DailyBudgetTotalLY\": 75.00,\r\n  \"MTDTotal\": 500.00,\r\n  \"MTDTotalLY\": 450.00,\r\n  \"MTDBudgetTotal\": 500.00,\r\n  \"MTDBudgetTotalLY\": 450.00,\r\n  \"YTDTotal\": 5000.00,\r\n  \"YTDTotalLY\": 4500.00,\r\n  \"YTDBudgetTotal\": 5000.00,\r\n  \"YTDBudgetTotalLY\": 4500.00\r\n}"}],"_postman_id":"8298001b-e86b-443d-afa5-82cd5879a5b6"}],"id":"ec12f33f-7215-4358-9d24-484e12ddbf6b","description":"<p>Total e Integrated provides a Master Sales API that allows users to access revenue data and statistical insights, including budget vs. actual comparisons.</p>\n","_postman_id":"ec12f33f-7215-4358-9d24-484e12ddbf6b"},{"name":"My Account","item":[{"name":"BulkAccessRegistrations","id":"34db9b39-2537-480f-9d4b-0de154d7fa32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/BulkBookings/AccessRegistrations?SessionID=ca498010-bf53-11ec-9d64-0242ac123352&DateTime=2025-04-12T01:20:00&PageNumber=1&PageSize=25","description":"<p>Provides a list of any changes made to access registrations since the last request from a staging DB table. Only reservations which have been modified since the last request will be provided.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SessionID REQUIRED</td>\n<td>Pass your own unique schema to the API.  <br />New ID - TEI will return any modifications made since your last request.  <br />Previously Used ID - TEI will return modifications from the session ID. Use this in case the first attempt failed. Note, TEI will store session ID history for 2 days.  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>DateTime REQUIRED</td>\n<td>The date and time of last data pull, so TEI can send the modified data since the last pull save point.  <br />Example: 2023-09-02T10:20:00</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td>The page of records to return.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>The number of records to return per page.  <br />Example: 25.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>StartDate</td>\n<td>The start date of the booking.  <br />Example: 2023-04-26</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>The end date of the booking.  <br />Example: 2023-05-26</td>\n</tr>\n<tr>\n<td>RegistrationType</td>\n<td>Identifies if the registration is upcoming, past or current.  <br />Example: Upcoming.</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>Identifies if the reservation is approved, denied or pending.  <br />Example: Approved.</td>\n</tr>\n<tr>\n<td>RegistrationUID</td>\n<td>The unique identifier for the access registration.  <br />Example: 12325255-c353-2424-5255-33fg245.</td>\n</tr>\n<tr>\n<td>RegistrantTypeID</td>\n<td>The unique identifier for the type of access registration.  <br />Example: MEMBER</td>\n</tr>\n<tr>\n<td>RegistrantTypeName</td>\n<td>The customer-friendly name for the registration type.  <br />Example: “Member on Property”</td>\n</tr>\n<tr>\n<td>CanEdit</td>\n<td>Whether or not the registration may still be cancelled or editted.  <br />Example: True.</td>\n</tr>\n<tr>\n<td>RegistrationCancelled</td>\n<td>Whether or not the booking has already been cancelled.  <br />Example: false.</td>\n</tr>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact being registered.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name of the contact registered.  <br />Example: Aaron.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name of the contact registered.  <br />Example: Roque.</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>The unique member identification number for the contact registered (if applicable).  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>ContactClassID</td>\n<td>Example: “Gold Member”, “Bronze Member”</td>\n</tr>\n<tr>\n<td>MemberStatusID</td>\n<td>Example: “Active”, “Suspended”</td>\n</tr>\n<tr>\n<td>ModifiedBy</td>\n<td>Which user ID made the modification to the booking.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td>The date of the last change made to this booking.  <br />Example: “2024-01-12T11:30:00\"</td>\n</tr>\n<tr>\n<td>RequestingContactID</td>\n<td>The unique identifier for the contact who submitted this access request.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.</td>\n</tr>\n<tr>\n<td>RequestingContactMemberID</td>\n<td>The unique member identification number for the contact who submitted this access request.  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>RequestingContactFirstName</td>\n<td>The first name of the contact who submitted the request.  <br />Example: Aaron.</td>\n</tr>\n<tr>\n<td>RequestingContactLastName</td>\n<td>The last name of the contact who submitted the request.  <br />Example: Aaron.</td>\n</tr>\n<tr>\n<td>GuestAccompaniedDays</td>\n<td>Number of Days left for Accompanied Guest field.  <br />Ex: 25</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","BulkBookings","AccessRegistrations"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - Pass your own unique schema to the API.\nNew ID - TEI will return any modifications made since your last request.\nPreviously Used ID - TEI will return modifications from the session ID. Use this in case the first attempt failed. Note, TEI will store session ID history for 2 days.\nExample: ca498010-bf53-11ec-9d64-0242ac12000</p>\n","type":"text/plain"},"key":"SessionID","value":"ca498010-bf53-11ec-9d64-0242ac123352"},{"description":{"content":"<p>REQUIRED - The date and time of last data pull, so TEI can send the modified data since the last pull save point.<br />Example: 2023-09-02T10:20:00</p>\n","type":"text/plain"},"key":"DateTime","value":"2025-04-12T01:20:00"},{"description":{"content":"<p>The page of records to return. Example: 1.</p>\n","type":"text/plain"},"key":"PageNumber","value":"1"},{"description":{"content":"<p>The number of records to return per page. Example: 25.</p>\n","type":"text/plain"},"key":"PageSize","value":"25"}],"variable":[]}},"response":[{"id":"ff86c6a2-706f-47a3-9413-126fc5096c4e","name":"BulkAccessRegistrations","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/api/v1/BulkBookings/AccessRegistrations?SessionID=ca498010-bf53-11ec-9d64-0242ac123352&DateTime=2025-04-12T01:20:00&PageNumber=1&PageSize=25","host":["{{base_url}}"],"path":["api","v1","BulkBookings","AccessRegistrations"],"query":[{"key":"SessionID","value":"ca498010-bf53-11ec-9d64-0242ac123352","description":"REQUIRED - Pass your own unique schema to the API.\nNew ID - TEI will return any modifications made since your last request.\nPreviously Used ID - TEI will return modifications from the session ID. Use this in case the first attempt failed. Note, TEI will store session ID history for 2 days.\nExample: ca498010-bf53-11ec-9d64-0242ac12000"},{"key":"DateTime","value":"2025-04-12T01:20:00","description":"REQUIRED - The date and time of last data pull, so TEI can send the modified data since the last pull save point.  \nExample: 2023-09-02T10:20:00"},{"key":"PageNumber","value":"1","description":"The page of records to return. Example: 1."},{"key":"PageSize","value":"25","description":"The number of records to return per page. Example: 25."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"AccessRegistrations\": [\r\n        {\r\n            \"StartDate\": \"2024-04-28T00:00:00\",\r\n            \"EndDate\": \"2024-05-30T00:00:00\",\r\n            \"Status\": \"Pending\",\r\n            \"RegistrationType\": \"Upcoming\",\r\n            \"RegistrationUID\": \"db3e521b-afe9-4a35-95b2-9a1891b7371f\",\r\n            \"RegistrantTypeID\": \"UNACCOMPANIED\",\r\n            \"RegistrantTypeName\": \"Unaccompanied Family Guest\",\r\n            \"CanEdit\": \"False\",\r\n            \"RegistrationCancelled\": \"False\",\r\n            \"ContactID\": \"ffe7610f-fab2-4ba7-a42e-c3b184ef2c3e\",\r\n            \"FirstName\": \"Ajaykumar\",\r\n            \"LastName\": \"Patel\",\r\n            \"MemberID\": \"4769\",\r\n            \"ContactClassID\": \"SILVER MEMBER\",\r\n            \"MemberStatusID\": \"ACTIVE\",\r\n            \"ModifiedBy\": \"OpenAPI\",\r\n            \"LastModifiedDate\": \"2024-04-24T17:16:16.877\",\r\n            \"RequestingContactID\": \"b1350a93-b2d6-456e-9bb7-cd295bd1272a\",\r\n            \"RequestingContactMemberID\": \"63\",\r\n            \"RequestingContactFirstName\": \"Ian\",\r\n            \"RequestingContactLastName\": \"Robinson\",\r\n            \"GuestAccompaniedDays\": \"50\"\r\n        },\r\n        {\r\n            \"StartDate\": \"2024-04-28T00:00:00\",\r\n            \"EndDate\": \"2024-05-30T00:00:00\",\r\n            \"Status\": \"Pending\",\r\n            \"RegistrationType\": \"Upcoming\",\r\n            \"RegistrationUID\": \"703cb11c-bbe6-45a9-9e8e-b21c93865625\",\r\n            \"RegistrantTypeID\": \"ACCOMPANIED\",\r\n            \"RegistrantTypeName\": \"Guest (Accompanied)\",\r\n            \"CanEdit\": \"False\",\r\n            \"RegistrationCancelled\": \"False\",\r\n            \"ContactID\": \"b1350a93-b2d6-456e-9bb7-cd295bd1272a\",\r\n            \"FirstName\": \"Ian\",\r\n            \"LastName\": \"Robinson\",\r\n            \"MemberID\": \"63\",\r\n            \"ContactClassID\": null,\r\n            \"MemberStatusID\": \"ACTIVE\",\r\n            \"ModifiedBy\": \"OpenAPI\",\r\n            \"LastModifiedDate\": \"2024-04-24T17:16:16.753\",\r\n            \"RequestingContactID\": \"b1350a93-b2d6-456e-9bb7-cd295bd1272a\",\r\n            \"RequestingContactMemberID\": \"63\",\r\n            \"RequestingContactFirstName\": \"Ian\",\r\n            \"RequestingContactLastName\": \"Robinson\",\r\n            \"GuestAccompaniedDays\": \"50\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"34db9b39-2537-480f-9d4b-0de154d7fa32"},{"name":"BulkGetEventBookings","id":"068ea20a-db3a-4889-b612-47cef42c670f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/BulkBookings/Events?SessionID=ca498010-bf53-11ec-9d64-0242ac120178&DateTime=2024-01-30T15:20:00&PageNumber=1&PageSize=50","description":"<p>Provides a list of any changes made to TEI event reservations since the last request from a staging DB table. Only reservations which have been modified since the last request will be provided.</p>\n<p><em>Please note, to determine if the booking may be cancelled or edited, you must use the</em> <a href=\"https://totaleintegrated.atlassian.net/wiki/spaces/TPP/pages/2196013057\"><i>GetItinerary API</i></a> <em>for real-time validation.</em></p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SessionID REQUIRED</td>\n<td>Pass your own unique schema to the API.  <br />New ID - TEI will return any modifications made since your last request.  <br />Previously Used ID - TEI will return modifications from the session ID. Use this in case the first attempt failed. Note, TEI will store session ID history for 2 days.  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>DateTime REQUIRED</td>\n<td>The date and time of last data pull, so TEI can send the modified data since the last pull save point.  <br />Example: 2023-09-02T10:20:00</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td>The page of records to return.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>The number of records to return per page.  <br />Example: 25.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>StartDate</td>\n<td>The start date of the event.  <br />Example: 2023-04-26T00:00:00</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>The end date of the event.  <br />Example: 2023-04-28T00:00:00</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>The customer friendly identification for the booking. For events this will be the last 12 digits of the ReservationID.  <br />Example: ffb4cc6345db.</td>\n</tr>\n<tr>\n<td>ReservationID</td>\n<td>The unique identifier for the reservation within TEI.  <br />Example: 94133134-1312-4050-8ef5-ffb4cc6345db.</td>\n</tr>\n<tr>\n<td>BookerContactID</td>\n<td>The unique identifier for the contact.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.</td>\n</tr>\n<tr>\n<td>BookingType</td>\n<td>The type of booking. For events, the type could be Event or Waitlist.  <br />Example: Event.</td>\n</tr>\n<tr>\n<td>IsWaitlist</td>\n<td>Indicates whether or not this booking is for a waitlisted package.  <br />Example: False.</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>The time in which the booking takes/took place.  <br />Example: 11:00:00</td>\n</tr>\n<tr>\n<td>EventID</td>\n<td>The unique identifier for the event.  <br />Example: TOUR30001948</td>\n</tr>\n<tr>\n<td>EventUID</td>\n<td>The unique identifier for the event used in the database. Used to book to the event.  <br />Example: 598510BC-214B-44DB-BBE0-8821967C34EA</td>\n</tr>\n<tr>\n<td>EventName</td>\n<td>The name of the event booked.  <br />Example: Silvercoast Golf Tournament.</td>\n</tr>\n<tr>\n<td>EventPackageName</td>\n<td>The name of the event package booked.  <br />Example: Tournament &amp; Dinner Package.</td>\n</tr>\n<tr>\n<td>EventTypeID</td>\n<td>The unique identifier of the event type.  <br />Example: 1</td>\n</tr>\n<tr>\n<td>EventTypeDescription</td>\n<td>The user friendly name for the event type  <br />Example: Golf Event</td>\n</tr>\n<tr>\n<td>PartySize</td>\n<td>The number of individuals within the booking.  <br />Example: 4</td>\n</tr>\n<tr>\n<td>Subtitle</td>\n<td>A description about the booking.  <br />Example: Tournament &amp; Dinner Package - Party of 4</td>\n</tr>\n<tr>\n<td>ReservationCancelled</td>\n<td>Whether or not the booking has already been cancelled.  <br />Example: false.</td>\n</tr>\n<tr>\n<td>ModifiedBy</td>\n<td>Which user ID made the modification to the booking.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td>The date of the last change made to this booking.  <br />Example: “2024-01-12T11:30:00\"</td>\n</tr>\n<tr>\n<td>PackageID</td>\n<td>The unique identifier given to the package.  <br />Example: REGPACKAGE01</td>\n</tr>\n<tr>\n<td>PackageUID</td>\n<td>The unique identifier given to the package in the database. Used for booking the package.  <br />Example: 738AFD41-E250-4C17-BAD7-97F139795146</td>\n</tr>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td>The order the contact should be displayed within the list.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name of the contact.  <br />Example: Aaron.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name of the contact.  <br />Example: Roque.</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>The unique member identification number for the contact.  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>ContactClassID</td>\n<td>Example: “Gold Member”, “Bronze Member”</td>\n</tr>\n<tr>\n<td>MemberStatusID</td>\n<td>Example: “Active”, “Suspended”</td>\n</tr>\n<tr>\n<td>EventRegistrantID</td>\n<td>The unique identifier for a specific registrant within an event.  <br />Example: 72bf4421-92d1-4480-94ea-63f9327811f6.</td>\n</tr>\n<tr>\n<td>EventRegistrantNote</td>\n<td>Any notes saved for the event registrant. Available in WV1.98+</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","BulkBookings","Events"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - Pass your own unique schema to the API.\nNew ID - TEI will return any modifications made since your last request.\nPreviously Used ID - TEI will return modifications from the session ID. Use this in case the first attempt failed. Note, TEI will store session ID history for 2 days.\nExample: ca498010-bf53-11ec-9d64-0242ac120002</p>\n","type":"text/plain"},"key":"SessionID","value":"ca498010-bf53-11ec-9d64-0242ac120178"},{"description":{"content":"<p>REQUIRED - The date and time of last data pull, so TEI can send the modified data since the last pull save point.\nExample: 2023-09-02T10:20:00</p>\n","type":"text/plain"},"key":"DateTime","value":"2024-01-30T15:20:00"},{"description":{"content":"<p>The page of records to return.</p>\n","type":"text/plain"},"key":"PageNumber","value":"1"},{"description":{"content":"<p>The number of records to return per page.</p>\n","type":"text/plain"},"key":"PageSize","value":"50"}],"variable":[]}},"response":[{"id":"cee1baac-4afc-41e7-b97e-fe4cf72c572d","name":"BulkGetEventBookings","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/api/v1/BulkBookings/Events?SessionID=ca498010-bf53-11ec-9d64-0242ac120178&DateTime=2024-01-30T15:20:00&PageNumber=1&PageSize=50","host":["{{base_url}}"],"path":["api","v1","BulkBookings","Events"],"query":[{"key":"SessionID","value":"ca498010-bf53-11ec-9d64-0242ac120178","description":"REQUIRED - Pass your own unique schema to the API.\nNew ID - TEI will return any modifications made since your last request.\nPreviously Used ID - TEI will return modifications from the session ID. Use this in case the first attempt failed. Note, TEI will store session ID history for 2 days.\nExample: ca498010-bf53-11ec-9d64-0242ac120002"},{"key":"DateTime","value":"2024-01-30T15:20:00","description":"REQUIRED - The date and time of last data pull, so TEI can send the modified data since the last pull save point.\nExample: 2023-09-02T10:20:00"},{"key":"PageNumber","value":"1","description":"The page of records to return."},{"key":"PageSize","value":"50","description":"The number of records to return per page."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"  {\r\n  \"StartDate\": \"2023-10-16T00:00:00\",\r\n  \"EndDate\": \"2024-10-17T00:00:00\",\r\n  \"ReferenceID\": \"ffb4cc6345db\",\r\n  \"ReservationID\": \"94133134-1312-4050-8ef5-ffb4cc6345db\",\r\n  \"BookerContactID\": \"71F61FAB-9251-41BB-86C9-43EC68A0BBE3\",\r\n  \"BookingType\": \"Event\",\r\n  \"IsWaitlist\": false,\r\n  \"Time\": \"00:00:00\",\r\n  \"EventID\": \"TOUR30001948\",\r\n  \"EventUID\": \"598510BC-214B-44DB-BBE0-8821967C34EA\",\r\n  \"EventName\": \"Halloween Tournmanet\",\r\n  \"EventPackageName\": \"SIMPLE WEB 2\",\r\n  \"EventTypeID\": 1,\r\n  \"EventTypeDescription\": \"Tournament\",\r\n  \"PartySize\": 2,\r\n  \"Subtitle\": \"Halloween Tournmanet - 2023-10-16\",\r\n  \"ReservationCancelled\": false,\r\n  \"ModifiedBy\": \"3333\",\r\n  \"LastModifiedDate\": \"2024-01-19T00:00:00\",\r\n  \"PackageID\": \"REGPACKAGE01\",\r\n  \"PackageUID\": \"738AFD41-E250-4C17-BAD7-97F139795146\",\r\n  \"GroupDetails\": [\r\n                {\r\n                    \"ContactID\": \"2b4fa45c-d2e3-46ca-8cf0-119ee06096ef\",\r\n                    \"SortOrder\": 1,\r\n                    \"FirstName\": \"Ian\",\r\n                    \"LastName\": \"Robinson\",\r\n                    \"MemberID\": \"24\",\r\n                    \"ContactClassID\": \"GOLD MEMBER\",\r\n                    \"MemberStatusID\": \"ACTIVE\",\r\n                    \"EventRegistrantID\": \"72bf4421-92d1-4480-94ea-63f9327811f6\",\r\n                    \"EventRegistrantNote\": \"Test Note.\"\r\n                },\r\n                {\r\n                    \"ContactID\": \"88888888-8888-8888-8888-888888888888\",\r\n                    \"SortOrder\": 2,\r\n                    \"FirstName\": \"Hold/TBD\",\r\n                    \"LastName\": \"\",\r\n                    \"MemberID\": \"\",\r\n                    \"ContactClassID\": \"\",\r\n                    \"MemberStatusID\": \"\",\r\n                    \"EventRegistrantID\": \"72bf4421-92d1-4480-94ea-63e9328811f7\",\r\n                    \"EventRegistrantNote\": \"Test Note.\"\r\n                }\r\n            ]\r\n}"}],"_postman_id":"068ea20a-db3a-4889-b612-47cef42c670f"},{"name":"BulkGetTeeTimes","id":"16ba835e-61c1-42b2-be16-e3b7576900f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/BulkBookings/TeeTimes?SessionID=ca498010-bf53-11ec-9d64-0242ac120002&DateTime=2025-09-02T10:20:00&PageNumber=1&PageSize=50","description":"<p>Provides a list of any changes made to tee time reservations since the last request from a staging DB table. Only reservations which have been modified since the last request will be provided.</p>\n<p><em>Please note, to determine if the tee time may be cancelled or editted, you must use the</em> <a href=\"https://totaleintegrated.atlassian.net/wiki/spaces/TPP/pages/2196013057\"><i>GetItinerary API</i></a> <em>for real-time validation.</em></p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.100.0</p>\n<p><em>*Enhancements in Web V1.100 include TeeSheetDisplayTime, StartHole, TeeSheetDisplayHole.</em></p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SessionID REQUIRED</td>\n<td>Pass your own unique schema to the API.  <br />  <br />New ID - TEI will return any modifications made since your last request.  <br />  <br />Previously Used ID - TEI will return modifications from the session ID. Use this in case the first attempt failed. Note, TEI will store session ID history for 2 days.  <br />  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>DateTime REQUIRED</td>\n<td>The date and time of last data pull, so TEI can send the modified data since the last pull save point.  <br />Example: 2023-09-02T10:20:00</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td>The page of records to return.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>The number of records to return per page.  <br />Example: 25.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Date</td>\n<td>The start date of the booking.  <br />Example: 2023-04-26</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>The customer friendly identification for the booking.  <br />Example: 946336.</td>\n</tr>\n<tr>\n<td>ReservationID</td>\n<td>The unique identifier for the reservation within TEI. For tee times this is it’s TeeTimeID.  <br />Example: 5de70f17a-560d-454d-909e-59ac0de4168f.</td>\n</tr>\n<tr>\n<td>BookerContactID</td>\n<td>The unique identifier for the contact. This is Contact ID of the user who created the booking.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.</td>\n</tr>\n<tr>\n<td>BookingType</td>\n<td>The type of booking.  <br />Example: TeeTime</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>The time in which the booking takes/took place.  <br />Example: 11:41:00</td>\n</tr>\n<tr>\n<td>TeeSheetDisplayTime</td>\n<td>An override value used to replace the standard tee time shown on the tee sheet. Commonly used for shotgun starts where multiple groups begin play at the same time.  <br />Example: 9:00AM.</td>\n</tr>\n<tr>\n<td>StartHole</td>\n<td>StartHoleThe hole the tee time will start from.  <br />  <br />Example: 1</td>\n</tr>\n<tr>\n<td>TeeSheetDisplayHole</td>\n<td>An override value that replaces the standard starting tee (1 or 10) with a custom hole designation. Used for shotgun starts where groups begin on different holes simultaneously.  <br />Example: 5.</td>\n</tr>\n<tr>\n<td>CourseName</td>\n<td>The name of the course which was booked.  <br />Example: Orca Course</td>\n</tr>\n<tr>\n<td>PartySize</td>\n<td>The number of individuals within the booking.  <br />Example: 4.</td>\n</tr>\n<tr>\n<td>Subtitle</td>\n<td>A description about the booking.  <br />Example: Orca Course - 4 Players.</td>\n</tr>\n<tr>\n<td>Notes</td>\n<td>Any notes added to the booking by staff.</td>\n</tr>\n<tr>\n<td>ReservationCancelled</td>\n<td>Whether or not the booking has already been cancelled.  <br />Example: false.</td>\n</tr>\n<tr>\n<td>CreatedDate</td>\n<td>The date and time the booking was created.  <br />  <br />Example: 2023-04-26T12:00:00</td>\n</tr>\n<tr>\n<td>ModifiedDate</td>\n<td>The date and time the booking was last modified.  <br />  <br />Example: 2023-04-26T12:00:00</td>\n</tr>\n<tr>\n<td>ModifiedBy</td>\n<td>Which user ID made the modification to the booking.</td>\n</tr>\n<tr>\n<td><strong>GroupDetails (List):</strong></td>\n<td></td>\n</tr>\n<tr>\n<td>TeeTimeID</td>\n<td>The unique tee time ID for the player’s slot in the booking  <br />  <br />Example: d390eeb1-27aa-4f94-ab72-50e1389d0e6e</td>\n</tr>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td>The order the contact should be displayed within the list.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name of the contact.  <br />Example: Aaron.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name of the contact.  <br />Example: Roque.</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>The unique member identification number for the contact.  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>ContactClassID</td>\n<td>Example: “Gold Member”, “Bronze Member”</td>\n</tr>\n<tr>\n<td>MemberStatusID</td>\n<td>Example: “Active”, “Suspended”</td>\n</tr>\n<tr>\n<td>CartType</td>\n<td>The type of transportation requested for the booking. Options include: Walk, PullCart, PowerCart.  <br />Example: PowerCart</td>\n</tr>\n<tr>\n<td>GroupUID</td>\n<td>The unique identifier for the tee time attachment group.  <br />Example: 6c0c6a56-360c-40aa-aa09-43bbda532026.</td>\n</tr>\n<tr>\n<td>GroupName</td>\n<td>The customer-friendly name given to the attachment group.  <br />Example: Driving Range</td>\n</tr>\n<tr>\n<td>GroupSortOrder</td>\n<td>The order in which this group should be displayed.  <br />Example: 1</td>\n</tr>\n<tr>\n<td>AttachmentUID</td>\n<td>The unique identifier for the tee time attachment.  <br />Example: 70b60873-e03a-413e-9d27-fd3574df80de</td>\n</tr>\n<tr>\n<td>Abbreviation</td>\n<td>The abbreviated ‘shortcode’ name for the tee time attachment.  <br />Example: 90BLS.</td>\n</tr>\n<tr>\n<td>ItemDescription</td>\n<td>The item name given to the retail item used for the attachment.  <br />Example: Driving Range Balls - 90.</td>\n</tr>\n<tr>\n<td>ItemID</td>\n<td>The unique identifier given to the retail item of the attachment.  <br />Example: DrivingRange90.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td>The order in which this attachment should be displayed.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>Price</td>\n<td>The subtotal price for the tee time attachment.  <br />Example: 22.50</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","BulkBookings","TeeTimes"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - Pass your own unique schema to the API.\nNew ID - TEI will return any modifications made since your last request.\nPreviously Used ID - TEI will return modifications from the session ID. Use this in case the first attempt failed. Note, TEI will store session ID history for 2 days.\nExample: ca498010-bf53-11ec-9d64-0242ac120002</p>\n","type":"text/plain"},"key":"SessionID","value":"ca498010-bf53-11ec-9d64-0242ac120002"},{"description":{"content":"<p>REQUIRED - The date and time of last data pull, so TEI can send the modified data since the last pull save point.\nExample: 2023-09-02T10:20:00</p>\n","type":"text/plain"},"key":"DateTime","value":"2025-09-02T10:20:00"},{"description":{"content":"<p>The page of records to return.\nExample: 1.</p>\n","type":"text/plain"},"key":"PageNumber","value":"1"},{"description":{"content":"<p>The number of records to return per page.\nExample: 25.</p>\n","type":"text/plain"},"key":"PageSize","value":"50"}],"variable":[]}},"response":[{"id":"c4494d1e-2326-49c6-a745-d67b2701afa0","name":"BulkGetTeeTimes","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/api/v1/BulkBookings/TeeTimes?SessionID=ca498010-bf53-11ec-9d64-0242ac120002&DateTime=2025-09-02T10:20:00&PageNumber=1&PageSize=50","host":["{{base_url}}"],"path":["api","v1","BulkBookings","TeeTimes"],"query":[{"key":"SessionID","value":"ca498010-bf53-11ec-9d64-0242ac120002","description":"REQUIRED - Pass your own unique schema to the API.\nNew ID - TEI will return any modifications made since your last request.\nPreviously Used ID - TEI will return modifications from the session ID. Use this in case the first attempt failed. Note, TEI will store session ID history for 2 days.\nExample: ca498010-bf53-11ec-9d64-0242ac120002"},{"key":"DateTime","value":"2025-09-02T10:20:00","description":"REQUIRED - The date and time of last data pull, so TEI can send the modified data since the last pull save point.\nExample: 2023-09-02T10:20:00"},{"key":"PageNumber","value":"1","description":"The page of records to return.\nExample: 1."},{"key":"PageSize","value":"50","description":"The number of records to return per page.\nExample: 25."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"BulkBookingsResponses\": [\r\n        {\r\n            \"Date\": \"2023-04-26T00:00:00\",\r\n            \"ReferenceID\": \"946336\",\r\n            \"ReservationID\": \"5de70f17a-560d-454d-909e-59ac0de4168f\",\r\n            \"BookerContactID\": \"71F61FAB-9251-41BB-86C9-43EC68A0BBE3\",\r\n            \"BookingType\": \"Tee Time\",\r\n            \"Time\": \"11:41:52\",\r\n            \"TeeSheetDisplayTime\": \"07:10 PM\",\r\n            \"StartHole\": 0,\r\n            \"TeeSheetDisplayHole\": null,\r\n            \"CourseName\": \"Orca Course\",\r\n            \"PartySize\": 4,\r\n            \"Subtitle\": \"Orca Course - 4 Players\",\r\n            \"Notes\": \"\",\r\n            \"ReservationCancelled\": false,\r\n            \"CreatedDate\": \"2023-04-26T12:00:00\",\r\n            \"ModifiedBy\": \"1234\",\r\n            \"ModifiedDate\": \"2023-04-26T12:00:00\",\r\n            \"GroupDetails\": [\r\n                {\r\n                    \"TeeTimeID\": \"a6ee1acc-00aa-4b06-91be-f380f8429e8c\",\r\n                    \"ContactID\": \"71f61fab-9251-41bb-86c9-43ec68a0bbe3\",\r\n                    \"SortOrder\": 1,\r\n                    \"FirstName\": \"Aaron\",\r\n                    \"LastName\": \"Roque\",\r\n                    \"MemberID\": \"F001\",\r\n                    \"ContactClassID\": \"Gold Member\",\r\n                    \"MemberStatusID\": \"Active\",\r\n                    \"CartType\": \"PowerCart\"\r\n                }\r\n                            ],\r\n                    \"AttachmentGroups\": [\r\n                        {\r\n                        \"GroupUID\": \"6c3ab969-865e-426e-885d-8e48761c6b99\",\r\n                        \"GroupName\": \"Driving Range\",\r\n                        \"GroupSortOrder\": 1,\r\n                        \"Attachments\": [\r\n                             {\r\n                             \"AttachmentUID\": \"e8dd7ae3-5bea-4b95-b14a-61c9d26cabc7\",\r\n                             \"Abbreviation\": \"90BLS\",\r\n                             \"ItemDescription\": \"Driving Range Balls - 90\",\r\n                             \"ItemID\": \"DrivingRange90\",\r\n                             \"SortOrder\": 1,\r\n                             \"Price\": 22.50\r\n                             }\r\n                                       ]\r\n                        }\r\n                                       ]\r\n                }\r\n}"}],"_postman_id":"16ba835e-61c1-42b2-be16-e3b7576900f1"},{"name":"ItineraryV2.0","event":[{"listen":"test","script":{"id":"d8dc50b1-5bcf-4f46-a7a6-883473a5228d","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"3ed6e64a-5955-4e0f-a77c-44b52f23a585","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v2/MyAccount/Itinerary?SessionID=70dd923b-ce3f-41c7-89f5-ad01f70a5582&ContactID=468c2eb9-096e-41c3-a06b-b7d9532cc431&StartDate=2026-03-19&EndDate=2026-09-30&BookingType=2&PageNumber=1&PageSize=25","description":"<p>Returns a list of a specific contact’s bookings by date range.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SessionID REQUIRED</td>\n<td>The unique identifier for the logged in user’s session.  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>ContactID REQUIRED</td>\n<td>The unique contact identifier for the contact you’d like to pull booking for. Example: ca498010-bf53-11ec-9d64-0242ac120002.</td>\n</tr>\n<tr>\n<td>StartDate REQUIRED</td>\n<td>The first date you’d like to pull bookings for.</td>\n</tr>\n<tr>\n<td>EndDate REQUIRED</td>\n<td>The last date you’d like to pull bookings for.</td>\n</tr>\n<tr>\n<td>BookingType</td>\n<td>Filter results to only pull bookings of this type. Options include:  <br />All (0),  <br />TeeTime (1)  <br />Events (2)  <br />General (3)  <br /><del>LegacyDining = 4,  <br /></del>TeeTimeRequest (5)  <br />Lodging (6)  <br />OpenTableDining (7)  <br />uScheduleActivities (8)</td>\n</tr>\n<tr>\n<td>PageNumber</td>\n<td>The page of records to return.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>The number of records to return per page.  <br />Example: 25.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Date</td>\n<td>The date of the group of booking(s).  <br />Example: 2023-04-26T00:00:000Z</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>The start date of the booking.  <br />Example: 2023-04-26T00:00:000Z</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>The end date of the event. Other booking types will return null.  <br />Example: 2023-04-28T00:00:000Z</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>The customer friendly identification for the booking.  <br />Example: 94.</td>\n</tr>\n<tr>\n<td>ReservationID</td>\n<td>The unique identifier for the reservation within TEI. Use this ID for managing a booking.  <br />Example: de70f17a-560d-454d-909e-59ac0de4168f.</td>\n</tr>\n<tr>\n<td>BookingType</td>\n<td>The type of booking.  <br />Example: TeeTime</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>The time in which the booking takes/took place.  <br />Example: 11:40:00:00:000Z</td>\n</tr>\n<tr>\n<td>PartySize</td>\n<td>The number of individuals within the booking.  <br />Example: 4.  <br />Note: Events do not display party size.</td>\n</tr>\n<tr>\n<td>CourseName</td>\n<td>The course name where the booking takes place. Returns null unless it’s a tee time booking.  <br />Example: Orca Course.</td>\n</tr>\n<tr>\n<td>RestaurantName</td>\n<td>The restaurant name where the booking takes place. Returns null unless it’s a OpenTable dining reservation.  <br />Example: Coastal Lounge.</td>\n</tr>\n<tr>\n<td>ServiceName</td>\n<td>The service or event name for any uSchedule activity bookings. Returns null unless it’s a uSchedule reservation.  <br />Example: ATV Tours.</td>\n</tr>\n<tr>\n<td>EventName</td>\n<td>The name of the event booked. Returns null unless it’s a TEI event reservation.  <br />Example: Silvercoast Golf Tournament.</td>\n</tr>\n<tr>\n<td>EventPackageName</td>\n<td>The name of the event package booked. Returns null unless it’s a TEI event reservation.  <br />Example: Tournament &amp; Dinner Package.</td>\n</tr>\n<tr>\n<td>IsWaitlist</td>\n<td>Indicates whether or not this booking is for a waitlisted event package. Booking which are not for an event will return null.  <br />Example: False.</td>\n</tr>\n<tr>\n<td>EventTypeID</td>\n<td>The unique identifier of the event type.  <br />Example: 1</td>\n</tr>\n<tr>\n<td>EventTypeDescription</td>\n<td>The user friendly name for the event type  <br />Example: Golf Event</td>\n</tr>\n<tr>\n<td>Subtitle</td>\n<td>A description about the booking.  <br />Example: Islander Oyster Bar - Party of 4.</td>\n</tr>\n<tr>\n<td>ReservationCancelled</td>\n<td>Whether or not the booking has already been cancelled.  <br />Example: false.</td>\n</tr>\n<tr>\n<td>ModifiedBy</td>\n<td>Which user ID made the modification to the booking.</td>\n</tr>\n<tr>\n<td>ManageURL</td>\n<td>The web link to access the manage page for this booking.  <br />Example: /web/activities/reservation-details/854.</td>\n</tr>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the contact.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td>The order the contact should be displayed within the list.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name of the contact.  <br />Example: Aaron.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name of the contact.  <br />Example: Roque.</td>\n</tr>\n<tr>\n<td>MemberID</td>\n<td>The unique member identification number for the contact.  <br />Example: F001.</td>\n</tr>\n<tr>\n<td>ContactClassID</td>\n<td>Example: “Gold Member”, “Bronze Member”</td>\n</tr>\n<tr>\n<td>MemberStatusID</td>\n<td>Example: “Active”, “Suspended”</td>\n</tr>\n<tr>\n<td>EventRegistrantID</td>\n<td>The unique identifier for a specific registrant within an event. Will be null for other booking types.  <br />Example: 72bf4421-92d1-4480-94ea-63f9327811f6.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v2","MyAccount","Itinerary"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique identifier for the logged in user’s session. Example: ca498010-bf53-11ec-9d64-0242ac120002</p>\n","type":"text/plain"},"key":"SessionID","value":"70dd923b-ce3f-41c7-89f5-ad01f70a5582"},{"description":{"content":"<p>REQUIRED - The unique contact identifier for the contact you’d like to pull booking for. Example: ca498010-bf53-11ec-9d64-0242ac120002.</p>\n","type":"text/plain"},"key":"ContactID","value":"468c2eb9-096e-41c3-a06b-b7d9532cc431"},{"description":{"content":"<p>REQUIRED  - The first date you’d like to pull bookings for.</p>\n","type":"text/plain"},"key":"StartDate","value":"2026-03-19"},{"description":{"content":"<p>REQUIRED - The last date you’d like to pull bookings for.</p>\n","type":"text/plain"},"key":"EndDate","value":"2026-09-30"},{"description":{"content":"<p>Filter results to only pull bookings of this type. Options include:\nAll (0),\nTeeTime (1)\nEvents (2)\nGeneral (3)\nLegacyDining = 4,\nTeeTimeRequest (5)\nLodging (6)\nOpenTableDining (7)\n uScheduleActivities (8)</p>\n","type":"text/plain"},"key":"BookingType","value":"2"},{"description":{"content":"<p>The page of records to return.\nExample: 1.</p>\n","type":"text/plain"},"key":"PageNumber","value":"1"},{"description":{"content":"<p>The number of records to return per page.\nExample: 25.</p>\n","type":"text/plain"},"key":"PageSize","value":"25"}],"variable":[]}},"response":[{"id":"eac06e59-cb93-4a6d-ab54-39e5be3fa259","name":"ItineraryV2.0","originalRequest":{"method":"GET","header":[{"key":"Bearer","value":"CfDJ8OtuScpyptxDoXbuJ4rA5EujwbaussUeJxUMFnkjP8l_VdDNUj0m-i9li7Tsmz4F2TqzNaqxuCnPYGm0lcOlw068SowvusZ8oH54VjnbaliKkbyj1YRWRQ5UMYHi9xaOxTF6ZzKYnT1RQCIq7dGiNsbbNVtCDrjk5Xaf4uhY28GgmYXMX-CF5UrjiE2qpbwqOjDScmWUsCYyp5beiJ4WQRb_xcIcTJVbeFwFvOBd6SHungrpHWbMovIWFYqhCCDtiCjQFpD48rjg5m313LpGdI0P0oL08exmNIn7cFI7hxegR2QE3DKd-cbeYrXjNY8ke-WcDh6JLHu1k1ppXftNrq7FGuj1_cGXXP1wfF4DdY-MxsGolycyp2vrwMG8vR-q8abs-WDiKN_7BgKIgS24wk6v0P5TyQiFE0_FG2pkqmy1kBeMP_DqgysfSyGlHakZy0V757khlEyZmW7h5SOrwW7EYBDcxtl93419I536hERa6duX6TnvhfN9VOzZAvMnmA","type":"text","disabled":true},{"key":"Path","value":"","type":"text","disabled":true}],"url":{"raw":"{{base_url}}/api/v2/MyAccount/Itinerary?SessionID=70dd923b-ce3f-41c7-89f5-ad01f70a5581&ContactID=468c2eb9-096e-41c3-a06b-b7d9532cc431&StartDate=2024-08-19&EndDate=2024-09-30&BookingType=0&PageNumber=1&PageSize=40","host":["{{base_url}}"],"path":["api","v2","MyAccount","Itinerary"],"query":[{"key":"SessionID","value":"70dd923b-ce3f-41c7-89f5-ad01f70a5581","description":"REQUIRED - The unique identifier for the logged in user’s session. Example: ca498010-bf53-11ec-9d64-0242ac120002"},{"key":"ContactID","value":"468c2eb9-096e-41c3-a06b-b7d9532cc431","description":"REQUIRED - The unique contact identifier for the contact you’d like to pull booking for. Example: ca498010-bf53-11ec-9d64-0242ac120002."},{"key":"StartDate","value":"2024-08-19","description":"REQUIRED  - The first date you’d like to pull bookings for."},{"key":"EndDate","value":"2024-09-30","description":"REQUIRED - The last date you’d like to pull bookings for."},{"key":"BookingType","value":"0","description":"Filter results to only pull bookings of this type. Options include:\nAll (0),\nTeeTime (1)\nEvents (2)\nGeneral (3)\nLegacyDining = 4,\nTeeTimeRequest (5)\nLodging (6)\nOpenTableDining (7)\n uScheduleActivities (8)"},{"key":"PageNumber","value":"1","description":"The page of records to return.\nExample: 1."},{"key":"PageSize","value":"40","description":"The number of records to return per page.\nExample: 25."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"Itineraries\": [\r\n       .\r\n       .\r\n       .\r\n        {\r\n            \"Date\": \"2023-11-21T00:00:00\",\r\n            \"Bookings\": [\r\n                {\r\n                    \"StartDate\": \"2023-11-21T00:00:00\",\r\n                    \"EndDate\": \"2024-11-22T00:00:00\",\r\n                    \"ReferenceID\": \"D626DFCA-0748-45FB-80A2-B95EEB869C45\",\r\n                    \"ReservationID\": \"D626DFCA\",\r\n                    \"BookingType\": \"Events\",\r\n                    \"Time\": \"00:00:00\",\r\n                    \"PartySize\": 1,\r\n                    \"CourseName\": null,\r\n                    \"RestaurantName\": null,\r\n                    \"ServiceName\": null,\r\n                    \"EventName\": \"2024 Pickleball Tournament\",\r\n                    \"EventPackageName\": \"Package Staging 2\",\r\n                    \"IsWaitlist\": false,\r\n                    \"EventTypeID\": 1,\r\n                    \"EventTypeDescription\": \"Tournament\",\r\n                    \"Subtitle\": \"2024 Pickleball Tournament - 2023-11-21\",\r\n                    \"ReservationCancelled\": false,\r\n                    \"ModifiedBy\": \"host\",\r\n                    \"GroupDetails\": [\r\n                        {\r\n                            \"ContactID\": \"ffe7610f-fab2-4ba7-a42e-c3b184ef2c3e\",\r\n                            \"SortOrder\": 1,\r\n                            \"FirstName\": \"Ian\",\r\n                            \"LastName\": \"Robinson\",\r\n                            \"MemberID\": \"24\",\r\n                            \"ContactClassID\": \"Gold MEMBER\",\r\n                            \"MemberStatusID\": \"ACTIVE\",\r\n                            \"EventRegistrantID\": \"72bf4421-92d1-4480-94ea-63f9327811f6\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"3ed6e64a-5955-4e0f-a77c-44b52f23a585"}],"id":"21a90698-f411-4154-838b-b7a14b61a311","description":"<p>These APIs allow partners to view bookings for contacts within the TEI system.</p>\n","_postman_id":"21a90698-f411-4154-838b-b7a14b61a311"},{"name":"Tee Sheet","item":[{"name":"GetTeeSheetBookings","id":"8f52af9c-2418-403d-89c3-f69fcc87efa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{base_url}}/api/v2/TeeTimes/TeeTimeBookings?CourseID=TIMBERWOLF&StartDate=2026-02-02T10:20:00&EndDate=2026-02-13T10:20:00&IncludedStatuses=CheckedIn, Paid, Unpaid&LastModifiedDate=2021-03-02T10:20:00","description":"<p>Fetch all tee time bookings on a tee sheet.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.100.0</p>\n<p><em>*Enhancements in Web V1.100 include TeeSheetDisplayTime, TeeSheetDisplayHole, PullCartPrice, Tax, Total, PrepaidAmount, DepositAmount.</em></p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseID REQUIRED  <br />  <br />Comma delineated for multiple.</td>\n<td>The unique course identifier for the course you’d like to pull bookings from. Example: CourseA.</td>\n</tr>\n<tr>\n<td>StartDate REQUIRED</td>\n<td>The course’s first local date and time to pull bookings from. Example: 2021-03-02T10:20:00</td>\n</tr>\n<tr>\n<td>EndDate REQUIRED</td>\n<td>The course’s last local date and time to pull bookings from. Example: 2021-03-02T10:20:00</td>\n</tr>\n<tr>\n<td>IncludedStatuses  <br />  <br />Comma delineated for multiple.</td>\n<td>The tee time statuses you would like to retrieve. Default retrieves all tee times. Parameter options include: CheckedIn, Paid, Unpaid.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td>Only pull bookings which have been updated since a certain date and time. Use to pull any net new changes since your last pull. Example: 2021-03-02T10:20:00</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TeeTime:</td>\n<td>-</td>\n</tr>\n<tr>\n<td>GroupUID</td>\n<td>The unique ID for the booking.  <br />  <br />Example: 856c4463-7b4e-42f8-ba88-3cceb88aae5c</td>\n</tr>\n<tr>\n<td>CourseID</td>\n<td>The unique course identifier the booking is on.  <br />  <br />Example: CourseA</td>\n</tr>\n<tr>\n<td>CourseName</td>\n<td>The course name the booking is on.  <br />  <br />Example: Orca.</td>\n</tr>\n<tr>\n<td>StartHole</td>\n<td>The hole the tee time will start from.  <br />  <br />Example: 1</td>\n</tr>\n<tr>\n<td>NumPlayers</td>\n<td>Number of players on tee time.  <br />  <br />Example: 3</td>\n</tr>\n<tr>\n<td>TeeTime</td>\n<td>The date and time of the tee time.  <br />  <br />Example: 2021-03-02T10:20:00</td>\n</tr>\n<tr>\n<td>TeeSheetDisplayTime</td>\n<td>An override value used to replace the standard tee time shown on the tee sheet. Commonly used for shotgun starts where multiple groups begin play at the same time.  <br />Example: 9:00AM.</td>\n</tr>\n<tr>\n<td>TeeSheetDisplayHole</td>\n<td>An override value that replaces the standard starting tee (1 or 10) with a custom hole designation. Used for shotgun starts where groups begin on different holes simultaneously.  <br />Example: 5.</td>\n</tr>\n<tr>\n<td>BookingType</td>\n<td>Example: Regular, Small Group, Event, Grouped.</td>\n</tr>\n<tr>\n<td>ConfirmationNumber</td>\n<td>12345</td>\n</tr>\n<tr>\n<td>IsDeleted</td>\n<td>False</td>\n</tr>\n<tr>\n<td>EventName</td>\n<td>If tee time is part of an event. Example: Golf Tournament</td>\n</tr>\n<tr>\n<td>GroupName</td>\n<td>If tee time is part of a small group. Example: John’s Group.</td>\n</tr>\n<tr>\n<td>Source</td>\n<td>Source refers to the channel, platform, or method through which the booking was made.  <br />  <br />Example: Local, Web-User</td>\n</tr>\n<tr>\n<td>CreatedDate</td>\n<td>The date and time the booking was added to the DB.</td>\n</tr>\n<tr>\n<td>ModifiedDate</td>\n<td>The date and time the booking was last modified in the DB.</td>\n</tr>\n<tr>\n<td>BookingNotes</td>\n<td>Any booking-level notes entered by the staff.</td>\n</tr>\n<tr>\n<td>TeeTimePlayer (List):</td>\n<td>-</td>\n</tr>\n<tr>\n<td>GroupUID</td>\n<td>The unique ID for the booking.  <br />  <br />Example: 856c4463-7b4e-42f8-ba88-3cceb88aae5c</td>\n</tr>\n<tr>\n<td>TeeTimeID</td>\n<td>The unique tee time ID for the player’s slot in the booking  <br />  <br />Example: d390eeb1-27aa-4f94-ab72-50e1389d0e6e</td>\n</tr>\n<tr>\n<td>PlayerNumber</td>\n<td>Example: 1</td>\n</tr>\n<tr>\n<td>PlayerHoles</td>\n<td>9 or 18. Example: 18.</td>\n</tr>\n<tr>\n<td>PlayerTransportation</td>\n<td>Example: Power Cart, No Cart, Pull Cart.</td>\n</tr>\n<tr>\n<td>PlayerName</td>\n<td>Example: Doe, John</td>\n</tr>\n<tr>\n<td>PlayerContactID</td>\n<td>The unique identifier for the player’s contact record.  <br />  <br />Example: ca498010-bf53-11ec-9d64-0242ac120002</td>\n</tr>\n<tr>\n<td>PlayerMemberID</td>\n<td>If player is a member. Example: 0001</td>\n</tr>\n<tr>\n<td>PlayerEmail</td>\n<td>Example: <a href=\"https://mailto:john.doe@dayrep.com\">john.doe@dayrep.com</a></td>\n</tr>\n<tr>\n<td>PlayerStatus</td>\n<td>Example: Paid-CheckedIn, Paid, Unpaid.</td>\n</tr>\n<tr>\n<td>GolfPrice</td>\n<td>Indicates the pre-tax price the player is expected (or has) paid for the round.</td>\n</tr>\n<tr>\n<td>PowerCartPrice</td>\n<td>The pre-tax amount the player is expected to pay (or has paid) for the power cart.</td>\n</tr>\n<tr>\n<td>PullCartPrice</td>\n<td>The pre-tax amount the player is expected to pay (or has paid) for the pull cart.</td>\n</tr>\n<tr>\n<td>Tax</td>\n<td>The total tax amount applied to the golf price and any cart fees (power or pull).</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>The full amount due for the round, including all applicable taxes and cart fees.</td>\n</tr>\n<tr>\n<td>PrepaidAmount</td>\n<td>The total amount the player has already prepaid toward the round.</td>\n</tr>\n<tr>\n<td>DepositAmount</td>\n<td>The deposit amount the player has paid for the round.</td>\n</tr>\n<tr>\n<td>PriceLevelID</td>\n<td>The unique identifier for the contact’s price level.  <br />  <br />Example: 10 OFF</td>\n</tr>\n<tr>\n<td>ContactClassID</td>\n<td>The unique identifier for the contact’s Contact Class.  <br />  <br />Example: BRONZEMEMBER</td>\n</tr>\n<tr>\n<td>PrimaryClubCompanyID</td>\n<td>The unique identifier for the contact’s primary club.  <br />  <br />Example: 530</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"ab278094-c454-4eb3-a466-fcf06b25beb0","id":"ab278094-c454-4eb3-a466-fcf06b25beb0","name":"Tee Sheet","type":"folder"}},"urlObject":{"path":["api","v2","TeeTimes","TeeTimeBookings"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique course identifier for the course you’d like to pull bookings from. Example: CourseA.</p>\n","type":"text/plain"},"key":"CourseID","value":"TIMBERWOLF"},{"description":{"content":"<p>REQUIRED - The course’s first local date and time to pull bookings from. Example: 2021-03-02T10:20:00</p>\n","type":"text/plain"},"key":"StartDate","value":"2026-02-02T10:20:00"},{"description":{"content":"<p>REQUIRED - The course’s last local date and time to pull bookings from. Example: 2021-03-02T10:20:00</p>\n","type":"text/plain"},"key":"EndDate","value":"2026-02-13T10:20:00"},{"description":{"content":"<p>The tee time statuses you would like to retrieve. Default retrieves all tee times. Parameter options include: CheckedIn, Paid, Unpaid.</p>\n","type":"text/plain"},"key":"IncludedStatuses","value":"CheckedIn, Paid, Unpaid"},{"description":{"content":"<p>Only pull bookings which have been updated since a certain date and time. Use to pull any net new changes since your last pull. Example: 2021-03-02T10:20:00</p>\n","type":"text/plain"},"key":"LastModifiedDate","value":"2021-03-02T10:20:00"}],"variable":[]}},"response":[{"id":"955bed01-541c-4961-8587-56311160b24a","name":"GetTeeSheetBookings","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://courseco-gateway.totaleintegrated.net/api/v3/TeeTimes/TeeTimeBookings?CourseID=CourseA&StartDate=2021-03-02T10:20:00&EndDate=2021-03-02T10:20:00&IncludedStatuses=CheckedIn, Paid, Unpaid&LastModifiedDate=2021-03-02T10:20:00","protocol":"https","host":["courseco-gateway","totaleintegrated","net"],"path":["api","v3","TeeTimes","TeeTimeBookings"],"query":[{"key":"CourseID","value":"CourseA","description":"REQUIRED - The unique course identifier for the course you’d like to pull bookings from. Example: CourseA."},{"key":"StartDate","value":"2021-03-02T10:20:00","description":"REQUIRED - The course’s first local date and time to pull bookings from. Example: 2021-03-02T10:20:00"},{"key":"EndDate","value":"2021-03-02T10:20:00","description":"REQUIRED - The course’s last local date and time to pull bookings from. Example: 2021-03-02T10:20:00"},{"key":"IncludedStatuses","value":"CheckedIn, Paid, Unpaid","description":"The tee time statuses you would like to retrieve. Default retrieves all tee times. Parameter options include: CheckedIn, Paid, Unpaid."},{"key":"LastModifiedDate","value":"2021-03-02T10:20:00","description":"Only pull bookings which have been updated since a certain date and time. Use to pull any net new changes since your last pull. Example: 2021-03-02T10:20:00"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"TeeTime\": {\n        \"GroupUID\": \"856c4463-7b4e-42f8-ba88-3cceb88aae5c\",\n        \"CourseID\": \"CourseA\",\n        \"CourseName\": \"Orca\",\n        \"StartHole\": 1,\n        \"NumPlayers\": 3,\n        \"TeeTime\": \"2021-03-02T10:20:00\",\n        \"DisplayTime\": \"9:00AM\",\n        \"DisplayHole\": \"5\",\n        \"BookingType\": \"Regular\",\n        \"ConfirmationNumber\": \"12345\",\n        \"IsDeleted\": false,\n        \"EventName\": \"Golf Tournament\",\n        \"GroupName\": \"John’s Group\",\n        \"Source\": \"BackOffice/POS\",\n        \"CreatedDate\": \"2021-02-28T14:35:00\",\n        \"TeeTimePlayer\": [\n            {\n                \"GroupUID\": \"856c4463-7b4e-42f8-ba88-3cceb88aae5c\",\n                \"TeeTimeID\": \"d390eeb1-27aa-4f94-ab72-50e1389d0e6e\",\n                \"PlayerNumber\": 1,\n                \"PlayerHoles\": 18,\n                \"PlayerTransportation\": \"Power Cart\",\n                \"PlayerName\": \"Doe, John\",\n                \"ContactID\": \"ca498010-bf53-11ec-9d64-0242ac120002\",\n                \"PlayerMemberID\": \"0001\",\n                \"PlayerEmail\": \"john.doe@dayrep.com\",\n                \"PlayerStatus\": \"Paid-CheckedIn\",\n                \"GolfPrice\": 80,\n                \"PowerCartPrice\": 10,\n                \"PullCartPrice\": 0,\n                \"Tax\": 10,\n                \"Total\": 100,\n                \"PrepaidAmount\": 100,\n                \"DepositAmount\": 0,\n                \"PriceLevelID\": \"10 OFF\",\n                \"ContactClassID\": \"BRONZEMEMBER\",\n                \"PrimaryClubCompanyID\": \"530\"\n            },\n            {\n                \"GroupUID\": \"856c4463-7b4e-42f8-ba88-3cceb88aae5c\",\n                \"TeeTimeID\": \"e845c210-59e3-44af-9f31-32bdfb8f601c\",\n                \"PlayerNumber\": 2,\n                \"PlayerHoles\": 18,\n                \"PlayerTransportation\": \"Pull Cart\",\n                \"PlayerName\": \"Smith, Jane\",\n                \"ContactID\": \"ca498011-bf53-11ec-9d64-0242ac120003\",\n                \"PlayerMemberID\": \"0002\",\n                \"PlayerEmail\": \"jane.smith@dayrep.com\",\n                \"PlayerStatus\": \"Paid\",\n                \"GolfPrice\": 80,\n                \"PowerCartPrice\": 10,\n                \"PullCartPrice\": 0,\n                \"Tax\": 10,\n                \"Total\": 100,\n                \"PrepaidAmount\": 100,\n                \"DepositAmount\": 0,\n                \"PriceLevelID\": \"10 OFF\",\n                \"ContactClassID\": \"BRONZEMEMBER\",\n                \"PrimaryClubCompanyID\": \"530\"\n            },\n            {\n                \"GroupUID\": \"856c4463-7b4e-42f8-ba88-3cceb88aae5c\",\n                \"TeeTimeID\": \"f912b251-32c7-4dbb-98e2-9f65b16b17c1\",\n                \"PlayerNumber\": 3,\n                \"PlayerHoles\": 9,\n                \"PlayerTransportation\": \"No Cart\",\n                \"PlayerName\": \"Lee, Chris\",\n                \"ContactID\": \"ca498012-bf53-11ec-9d64-0242ac120004\",\n                \"PlayerMemberID\": \"0003\",\n                \"PlayerEmail\": \"chris.lee@dayrep.com\",\n                \"PlayerStatus\": \"Unpaid\",\n                \"GolfPrice\": 80,\n                \"PowerCartPrice\": 10,\n                \"PullCartPrice\": 0,\n                \"Tax\": 10,\n                \"Total\": 100,\n                \"PrepaidAmount\": 100,\n                \"DepositAmount\": 0,\n                \"PriceLevelID\": \"STANDARD\",\n                \"ContactClassID\": \"SILVERMEMBER\",\n                \"PrimaryClubCompanyID\": \"530\"\n            }\n        ]\n    }\n}"}],"_postman_id":"8f52af9c-2418-403d-89c3-f69fcc87efa5"},{"name":"GetTeeSheetAvailability","id":"0777587c-ef6a-4689-879f-ce0c0fe45ca8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v3/TeeTimes/TeeTimeBookings/GetTeeSheetAvailability?CourseID=GC002&TeeTimeDate=2024-01-12","description":"<p>Ability to pull the tee sheet for a specific course and date and show availability for bookings. Differs from Get Tee Time Availability as this will return player names.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version:</strong> 1.100.0</p>\n<p><em>*Enhancements in Web V1.100 include TeeSheetDisplayHole.</em></p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseID REQUIRED</td>\n<td>The unique course identifier for the course you’d like to pull availability for.  <br />  <br />Example: CourseA.</td>\n</tr>\n<tr>\n<td>TeeTimeDate REQUIRED</td>\n<td>The course’s local date to pull availability for.  <br />  <br />Example: 2023-04-13</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseID</td>\n<td>The unique course identifier for the course.  <br />Example: CourseA.</td>\n</tr>\n<tr>\n<td>CourseName</td>\n<td>The user-friendly name for the course.  <br />Example: Orca Course.</td>\n</tr>\n<tr>\n<td>TeeSheetTime</td>\n<td>The date and time of the tee time pulled.  <br />Example: 2023-08-17T09:00:00</td>\n</tr>\n<tr>\n<td>TeeSheetDisplayTime</td>\n<td>An override value used to replace the standard tee time shown on the tee sheet. Commonly used for shotgun starts where multiple groups begin play at the same time.  <br />  <br />Example: 09:00 AM</td>\n</tr>\n<tr>\n<td>TeeSheetDisplayHole</td>\n<td>An override value that replaces the standard starting tee (1 or 10) with a custom hole designation. Used for shotgun starts where groups begin on different holes simultaneously.  <br />Example: 5.</td>\n</tr>\n<tr>\n<td>Player1</td>\n<td>The display name to show for player 1.  <br />Example: Irene Adler</td>\n</tr>\n<tr>\n<td>Player2</td>\n<td>The display name to show for player 2.  <br />Example: Jon Adler</td>\n</tr>\n<tr>\n<td>Player3</td>\n<td>The display name to show for player 3.  <br />Example: RESERVED</td>\n</tr>\n<tr>\n<td>Player4</td>\n<td>The display name to show for player 4.  <br />Example: OPEN</td>\n</tr>\n<tr>\n<td>Player5</td>\n<td>The display name to show for player 5.  <br />Example: OPEN</td>\n</tr>\n<tr>\n<td>FivePlayerTemplate</td>\n<td>Whether or not to show five available player slots for this tee time. 0 = false / 1 = true.  <br />Example: 0</td>\n</tr>\n<tr>\n<td>NumberOfPlayers</td>\n<td>The number of players booked on this tee time.  <br />Example: 2</td>\n</tr>\n<tr>\n<td>AvailableSlots</td>\n<td>The number of player slots available for the time.  <br />Example: 1,2,3,4</td>\n</tr>\n<tr>\n<td>StartHole</td>\n<td>The hole the tee time will start from.  <br />Example: FIRST</td>\n</tr>\n<tr>\n<td>Allow18</td>\n<td>Whether or not 18 hole bookings are allowed for this tee time. 1 = allowed.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>Allow9</td>\n<td>Whether or not 9 hole bookings are allowed for this tee time. 1 = allowed.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>Default9Hole</td>\n<td>Whether or not tee times should be 9 holes by default.  <br />Example: false.</td>\n</tr>\n<tr>\n<td>Price18</td>\n<td>The 18 hole default green fee for the available tee time per player.  <br />Example: 100.00</td>\n</tr>\n<tr>\n<td>Price9</td>\n<td>The 9 hole default green fee for the available tee time per player.  <br />Example: 50.00</td>\n</tr>\n<tr>\n<td>PullCartPrice18</td>\n<td>The 18 hole default pull cart fee for the available tee time per player.  <br />Example: 10.00</td>\n</tr>\n<tr>\n<td>PullCartPrice9</td>\n<td>The 9 hole default pull cart fee for the available tee time per player.  <br />Example: 5.00</td>\n</tr>\n<tr>\n<td>PowerCartPrice18</td>\n<td>The 18 hole default power cart fee for the available tee time per player.  <br />Example: 20.00</td>\n</tr>\n<tr>\n<td>PowerCartPrice9</td>\n<td>The 9 hole default power cart fee for the available tee time per player.  <br />Example: 10.00</td>\n</tr>\n<tr>\n<td>Player1Available</td>\n<td>Whether or not the player 1 slot is available to be booked.  <br />Example: false.</td>\n</tr>\n<tr>\n<td>Player2Available</td>\n<td>Whether or not the player 2 slot is available to be booked.  <br />Example: false.</td>\n</tr>\n<tr>\n<td>Player3Available</td>\n<td>Whether or not the player 3 slot is available to be booked.  <br />Example: true.</td>\n</tr>\n<tr>\n<td>Player4Available</td>\n<td>Whether or not the player 4 slot is available to be booked.  <br />Example: true.</td>\n</tr>\n<tr>\n<td>Player5Available</td>\n<td>Whether or not the player 5 slot is available to be booked.  <br />Example: true.</td>\n</tr>\n<tr>\n<td>Player1TeeTimeID</td>\n<td>The unique identifier for the tee time booking in this slot.  <br />Example: 514392e6-481b-4092-91a1-fdb6bae2a677.</td>\n</tr>\n<tr>\n<td>Player2TeeTimeID</td>\n<td>The unique identifier for the tee time booking in this slot.  <br />Example: 514392e6-481b-4092-91a1-fdb6bae2a677.</td>\n</tr>\n<tr>\n<td>Player3TeeTimeID</td>\n<td>The unique identifier for the tee time booking in this slot.  <br />Example: null</td>\n</tr>\n<tr>\n<td>Player4TeeTimeID</td>\n<td>The unique identifier for the tee time booking in this slot.  <br />Example: null</td>\n</tr>\n<tr>\n<td>Player5TeeTimeID</td>\n<td>The unique identifier for the tee time booking in this slot.  <br />Example: null</td>\n</tr>\n<tr>\n<td>Player1ContactID</td>\n<td>The unique identifier for the contact booked on player slot 1 of the tee time.  <br />Example: c05115bc-7652-43c8-9a24-dba2fd338135</td>\n</tr>\n<tr>\n<td>Player2ContactID</td>\n<td>The unique identifier for the contact booked on player slot 2 of the tee time.  <br />Example: c05115bc-7652-43c8-9a24-dba2fd338135</td>\n</tr>\n<tr>\n<td>Player3ContactID</td>\n<td>The unique identifier for the contact booked on player slot 3 of the tee time.  <br />Example: null</td>\n</tr>\n<tr>\n<td>Player4ContactID</td>\n<td>The unique identifier for the contact booked on player slot 4 of the tee time.  <br />Example: null</td>\n</tr>\n<tr>\n<td>Player5ContactID</td>\n<td>The unique identifier for the contact booked on player slot 5 of the tee time.  <br />Example: null</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v3","TeeTimes","TeeTimeBookings","GetTeeSheetAvailability"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique course identifier for the course you’d like to pull availability for. Example: CourseA.</p>\n","type":"text/plain"},"key":"CourseID","value":"GC002"},{"description":{"content":"<p>REQUIRED - The course’s local date to pull availability for. Example: 2023-04-13</p>\n","type":"text/plain"},"key":"TeeTimeDate","value":"2024-01-12"}],"variable":[]}},"response":[{"id":"4d1b9e4f-afbd-40a5-8358-777727db2916","name":"GetTeeSheetAvailability","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/api/v3/TeeTimes/TeeTimeBookings/GetTeeSheetAvailability?CourseID=GC002&TeeTimeDate=2024-01-12","host":["{{base_url}}"],"path":["api","v3","TeeTimes","TeeTimeBookings","GetTeeSheetAvailability"],"query":[{"key":"CourseID","value":"GC002","description":"REQUIRED - The unique course identifier for the course you’d like to pull availability for. Example: CourseA."},{"key":"TeeTimeDate","value":"2024-01-12","description":"REQUIRED - The course’s local date to pull availability for. Example: 2023-04-13"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Mar 2025 14:09:32 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Accept-Encoding"},{"key":"api-supported-versions","value":"1.0, 2.0, 3.0"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=qSP%2BRrSeCVDGQLxrsuzzVTrY0%2Fe4ckphDUH5hWctMZII7HfH4hvUtLIGYxau%2FYZv0srjEhnGTLH0gRiVa%2FTf7hQhuTbAvodvlpCwsHu7h2mXZXqPBA0Y5Ihevzk52kVczAUcN5P9TKnbQQmVVLI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"921d118b8da4d471-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2011&min_rtt=1804&rtt_var=824&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1620&delivery_rate=802660&cwnd=237&unsent_bytes=0&cid=498e60fd4c79581d&ts=973&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"TeeSheets\": [\n        {\n            \"TeeSheetTime\": \"2024-01-12T06:00:00\",\n            \"TeeSheetDisplayTime\": \"06:00 AM\",\n            \"TeeSheetDisplayHole\": null,\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T06:10:00\",\n            \"TeeSheetDisplayTime\": \"06:10 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T06:20:00\",\n            \"TeeSheetDisplayTime\": \"06:20 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T06:30:00\",\n            \"TeeSheetDisplayTime\": \"06:30 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T06:40:00\",\n            \"TeeSheetDisplayTime\": \"06:40 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T06:50:00\",\n            \"TeeSheetDisplayTime\": \"06:50 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T07:00:00\",\n            \"TeeSheetDisplayTime\": \"07:00 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T07:10:00\",\n            \"TeeSheetDisplayTime\": \"07:10 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T07:20:00\",\n            \"TeeSheetDisplayTime\": \"07:20 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T07:30:00\",\n            \"TeeSheetDisplayTime\": \"07:30 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T07:40:00\",\n            \"TeeSheetDisplayTime\": \"07:40 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T07:50:00\",\n            \"TeeSheetDisplayTime\": \"07:50 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T08:00:00\",\n            \"TeeSheetDisplayTime\": \"08:00 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T08:10:00\",\n            \"TeeSheetDisplayTime\": \"08:10 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T08:20:00\",\n            \"TeeSheetDisplayTime\": \"08:20 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T08:30:00\",\n            \"TeeSheetDisplayTime\": \"08:30 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T08:40:00\",\n            \"TeeSheetDisplayTime\": \"08:40 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T08:50:00\",\n            \"TeeSheetDisplayTime\": \"08:50 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T09:00:00\",\n            \"TeeSheetDisplayTime\": \"09:00 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T09:10:00\",\n            \"TeeSheetDisplayTime\": \"09:10 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T09:20:00\",\n            \"TeeSheetDisplayTime\": \"09:20 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T09:30:00\",\n            \"TeeSheetDisplayTime\": \"09:30 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T09:40:00\",\n            \"TeeSheetDisplayTime\": \"09:40 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T09:50:00\",\n            \"TeeSheetDisplayTime\": \"09:50 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T10:00:00\",\n            \"TeeSheetDisplayTime\": \"10:00 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T10:10:00\",\n            \"TeeSheetDisplayTime\": \"10:10 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T10:20:00\",\n            \"TeeSheetDisplayTime\": \"10:20 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T10:30:00\",\n            \"TeeSheetDisplayTime\": \"10:30 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T10:40:00\",\n            \"TeeSheetDisplayTime\": \"10:40 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T10:50:00\",\n            \"TeeSheetDisplayTime\": \"10:50 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T11:00:00\",\n            \"TeeSheetDisplayTime\": \"11:00 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T11:10:00\",\n            \"TeeSheetDisplayTime\": \"11:10 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T11:20:00\",\n            \"TeeSheetDisplayTime\": \"11:20 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T11:30:00\",\n            \"TeeSheetDisplayTime\": \"11:30 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T11:40:00\",\n            \"TeeSheetDisplayTime\": \"11:40 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T11:50:00\",\n            \"TeeSheetDisplayTime\": \"11:50 AM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T12:00:00\",\n            \"TeeSheetDisplayTime\": \"12:00 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T12:10:00\",\n            \"TeeSheetDisplayTime\": \"12:10 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T12:20:00\",\n            \"TeeSheetDisplayTime\": \"12:20 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T12:30:00\",\n            \"TeeSheetDisplayTime\": \"12:30 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T12:40:00\",\n            \"TeeSheetDisplayTime\": \"12:40 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T12:50:00\",\n            \"TeeSheetDisplayTime\": \"12:50 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T13:00:00\",\n            \"TeeSheetDisplayTime\": \"01:00 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T13:10:00\",\n            \"TeeSheetDisplayTime\": \"01:10 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T13:20:00\",\n            \"TeeSheetDisplayTime\": \"01:20 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T13:30:00\",\n            \"TeeSheetDisplayTime\": \"01:30 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T13:40:00\",\n            \"TeeSheetDisplayTime\": \"01:40 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T13:50:00\",\n            \"TeeSheetDisplayTime\": \"01:50 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T14:00:00\",\n            \"TeeSheetDisplayTime\": \"02:00 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T14:10:00\",\n            \"TeeSheetDisplayTime\": \"02:10 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T14:20:00\",\n            \"TeeSheetDisplayTime\": \"02:20 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T14:30:00\",\n            \"TeeSheetDisplayTime\": \"02:30 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T14:40:00\",\n            \"TeeSheetDisplayTime\": \"02:40 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T14:50:00\",\n            \"TeeSheetDisplayTime\": \"02:50 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 100,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T15:00:00\",\n            \"TeeSheetDisplayTime\": \"03:00 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T15:10:00\",\n            \"TeeSheetDisplayTime\": \"03:10 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T15:20:00\",\n            \"TeeSheetDisplayTime\": \"03:20 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T15:30:00\",\n            \"TeeSheetDisplayTime\": \"03:30 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T15:40:00\",\n            \"TeeSheetDisplayTime\": \"03:40 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T15:50:00\",\n            \"TeeSheetDisplayTime\": \"03:50 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T16:00:00\",\n            \"TeeSheetDisplayTime\": \"04:00 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T16:10:00\",\n            \"TeeSheetDisplayTime\": \"04:10 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T16:20:00\",\n            \"TeeSheetDisplayTime\": \"04:20 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T16:30:00\",\n            \"TeeSheetDisplayTime\": \"04:30 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T16:40:00\",\n            \"TeeSheetDisplayTime\": \"04:40 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T16:50:00\",\n            \"TeeSheetDisplayTime\": \"04:50 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 80,\n            \"Price9\": 60,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T17:00:00\",\n            \"TeeSheetDisplayTime\": \"05:00 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 70,\n            \"Price9\": 50,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T17:10:00\",\n            \"TeeSheetDisplayTime\": \"05:10 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 70,\n            \"Price9\": 50,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T17:20:00\",\n            \"TeeSheetDisplayTime\": \"05:20 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 70,\n            \"Price9\": 50,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T17:30:00\",\n            \"TeeSheetDisplayTime\": \"05:30 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 70,\n            \"Price9\": 50,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T17:40:00\",\n            \"TeeSheetDisplayTime\": \"05:40 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 70,\n            \"Price9\": 50,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T17:50:00\",\n            \"TeeSheetDisplayTime\": \"05:50 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 70,\n            \"Price9\": 50,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        },\n        {\n            \"TeeSheetTime\": \"2024-01-12T18:00:00\",\n            \"TeeSheetDisplayTime\": \"06:00 PM\",\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"Price18\": 70,\n            \"Price9\": 50,\n            \"PullCartPrice18\": 7,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice18\": 25,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"First\",\n            \"AvailableSlots\": \"4\",\n            \"Allow18\": true,\n            \"Allow9\": true,\n            \"Player1\": \"RESERVED\",\n            \"Player2\": \"RESERVED\",\n            \"Player3\": \"RESERVED\",\n            \"Player4\": \"RESERVED\",\n            \"Player5\": \"RESERVED\",\n            \"FivePlayerTemplate\": false,\n            \"NumberOfPlayers\": 0,\n            \"Default9Hole\": false,\n            \"Player1Available\": false,\n            \"Player2Available\": false,\n            \"Player3Available\": false,\n            \"Player4Available\": false,\n            \"Player5Available\": false,\n            \"Player1TeeTimeID\": null,\n            \"Player2TeeTimeID\": null,\n            \"Player3TeeTimeID\": null,\n            \"Player4TeeTimeID\": null,\n            \"Player5TeeTimeID\": null,\n            \"Player1ContactID\": null,\n            \"Player2ContactID\": null,\n            \"Player3ContactID\": null,\n            \"Player4ContactID\": null,\n            \"Player5ContactID\": null\n        }\n    ]\n}"}],"_postman_id":"0777587c-ef6a-4689-879f-ce0c0fe45ca8"},{"name":"GetAvailableCourses","event":[{"listen":"test","script":{"id":"c805fda8-3234-4131-a0c2-e53c07093381","exec":[""],"type":"text/javascript","packages":{}}}],"id":"9139ce52-799e-49c4-9acf-0aecf1fc8692","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v2/TeeTimes/TeeTimeBookings/GetAvailableCourses","description":"<p>Returns a list of all courses on the client database.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>N/A</td>\n<td>None needed - simply provide oAuth token.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseID</td>\n<td>The unique course identifier for the course.  <br />Example: CourseA.</td>\n</tr>\n<tr>\n<td>CourseName</td>\n<td>The user-friendly description provided for the course.  <br />Example: Orca.</td>\n</tr>\n<tr>\n<td>CompanyID</td>\n<td>The unique identifier for the course’s Company (i.e. accounting setup).  <br />Example: 530</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v2","TeeTimes","TeeTimeBookings","GetAvailableCourses"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"49c3df26-5277-4024-82f1-544350164687","name":"GetAvailableCourses","originalRequest":{"method":"GET","header":[{"key":"Bearer","value":"CfDJ8OtuScpyptxDoXbuJ4rA5EujwbaussUeJxUMFnkjP8l_VdDNUj0m-i9li7Tsmz4F2TqzNaqxuCnPYGm0lcOlw068SowvusZ8oH54VjnbaliKkbyj1YRWRQ5UMYHi9xaOxTF6ZzKYnT1RQCIq7dGiNsbbNVtCDrjk5Xaf4uhY28GgmYXMX-CF5UrjiE2qpbwqOjDScmWUsCYyp5beiJ4WQRb_xcIcTJVbeFwFvOBd6SHungrpHWbMovIWFYqhCCDtiCjQFpD48rjg5m313LpGdI0P0oL08exmNIn7cFI7hxegR2QE3DKd-cbeYrXjNY8ke-WcDh6JLHu1k1ppXftNrq7FGuj1_cGXXP1wfF4DdY-MxsGolycyp2vrwMG8vR-q8abs-WDiKN_7BgKIgS24wk6v0P5TyQiFE0_FG2pkqmy1kBeMP_DqgysfSyGlHakZy0V757khlEyZmW7h5SOrwW7EYBDcxtl93419I536hERa6duX6TnvhfN9VOzZAvMnmA","type":"text","disabled":true},{"key":"Path","value":"","type":"text","disabled":true}],"url":"{{base_url}}/api/v2/TeeTimes/TeeTimeBookings/GetAvailableCourses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Mar 2025 14:09:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Accept-Encoding"},{"key":"api-supported-versions","value":"1.0, 2.0, 3.0"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=63lutTrfxhpMzEplglJhtK43GNnhkh0DTtpkCjWuvY6fIm%2B6uohzQ755l2%2FF%2BnP%2FbJuFAb5l4yJ%2FDLgR0BiA%2FoL579SpSAqPqkZVW5yA8WOXGtX44eE36hiQDMS8OF5BZoAJPEVLImw8sOFGYrM%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"921d11bdb862d6d1-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2299&min_rtt=2058&rtt_var=944&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1578&delivery_rate=703595&cwnd=244&unsent_bytes=0&cid=ec0415d8d5cd6538&ts=181&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"Courses\": [\n        {\n            \"CourseID\": \"GC001\",\n            \"CourseName\": \"Orca\",\n            \"CompanyID\": \"\"\n        },\n        {\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"CompanyID\": \"\"\n        },\n        {\n            \"CourseID\": \"GC003\",\n            \"CourseName\": \"Coral\",\n            \"CompanyID\": \"\"\n        }\n    ]\n}"}],"_postman_id":"9139ce52-799e-49c4-9acf-0aecf1fc8692"},{"name":"GetAvailableTeeTimes","event":[{"listen":"test","script":{"id":"d8dc50b1-5bcf-4f46-a7a6-883473a5228d","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"7f5fa717-860a-48ff-b512-354a6bcea653","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CourseID\":\"9HOLE\",\r\n    \"StartTime\": \"07:40\",\r\n    \"EndTime\": \"08:00\",\r\n    \"Is9Holes\": false,\r\n    \"NumberOfPlayers\": 4,\r\n    \"NumberOfTeeTimes\": \"10\",\r\n    \"TeeTimeDate\": \"2025-10-27\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v2/TeeTimes/TeeTimeBookings/GetAvailableTeeTimes","description":"<p>Returns a list of bookable tee time slots for your players.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.100.0</p>\n<p><em>*Enhancements in Web V1.100 include TeeSheetDisplayTime, TeeSheetDisplayHole.</em></p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseID REQUIRED  <br /><em>Comma delineated for multiple.</em></td>\n<td>The unique course identifier for the course you’d like to pull availability for.  <br />Example: CourseA.</td>\n</tr>\n<tr>\n<td>TeeTimeDate REQUIRED</td>\n<td>The course’s local date to pull availability for.  <br />Example: 2023-04-13</td>\n</tr>\n<tr>\n<td>StartTime REQUIRED</td>\n<td>The course’s first local time to pull availability for.  <br />Example: 08:00:00</td>\n</tr>\n<tr>\n<td>EndTime REQUIRED</td>\n<td>The course’s last local time to pull availability for.  <br />Example: 16:00:00</td>\n</tr>\n<tr>\n<td>Is9Holes</td>\n<td>If the group would like to book 9 holes, set it to true. By default, search results will be false (i.e. 18 holes).  <br />Example: False</td>\n</tr>\n<tr>\n<td>NumberOfPlayers REQUIRED</td>\n<td>The number of players for the booking. Maximum of 4 or 5 permitted (based on client configuration).  <br />Example: 4</td>\n</tr>\n<tr>\n<td>NumberOfTeeTimes REQUIRED</td>\n<td>The number of available slots to return in the results.  <br />Example: 8</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TeeTimeDate</td>\n<td>The course’s local date for the available tee time shown.  <br />Example: 2021-04-13T00:00:00</td>\n</tr>\n<tr>\n<td>TeeTime</td>\n<td>The tee sheet time which is available for booking.  <br />Example: 08:00:00:000</td>\n</tr>\n<tr>\n<td>TeeSheetDisplayTime</td>\n<td>An override value used to replace the standard tee time shown on the tee sheet. Commonly used for shotgun starts where multiple groups begin play at the same time.  <br />Example: 9:00AM.</td>\n</tr>\n<tr>\n<td>CourseID</td>\n<td>The unique course identifier for the course.  <br />Example: CourseA.</td>\n</tr>\n<tr>\n<td>CourseName</td>\n<td>The user-friendly description provided for the course.  <br />Example: Orca.</td>\n</tr>\n<tr>\n<td>Price18</td>\n<td>The 18 hole default green fee for the available tee time.  <br />Example: 100.00</td>\n</tr>\n<tr>\n<td>Price9</td>\n<td>The 9 hole default green fee for the available tee time.  <br />Example: 50.00</td>\n</tr>\n<tr>\n<td>PullCartPrice18</td>\n<td>The 18 hole default pull cart fee for the available tee time.  <br />Example: 10.00</td>\n</tr>\n<tr>\n<td>PullCartPrice9</td>\n<td>The 9 hole default pull cart fee for the available tee time.  <br />Example: 5.00</td>\n</tr>\n<tr>\n<td>PowerCartPrice18</td>\n<td>The 18 hole default power cart fee for the available tee time.  <br />Example: 20.00</td>\n</tr>\n<tr>\n<td>PowerCartPrice9</td>\n<td>The 9 hole default power cart fee for the available tee time.  <br />Example: 10.00</td>\n</tr>\n<tr>\n<td>StartHole</td>\n<td>The hole the tee time will start from.  <br />Example: FIRST</td>\n</tr>\n<tr>\n<td>TeeSheetDisplayHole</td>\n<td>An override value that replaces the standard starting tee (1 or 10) with a custom hole designation. Used for shotgun starts where groups begin on different holes simultaneously.  <br />Example: 5.</td>\n</tr>\n<tr>\n<td>Comment</td>\n<td>Any comments added to the tee time from the tee sheet.  <br />Example: Aerification on greens</td>\n</tr>\n<tr>\n<td>AvailableSlots</td>\n<td>The number of player slots available for the time.  <br />Example: 1,2,3,4</td>\n</tr>\n<tr>\n<td>RequirePowerCart</td>\n<td>If a power cart is required to book.  <br />Example: True</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v2","TeeTimes","TeeTimeBookings","GetAvailableTeeTimes"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"84b0c701-942f-4bdb-a7dc-a359efaa83a4","name":"GetAvailableTeeTimes","originalRequest":{"method":"POST","header":[{"key":"Bearer","value":"CfDJ8OtuScpyptxDoXbuJ4rA5EujwbaussUeJxUMFnkjP8l_VdDNUj0m-i9li7Tsmz4F2TqzNaqxuCnPYGm0lcOlw068SowvusZ8oH54VjnbaliKkbyj1YRWRQ5UMYHi9xaOxTF6ZzKYnT1RQCIq7dGiNsbbNVtCDrjk5Xaf4uhY28GgmYXMX-CF5UrjiE2qpbwqOjDScmWUsCYyp5beiJ4WQRb_xcIcTJVbeFwFvOBd6SHungrpHWbMovIWFYqhCCDtiCjQFpD48rjg5m313LpGdI0P0oL08exmNIn7cFI7hxegR2QE3DKd-cbeYrXjNY8ke-WcDh6JLHu1k1ppXftNrq7FGuj1_cGXXP1wfF4DdY-MxsGolycyp2vrwMG8vR-q8abs-WDiKN_7BgKIgS24wk6v0P5TyQiFE0_FG2pkqmy1kBeMP_DqgysfSyGlHakZy0V757khlEyZmW7h5SOrwW7EYBDcxtl93419I536hERa6duX6TnvhfN9VOzZAvMnmA","type":"text","disabled":true},{"key":"Path","value":"","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"CourseID\":\"GC002\",\r\n    \"StartTime\": \"07:40\",\r\n    \"EndTime\": \"08:00\",\r\n    \"Is9Holes\": false,\r\n    \"NumberOfPlayers\": 4,\r\n    \"NumberOfTeeTimes\": \"10\",\r\n    \"TeeTimeDate\": \"2023-10-27\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v2/TeeTimes/TeeTimeBookings/GetAvailableTeeTimes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Mar 2025 14:09:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Accept-Encoding"},{"key":"api-supported-versions","value":"1.0, 2.0, 3.0"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=CWmZC8%2BpgQCOi1uIVwKJa0ozHf6HaGJzLR37ZhbbOAjxuPnNt1zf%2BkxZZcYSj7U7lfOliJGQsAZDX%2Bv3ZhBzVlZ96tVoW6gepWPsEJzDObbS55rgPrtnpz%2BC0KKg6Yb92pTVDjOy24XxIugnZRI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"921d11e70a7b59bc-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=1312&min_rtt=1173&rtt_var=539&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1829&delivery_rate=1234441&cwnd=247&unsent_bytes=0&cid=d73d9e46c96e338a&ts=947&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"TeeTimes\": [\n        {\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"TeeTimeDate\": \"2023-10-27T00:00:00\",\n            \"TeeTime\": \"07:40:00:000\",\n            \"TeeSheetDisplayTime\": \"7:40AM\",\n            \"Price18\": 100,\n            \"PullCartPrice18\": 7,\n            \"PowerCartPrice18\": 25,\n            \"Price9\": 60,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"FIRST\",\n            \"TeeSheetDisplayHole\": \"1st\",\n            \"Comment\": \"\",\n            \"AvailableSlots\": \"1,2,3,4\",\n            \"RequirePowerCart\": false\n        },\n        {\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"TeeTimeDate\": \"2023-10-27T00:00:00\",\n            \"TeeTime\": \"07:50:00:000\",\n            \"TeeSheetDisplayTime\": \"7:50AM\",\n            \"Price18\": 100,\n            \"PullCartPrice18\": 7,\n            \"PowerCartPrice18\": 25,\n            \"Price9\": 60,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"FIRST\",\n            \"TeeSheetDisplayHole\": \"1st\",\n            \"Comment\": \"\",\n            \"AvailableSlots\": \"1,2,3,4\",\n            \"RequirePowerCart\": false\n        },\n        {\n            \"CourseID\": \"GC002\",\n            \"CourseName\": \"Shipyard\",\n            \"TeeTimeDate\": \"2023-10-27T00:00:00\",\n            \"TeeTime\": \"08:00:00:000\",\n            \"TeeSheetDisplayTime\": \"8:00AM\",\n            \"Price18\": 100,\n            \"PullCartPrice18\": 7,\n            \"PowerCartPrice18\": 25,\n            \"Price9\": 60,\n            \"PullCartPrice9\": 5,\n            \"PowerCartPrice9\": 15,\n            \"StartHole\": \"FIRST\",\n            \"TeeSheetDisplayHole\": \"1st\",\n            \"Comment\": \"\",\n            \"AvailableSlots\": \"1,2,3,4\",\n            \"RequirePowerCart\": false\n        }\n    ]\n}"}],"_postman_id":"7f5fa717-860a-48ff-b512-354a6bcea653"},{"name":"AvailableTeeTimeAttachments","event":[{"listen":"test","script":{"id":"074a202d-23ef-4517-9dbb-317e476b918e","exec":[""],"type":"text/javascript","packages":{}}}],"id":"daecf0b8-4da8-441e-86da-2baa11650192","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v1/TeeTimes/TeeTimeBookings/AvailableTeeTimeAttachments?CourseID=GC002&TeeTime=2025-03-12 10:00:00","description":"<p>Pull the available tee time attachments for a course.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseID REQUIRED</td>\n<td>The unique course identifier for the course you’d like to book.  <br />Example: CourseA.</td>\n</tr>\n<tr>\n<td>TeeTime REQUIRED</td>\n<td>The tee sheet time to pull available tee time attachments for. Enter date followed by time.  <br />Example: 01-31-2023 10:00:00</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GroupUID</td>\n<td>The unique identifier for the tee time attachment group.  <br />Example: 6c0c6a56-360c-40aa-aa09-43bbda532026.</td>\n</tr>\n<tr>\n<td>GroupName</td>\n<td>The customer-friendly name given to the attachment group.  <br />Example: Driving Range</td>\n</tr>\n<tr>\n<td>GroupSortOrder</td>\n<td>The order in which this group should be displayed.  <br />Example: 1</td>\n</tr>\n<tr>\n<td>AttachmentUID</td>\n<td>The unique identifier for the tee time attachment.  <br />Example: 70b60873-e03a-413e-9d27-fd3574df80de</td>\n</tr>\n<tr>\n<td>Abbreviation</td>\n<td>The abbreviated ‘shortcode’ name for the tee time attachment.  <br />Example: 90BLS.</td>\n</tr>\n<tr>\n<td>ItemDescription</td>\n<td>The item name given to the retail item used for the attachment.  <br />Example: Driving Range Balls - 90.</td>\n</tr>\n<tr>\n<td>ItemID</td>\n<td>The unique identifier given to the retail item of the attachment.  <br />Example: DrivingRange90.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td>The order in which this attachment should be displayed.  <br />Example: 1.</td>\n</tr>\n<tr>\n<td>Price</td>\n<td>The subtotal price for the tee time attachment.  <br />Example: 22.50</td>\n</tr>\n<tr>\n<td>Holes</td>\n<td>Whether or not the attachment is available based on the number of holes booked. Options include 9Holes, 18Holes and Both.  <br />Example: Both.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","TeeTimes","TeeTimeBookings","AvailableTeeTimeAttachments"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique course identifier for the course you’d like to book. Example: CourseA.</p>\n","type":"text/plain"},"key":"CourseID","value":"GC002"},{"description":{"content":"<p>REQUIRED - The tee sheet time to pull available tee time attachments for. Enter date followed by time. Example: 01-31-2023 10:00:00</p>\n","type":"text/plain"},"key":"TeeTime","value":"2025-03-12 10:00:00"}],"variable":[]}},"response":[{"id":"60f34e14-5245-4e9a-bd93-2b21a83b9d2d","name":"AvailableTeeTimeAttachments","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{base_url}}/api/v1/TeeTimes/TeeTimeBookings/AvailableTeeTimeAttachments?CourseID=GC002&TeeTime=2025-03-12 10:00:00","host":["{{base_url}}"],"path":["api","v1","TeeTimes","TeeTimeBookings","AvailableTeeTimeAttachments"],"query":[{"key":"CourseID","value":"GC002","description":"REQUIRED - The unique course identifier for the course you’d like to book. Example: CourseA."},{"key":"TeeTime","value":"2025-03-12 10:00:00","description":"REQUIRED - The tee sheet time to pull available tee time attachments for. Enter date followed by time. Example: 01-31-2023 10:00:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Mar 2025 14:09:53 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Accept-Encoding"},{"key":"api-supported-versions","value":"1.0, 2.0, 3.0"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=e5VFmYbNfPC3cZAfqwwIWKnStvOEXNL9F8BBBZP0Vi1yZnWytux0z1IczhIdYlt0sKCGarSL8V%2FQCSDf%2FkByl8kUQRKqz9IS8zBvFMbSM4yvRchnADYUtcsgzInmfIx%2FKNTFO0Swp7Acbm3KdMg%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"921d121399084325-EWR"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=8168&min_rtt=7997&rtt_var=3121&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2849&recv_bytes=1631&delivery_rate=362135&cwnd=80&unsent_bytes=0&cid=6075a47c8be15e55&ts=192&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"AttachmentGroups\": [\n        {\n            \"GroupUID\": \"02f5ac7a-00ed-475f-be5c-6304283522de\",\n            \"GroupName\": \"Rental Clubs\",\n            \"GroupSortOrder\": 2,\n            \"Attachments\": [\n                {\n                    \"AttachmentUID\": \"08a1c013-9e31-4e8b-8fea-89c77bf6ada3\",\n                    \"Abbreviation\": \"Clubs\",\n                    \"ItemDescription\": \"Club Rental \",\n                    \"ItemID\": \"PS000011\",\n                    \"SortOrder\": 3,\n                    \"Price\": 15,\n                    \"Holes\": \"Both\"\n                }\n            ]\n        },\n        {\n            \"GroupUID\": \"1ceebdb7-9f42-4664-8d24-a7c70f4ccaa2\",\n            \"GroupName\": \"Caddy\",\n            \"GroupSortOrder\": 3,\n            \"Attachments\": [\n                {\n                    \"AttachmentUID\": \"842271a2-9b9f-4180-914c-2cf0d2a901a2\",\n                    \"Abbreviation\": \"Caddy\",\n                    \"ItemDescription\": \"Personal Caddy\",\n                    \"ItemID\": \"PS000013\",\n                    \"SortOrder\": 5,\n                    \"Price\": 50,\n                    \"Holes\": \"Both\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"daecf0b8-4da8-441e-86da-2baa11650192"},{"name":"GetPriceLevels","id":"5e460772-4287-4221-bb2c-2f788f50d855","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/api/v2/TeeTimes/TeeTimeBookings/GetPriceLevels","description":"<p>Returns a list of all price levels on the client database.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.98.6</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>N/A</td>\n<td>None Needed - Simply provide oAuth token.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PriceLevelID</td>\n<td>The unique identifier for the price level.  <br />  <br />Example: SENIOR.</td>\n</tr>\n<tr>\n<td>PriceLevelDescription</td>\n<td>The user-friendly description provided for the course.  <br />  <br />Example: Senior Rate.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v2","TeeTimes","TeeTimeBookings","GetPriceLevels"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"7bfde0ad-d315-41ee-ae69-5a1824ac336f","name":"[Dev]GetPriceLevels","originalRequest":{"method":"GET","header":[],"url":"{{base_url}}/api/v2/TeeTimes/TeeTimeBookings/GetPriceLevels"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"priceLevelID\": \"SENIOR\",\n    \"priceLevelDescription\": \"Senior Rate\"\n}"}],"_postman_id":"5e460772-4287-4221-bb2c-2f788f50d855"},{"name":"GetTeeSheetPricing","id":"8886e506-2686-4bcc-bda1-61a2ce711ffa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{base_url}}/api/v2/TeeTimes/TeeTimeBookings/GetTeeSheetPricing?CourseID=ARCHITECTS&Date=2026-04-23T14:20:00&PriceLevels=Test","description":"<p>Returns a list of all default and current prices by price level for the selected course and date.</p>\n<p><strong>Method:</strong> GET</p>\n<p><strong>Type:</strong> Query String Parameters</p>\n<p><strong>Version</strong>: 1.98.6</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseID REQUIRED</td>\n<td>The unique course identifier for the course you’d like to update pricing for. Example: CourseA.</td>\n</tr>\n<tr>\n<td>Date REQUIRED</td>\n<td>The date in which prices should be updated. Example: 2025-03-02T00:00:00</td>\n</tr>\n<tr>\n<td>PriceLevels</td>\n<td>The price levels you would like to retrieve pricing for in a comma delineated list. Default retrieves the no price level rate only.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TeeSheetTime</td>\n<td>The date and time of the tee time.  <br />  <br />Example: 2025-08-17T09:00:00</td>\n</tr>\n<tr>\n<td>Pricing (List)</td>\n<td></td>\n</tr>\n<tr>\n<td>PriceLevelID</td>\n<td>The unique identifier for the price level. Default no price level rate will be returned as null.  <br />  <br />Example: SENIOR.</td>\n</tr>\n<tr>\n<td>DefaultGolfPrice18</td>\n<td>The standard golf price for 18 holes.</td>\n</tr>\n<tr>\n<td>DefaultGolfPrice9</td>\n<td>The standard golf price for 9 holes.</td>\n</tr>\n<tr>\n<td>DefaultCartPrice18</td>\n<td>The standard cart price for 18 holes.</td>\n</tr>\n<tr>\n<td>DefaultCartPrice9</td>\n<td>The standard cart price for 9 holes.</td>\n</tr>\n<tr>\n<td>CurrentGolfPrice18</td>\n<td>The current golf price for 18 holes.</td>\n</tr>\n<tr>\n<td>CurrentGolfPrice9</td>\n<td>The current golf price for 9 holes.</td>\n</tr>\n<tr>\n<td>CurrentCartPrice18</td>\n<td>The current cart price for 18 holes.</td>\n</tr>\n<tr>\n<td>CurrentCartPrice9</td>\n<td>The current cart price for 9 holes.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"ab278094-c454-4eb3-a466-fcf06b25beb0","id":"ab278094-c454-4eb3-a466-fcf06b25beb0","name":"Tee Sheet","type":"folder"}},"urlObject":{"path":["api","v2","TeeTimes","TeeTimeBookings","GetTeeSheetPricing"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>REQUIRED - The unique course identifier for the course you’d like to pull pricing for. Example: CourseA.</p>\n","type":"text/plain"},"key":"CourseID","value":"ARCHITECTS"},{"description":{"content":"<p>REQUIRED - The course’s date to pull pricing for.</p>\n","type":"text/plain"},"key":"Date","value":"2026-04-23T14:20:00"},{"description":{"content":"<p>The price levels you would like to retrieve pricing for in a comma delineated list. Default retrieves the no price level rate only.</p>\n","type":"text/plain"},"key":"PriceLevels","value":"Test"}],"variable":[]}},"response":[{"id":"5b09a94a-6e51-45b0-a38c-f57d54f7e2c8","name":"[Dev]GetPriceLevels","originalRequest":{"method":"GET","header":[],"url":"{{base_url}}/api/v2/TeeTimes/TeeTimeBookings/GetPriceLevels"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"priceLevelID\": \"SENIOR\",\n    \"priceLevelDescription\": \"Senior Rate\"\n}"}],"_postman_id":"8886e506-2686-4bcc-bda1-61a2ce711ffa"},{"name":"PostYieldPricing","id":"b3c44ac8-4012-48ed-8133-65b676979689","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CourseID\": \"ARCHITECTS\",\r\n  \"Date\": \"2026-04-23T00:00:00\",\r\n  \"NumOfHoles\": 18,\r\n  \"ApplyToPublic\": true,\r\n  \"PriceLevels\": \"\",\r\n  \"AllowPrepay\": true,\r\n  \"DoNotAllowPayAtCourse\": true,\r\n  \"TeeSheetTimeRangeStart\": \"2026-04-23T16:00:00\",\r\n  \"TeeSheetTimeRangeEnd\": \"2026-04-23T16:59:00\",\r\n  \"UpdateGolfPrice\": 80.00,\r\n  \"UpdateCartPrice\": 10.00,\r\n  \"ClearYieldPrices\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v2/TeeTimes/PostYieldPricing","description":"<p>Post new tee sheet pricing to Yield Management.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version</strong>: 1.100.22</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseID REQUIRED</td>\n<td>The unique course identifier for the course you’d like to update pricing for. Example: CourseA.</td>\n</tr>\n<tr>\n<td>Date REQUIRED</td>\n<td>The date in which prices should be updated. Example: 2025-03-02T00:00:00</td>\n</tr>\n<tr>\n<td>NumOfHoles</td>\n<td>Update the “9” hole or “18” hole price. If null, post to 18.  <br />  <br />Example: 18</td>\n</tr>\n<tr>\n<td>ApplyToPublic</td>\n<td>The price update will be applied to the default (i.e. public) rack rate.  <br />  <br />Example: True</td>\n</tr>\n<tr>\n<td>PriceLevels</td>\n<td>The price level(s) to be updated. Comma delineated for multiple.  <br />  <br />Example: SENIOR, JUNIOR.</td>\n</tr>\n<tr>\n<td>AllowPrepay</td>\n<td>Enables prepay as an option for bookings within the time range, when prepaid functionality is enabled for the client. If True, golfers will be offered the option to prepay at the time of booking. Defaults to False if not provided.  <br />  <br />Example: True</td>\n</tr>\n<tr>\n<td>DoNotAllowPayAtCourse</td>\n<td>Requires prepay for all bookings within the time range, when prepaid functionality is enabled for the client. If True, golfers will not be offered the pay at course option and must prepay at the time of booking. Defaults to False if not provided.  <br />  <br />Example: True</td>\n</tr>\n<tr>\n<td>TeeSheetTimeRangeStart REQUIRED</td>\n<td>The earliest time in the range which needs to have its price updated. The date here is ignored.  <br />  <br />Example: 2025-08-17T09:00:00</td>\n</tr>\n<tr>\n<td>TeeSheetTimeRangeEnd REQUIRED</td>\n<td>The latest time in the range which needs to have its price updated. The date here is ignored.  <br />  <br />Example: 2025-08-17T10:00:00</td>\n</tr>\n<tr>\n<td>UpdateGolfPrice</td>\n<td>The golf price to be applied to the tee time on web and local.  <br />  <br />Example: 80.00</td>\n</tr>\n<tr>\n<td>UpdateCartPrice</td>\n<td>The cart price to be applied to the tee time on web and local.  <br />  <br />Example: 10.00</td>\n</tr>\n<tr>\n<td>ClearYieldPrices</td>\n<td>Pass in a value of ‘True’ to revert all tee times times within the range back to its default “rack rate” for golf and cart.  <br />  <br />Example: False.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseID</td>\n<td>The unique course identifier for the course which has been updated. Example: CourseA.</td>\n</tr>\n<tr>\n<td>Date</td>\n<td>The date in which prices were updated. Example: 2025-03-02T00:00:00</td>\n</tr>\n<tr>\n<td>NumOfHoles</td>\n<td>The number of holes in which prices were updated.  <br />  <br />Example: 18</td>\n</tr>\n<tr>\n<td>ApplyToPublic</td>\n<td>If the default (i.e. public) rack rate had the price applied to it as well.  <br />  <br />Example: true</td>\n</tr>\n<tr>\n<td>PriceLevels</td>\n<td>The price levels which were updated.  <br />  <br />Example: *DEFAULT, SENIOR, JUNIOR</td>\n</tr>\n<tr>\n<td>AllowPrepay</td>\n<td>Indicates whether prepay has been enabled as an option for bookings.  <br />  <br />Example: True</td>\n</tr>\n<tr>\n<td>DoNotAllowPayAtCourse</td>\n<td>Indicates whether prepay is required for bookings, preventing the pay at course option.  <br />  <br />Example: True</td>\n</tr>\n<tr>\n<td>TeeTimes (List)</td>\n<td>-</td>\n</tr>\n<tr>\n<td>TeeSheetTime</td>\n<td>The date and time of the tee time.  <br />  <br />Example: 2025-08-17T09:00:00</td>\n</tr>\n<tr>\n<td>GolfPrice</td>\n<td>The new yield pricing for the tee time.  <br />  <br />Example: 80.00</td>\n</tr>\n<tr>\n<td>CartPrice</td>\n<td>The new yield pricing for the cart.  <br />  <br />Example: 10.00</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"ab278094-c454-4eb3-a466-fcf06b25beb0","id":"ab278094-c454-4eb3-a466-fcf06b25beb0","name":"Tee Sheet","type":"folder"}},"urlObject":{"path":["api","v2","TeeTimes","PostYieldPricing"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"accd0828-c1ae-47f3-b0f5-8ccd77b6d5c3","name":"PostYieldPricing","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n  \"CourseID\": \"CourseA\",\r\n  \"Date\": \"2025-03-02T00:00:00\",\r\n  \"NumOfHoles\": 18,\r\n  \"ApplyToPublic\": true,\r\n  \"PriceLevels\": \"SENIOR,JUNIOR,*DEFAULT\",\r\n  \"AllowPrepay\": true,\r\n  \"DoNotAllowPayAtCourse\": true,\r\n  \"TeeSheetTimeRangeStart\": \"2025-08-17T09:00:00\",\r\n  \"TeeSheetTimeRangeEnd\": \"2025-08-17T10:00:00\",\r\n  \"UpdateGolfPrice\": 80.00,\r\n  \"UpdateCartPrice\": 10.00,\r\n   \"ClearYieldPrices\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v2/TeeTimes/PostYieldPricing"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"CourseID\": \"CourseA\",\n    \"Date\": \"2025-03-02T00:00:00\",\n    \"NumOfHoles\": 18,\n    \"ApplyToPublic\": true\n    \"PriceLevels\": \"SENIOR\",\n    \"AllowPrepay\": true,\n   \"DoNotAllowPayAtCourse\": true,\n    \"TeeTimes\": [\n        {\n            \"TeeSheetTime\": \"2025-08-17T09:00:00\",\n            \"GolfPrice\": 80,\n            \"CartPrice\": 10\n        },\n        {\n            \"TeeSheetTime\": \"2025-08-17T09:10:00\",\n            \"GolfPrice\": 85,\n            \"CartPrice\": 12\n        }\n    ]\n}"}],"_postman_id":"b3c44ac8-4012-48ed-8133-65b676979689"},{"name":"HoldTeeTime","id":"142f2bc0-5330-44d9-8db2-30931617acd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CourseID\":\"9HOLE\",\r\n    \"NumberOfPlayers\": 4,\r\n    \"TeeTime\": \"2025-10-21T07:31:00\",\r\n    \"StartHole\": \"1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v3/TeeTimes/TeeTimeBookings/HoldTeeTime","description":"<p>Temporarily hold a tee time until booker submits required information.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseID REQUIRED</td>\n<td>The unique course identifier for the course you’d like to book.  <br />Example: CourseA.</td>\n</tr>\n<tr>\n<td>NumberOfPlayers REQUIRED</td>\n<td>The number of players for the booking.  <br />Example: 4</td>\n</tr>\n<tr>\n<td>TeeTime REQUIRED</td>\n<td>The tee sheet time which is being held. Enter date followed by time.  <br />Example: 2024-03-01T07:31:00</td>\n</tr>\n<tr>\n<td>StartHole</td>\n<td>The hole the group will tee off from. 0 = 1st and 1 = 10th. By default, the hold treats this as a 0 (1st tee). Starting in V3 1 = 1st and 10 = 10th.  <br />Example: 10.</td>\n</tr>\n<tr>\n<td>Is9Holes</td>\n<td>If the group would like to book 9 holes, set to true. By default, the hold will be false (i.e. 18 holes).  <br />Example: False</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TeeTimeID</td>\n<td>The unique tee time identifier generated if the hold was successful.  <br />Example: 71C929A4-8456-48E6-B8D2-3D67C787AB2A</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v3","TeeTimes","TeeTimeBookings","HoldTeeTime"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"8e80b2ce-227b-404e-be90-fee626351a76","name":"HoldTeeTime","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"CourseID\":\"GC002\",\r\n    \"NumberOfPlayers\": 4,\r\n    \"TeeTime\": \"2024-05-13T07:31:00\",\r\n    \"StartHole\": \"1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v3/TeeTimes/TeeTimeBookings/HoldTeeTime"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Mar 2025 14:09:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Accept-Encoding"},{"key":"api-supported-versions","value":"1.0, 2.0, 3.0"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=dzN36LImntQm8N%2FWlKp7dSxFZJ6MjLfJx94nlfhM4TqHtVX5J%2B2cFJuWieSPLsF%2Bn21k44JZAKkMVqvfZB5L%2BYjhtz3Sm9FFhCK2SJYF%2BfUVo1uXB6yFESf%2BonTvJiiRw1hrwZdLoUu0jrA5nc4%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"921d1233cf5d4325-EWR"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=13147&min_rtt=7997&rtt_var=11779&sent=8&recv=8&lost=0&retrans=0&sent_bytes=4576&recv_bytes=2648&delivery_rate=362135&cwnd=83&unsent_bytes=0&cid=6075a47c8be15e55&ts=5315&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"TeeTimeID\": \"0dbabc85-919c-49eb-b6e1-76a50d9ed58c\"\n}"}],"_postman_id":"142f2bc0-5330-44d9-8db2-30931617acd2"},{"name":"ModifyTeeTime","id":"9b0f91a9-100f-43d9-b841-80e0fb40814a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"TeeTimeID\": \"8456c645-b655-4a77-b5ef-05a4765819df\",\r\n    \"ContactID\": \"70dd923b-ce3f-41c7-89f5-ad01f70a4d71\",\r\n    \"NumberOfPlayers\": 3,\r\n    \"Notes\": \"\",\r\n    \"TeeTimePlayers\": [\r\n        {\r\n            \"Number\": 1,\r\n            \"FirstName\": \"Ian\",\r\n            \"LastName\": \"Robinson\",\r\n            \"Phone\": \"6475551202\",\r\n            \"Email\": \"ian@totaleintegrated.com\",\r\n            \"Price\": 113.00,\r\n            \"PlayerPriceLevel\": \"ACCOMPANIED\",\r\n            \"ContactID\": \"70dd923b-ce3f-41c7-89f5-ad01f70a4d71\",\r\n            \"SelectedAttachments\": [\"FFE7610F-FAB2-4BA7-A42E-C3B184EF2B3E\"]\r\n        },\r\n        {\r\n            \"Number\": 2,\r\n            \"FirstName\": \"Jason\",\r\n            \"LastName\": \"Curtis\",\r\n            \"Phone\": \"6474441202\",\r\n            \"Email\": \"jason.curtis@totaleintegrated.com\",\r\n            \"Price\": 113.00,\r\n            \"PlayerPriceLevel\": \"\",\r\n            \"ContactID\": \"00000000-0000-0000-0000-000000000000\",\r\n            \"SelectedAttachments\": [\"FFE7610F-FAB2-4BA7-A42E-C3B184EF2B3E\"]\r\n        },\r\n        {\r\n            \"Number\": 3,\r\n            \"FirstName\": \"Frank\",\r\n            \"LastName\": \"Curtis\",\r\n            \"Phone\": \"6474441203\",\r\n            \"Email\": \"frank.curtis@totaleintegrated.com\",\r\n            \"Price\": 113.00,\r\n            \"PlayerPriceLevel\": \"\",\r\n            \"ContactID\": \"00000000-0000-0000-0000-000000000000\",\r\n            \"SelectedAttachments\": [\"FFE7610F-FAB2-4BA7-A42E-C3B184EF2B3E\"]\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v3/TeeTimes/TeeTimeBookings/ModifyTeeTime","description":"<p>Modifies an existing tee time reservation’s party details or the number of players.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.100.0</p>\n<p><em>*Enhancements in Web V1.100 include TeeSheetDisplayTime, TeeSheetDisplayHole.</em></p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Tee Time:</td>\n<td>-</td>\n</tr>\n<tr>\n<td>TeeTimeID REQUIRED</td>\n<td>The unique tee time identifier of the tee time you’d like to modify.  <br />Example: 71C929A4-8456-48E6-B8D2-3D67C787AB2A</td>\n</tr>\n<tr>\n<td>ContactID REQUIRED</td>\n<td>The unique identifier for the contact. This is contact of the user who is modifying the booking.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.</td>\n</tr>\n<tr>\n<td>NumberOfPlayers REQUIRED</td>\n<td>The number of players for the booking. Maximum of 4 or 5 permitted (based on client configuration).  <br />Example: 4</td>\n</tr>\n<tr>\n<td>Notes</td>\n<td>Any notes/comments you’d like to add to the booking.</td>\n</tr>\n<tr>\n<td>TeeTimePlayer (List):</td>\n<td>Important Notes:  <br />Information for player number 1 is required and will be considered the booker.  <br />For players you have no information (i.e. Hold/TBD) for do not pass any ‘TeeTimePlayer’ parameters.</td>\n</tr>\n<tr>\n<td>Number</td>\n<td>Example: 1</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>Example: John</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>Example: Doe</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>Example: 888-660-6131</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>Example: <a href=\"https://mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Price</td>\n<td>The amount paid/to be paid by the player.  <br />Example: 99.00</td>\n</tr>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the player contact. If left blank TEI will attempt to match on email, phone and name.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.  <br />For players you do not have a contact ID for but do have their name, email and/or phone, pass a ContactID of 00000000-0000-0000-0000-000000000000. The system will auto match with an existing contact or generate a new contact with the provided information.</td>\n</tr>\n<tr>\n<td>PlayerPriceLevel</td>\n<td>The unique price level ID for the player.  <br />Example: GoldPlayer</td>\n</tr>\n<tr>\n<td>SelectedAttachments (List)</td>\n<td>The unique identifier for each tee time attachment the player is adding.  <br />Example: 70b60873-e03a-413e-9d27-fd3574df80de.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Message</td>\n<td>The message returned for the booking.  <br />Example: Success.</td>\n</tr>\n<tr>\n<td>ConfirmationNumber</td>\n<td>The unique confirmation number for the booking.  <br />Example: 361141</td>\n</tr>\n<tr>\n<td>CourseID</td>\n<td>The unique course identifier the booking is on.  <br />Example: CourseA</td>\n</tr>\n<tr>\n<td>CourseName</td>\n<td>The course name the booking is on.  <br />Example: Orca.</td>\n</tr>\n<tr>\n<td>TeeTime</td>\n<td>The date and time of the tee time.  <br />Example: 2021-03-02T10:20:00</td>\n</tr>\n<tr>\n<td>TeeSheetDisplayTime</td>\n<td>An override value used to replace the standard tee time shown on the tee sheet. Commonly used for shotgun starts where multiple groups begin play at the same time.  <br />Example: 9:00AM.</td>\n</tr>\n<tr>\n<td>TeeTimeID</td>\n<td>The unique tee time identifier of the tee time.  <br />Example: 71C929A4-8456-48E6-B8D2-3D67C787AB2A</td>\n</tr>\n<tr>\n<td>StartHole</td>\n<td>The hole the tee time will start from.  <br />Example: 1</td>\n</tr>\n<tr>\n<td>TeeSheetDisplayHole</td>\n<td>An override value that replaces the standard starting tee (1 or 10) with a custom hole designation. Used for shotgun starts where groups begin on different holes simultaneously.  <br />Example: 5.</td>\n</tr>\n<tr>\n<td>NumberOfPlayers</td>\n<td>Number of players on tee time.  <br />Example: 3</td>\n</tr>\n<tr>\n<td>UserID</td>\n<td>The unique user identifier for the booker.</td>\n</tr>\n<tr>\n<td>Notes</td>\n<td>Any notes added to the tee time.  <br />Example: Aerification on greens</td>\n</tr>\n<tr>\n<td>Is9Holes</td>\n<td>If the tee time booking is for 9 holes.  <br />Example: False</td>\n</tr>\n<tr>\n<td>Carts</td>\n<td>Number of carts for the tee time.  <br />Examples: 0, 1 or 2</td>\n</tr>\n<tr>\n<td>PlayerOne</td>\n<td>“John Doe”</td>\n</tr>\n<tr>\n<td>PlayerOneTeeTimeID</td>\n<td>The unique tee time ID for the player’s slot in the booking  <br />  <br />Example: d390eeb1-27aa-4f94-ab72-50e1389d0e6e</td>\n</tr>\n<tr>\n<td>PlayerTwo</td>\n<td>“Jim Doe”</td>\n</tr>\n<tr>\n<td>PlayerTwoTeeTimeID</td>\n<td>The unique tee time ID for the player’s slot in the booking  <br />  <br />Example: d390eeb1-27aa-4f94-ab72-50e1389d0e6e</td>\n</tr>\n<tr>\n<td>PlayerThree</td>\n<td>“Jane Doe”</td>\n</tr>\n<tr>\n<td>PlayerThreeTeeTimeID</td>\n<td>The unique tee time ID for the player’s slot in the booking  <br />  <br />Example: d390eeb1-27aa-4f94-ab72-50e1389d0e6e</td>\n</tr>\n<tr>\n<td>PlayerFour</td>\n<td>“Jessica Doe”</td>\n</tr>\n<tr>\n<td>PlayerFourTeeTimeID</td>\n<td>The unique tee time ID for the player’s slot in the booking  <br />  <br />Example: d390eeb1-27aa-4f94-ab72-50e1389d0e6e</td>\n</tr>\n<tr>\n<td>PlayerFive</td>\n<td>“Janette Doe”</td>\n</tr>\n<tr>\n<td>PlayerFiveTeeTimeID</td>\n<td>The unique tee time ID for the player’s slot in the booking  <br />  <br />Example: d390eeb1-27aa-4f94-ab72-50e1389d0e6e</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v3","TeeTimes","TeeTimeBookings","ModifyTeeTime"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"624433f8-9b95-4541-a8d2-f23d54802a0f","name":"ModifyTeeTime","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"TeeTimeID\": \"3713bbbb-3b0b-48da-a333-0db2f4c4f11e\",\r\n    \"ContactID\": \"468C2EB9-096E-41C3-A06B-B7D9532CC431\",\r\n    \"NumberOfPlayers\": 3,\r\n    \"Notes\": \"\",\r\n    \"TeeTimePlayers\": [\r\n        {\r\n            \"Number\": 1,\r\n            \"FirstName\": \"Ian\",\r\n            \"LastName\": \"Robinson\",\r\n            \"Phone\": \"6475551202\",\r\n            \"Email\": \"ian@totaleintegrated.com\",\r\n            \"Price\": 113.00,\r\n            \"PlayerPriceLevel\": \"\",\r\n            \"ContactID\": \"468C2EB9-096E-41C3-A06B-B7D9532CC431\",\r\n            \"SelectedAttachments\": [\"08a1c013-9e31-4e8b-8fea-89c77bf6ada3\"]\r\n        },\r\n        {\r\n            \"Number\": 2,\r\n            \"FirstName\": \"Jason\",\r\n            \"LastName\": \"Curtis\",\r\n            \"Phone\": \"6474441202\",\r\n            \"Email\": \"jason.curtis@totaleintegrated.com\",\r\n            \"Price\": 113.00,\r\n            \"PlayerPriceLevel\": \"\",\r\n            \"ContactID\": \"00000000-0000-0000-0000-000000000000\",\r\n            \"SelectedAttachments\": [\"08a1c013-9e31-4e8b-8fea-89c77bf6ada3\"]\r\n        },\r\n        {\r\n            \"Number\": 3,\r\n            \"FirstName\": \"Frank\",\r\n            \"LastName\": \"Curtis\",\r\n            \"Phone\": \"6474441203\",\r\n            \"Email\": \"frank.curtis@totaleintegrated.com\",\r\n            \"Price\": 113.00,\r\n            \"PlayerPriceLevel\": \"\",\r\n            \"ContactID\": \"00000000-0000-0000-0000-000000000000\",\r\n            \"SelectedAttachments\": [\"08a1c013-9e31-4e8b-8fea-89c77bf6ada3\"]\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v3/TeeTimes/TeeTimeBookings/ModifyTeeTime"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Mar 2025 14:15:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Accept-Encoding"},{"key":"api-supported-versions","value":"1.0, 2.0, 3.0"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=jzwdp6wXHUOdbvSPpO0FJzbJtaNBmYWv0PLjbrxvElmobTNe5rQwmYEWSSofOmyS7FQZ75YRV7mv7%2FK9sLkrxenffEhpQwtop%2BOLb%2B6MO94rz4Z7l8adpoB5od4VWK%2FVpcpuY3xP0rEPMIsOJ7E%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"921d1a40a8808848-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=1775&min_rtt=1641&rtt_var=711&sent=3&recv=6&lost=0&retrans=0&sent_bytes=219&recv_bytes=3088&delivery_rate=882388&cwnd=180&unsent_bytes=0&cid=130089a21968c3f6&ts=827&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"Message\": \"Success\",\n    \"ConfirmationNumber\": 24708,\n    \"CourseID\": \"GC002\",\n    \"CourseName\": \"Shipyard\",\n    \"TeeTime\": \"2025-05-13T07:31:00\",\n    \"TeeTimeID\": \"3713bbbb-3b0b-48da-a333-0db2f4c4f11e\",\n    \"StartHole\": 0,\n    \"NumberOfPlayers\": 3,\n    \"UserID\": \"468c2eb9-096e-41c3-a06b-b7d9532cc431\",\n    \"Notes\": \"\",\n    \"Is9Holes\": false,\n    \"Carts\": 2,\n    \"PlayerOne\": \"IanRobinson\",\n    \"PlayerTwo\": \"JasonCurtis\",\n    \"PlayerThree\": \"FrankCurtis\",\n    \"PlayerFour\": null,\n    \"PlayerFive\": null\n    \"TeeSheetDisplayTime\": \"7:31AM\",\n    \"TeeSheetDisplayHole\": \"2b\"\n}"}],"_postman_id":"9b0f91a9-100f-43d9-b841-80e0fb40814a"},{"name":"CommitTeeTime","id":"e05c1277-8357-4de5-b66d-dcba16b2865c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"TeeTimeID\": \"b764fa8c-670f-403d-93e7-701cf3344eb9\",\r\n    \"BookerName\": \"Ian Robinson\",\r\n    \"BookerContactID\": \"FFE7610F-FAB2-4BA7-A42E-C3B184EF2C3E\",\r\n    \"StartHole\": \"1\",\r\n    \"Is9Holes\": false,\r\n    \"CartType\": \"Walk\",\r\n    \"NumberOfPlayers\": 4,\r\n    \"Notes\": \"\",\r\n    \"TeeTimePlayers\": [\r\n        {\r\n            \"Number\": 1,\r\n            \"FirstName\": \"Ajay\",\r\n            \"LastName\": \"Patel\",\r\n            \"Phone\": \"6475551202\",\r\n            \"Email\": \"ajay@totaleintegrated.com\",\r\n            \"Price\": 113.00,\r\n            \"ContactID\": \"FFE7610F-FAB2-4BA7-A42E-C3B184EF2C3E\",\r\n            \"PlayerPriceLevel\": \"\",\r\n            \"SelectedAttachments\": [\"FFE7610F-FAB2-4BA7-A42E-C3B184EF2B3E\"]\r\n        },\r\n        {\r\n            \"Number\": 2,\r\n            \"FirstName\": \"Jason\",\r\n            \"LastName\": \"Curtis\",\r\n            \"Phone\": \"6474441202\",\r\n            \"Email\": \"jason.curtis@totaleintegrated.com\",\r\n            \"Price\": 113.00,\r\n            \"ContactID\": \"00000000-0000-0000-0000-000000000000\",\r\n            \"PlayerPriceLevel\": \"\",\r\n            \"SelectedAttachments\": [\"FFE7610F-FAB2-4BA7-A42E-C3B184EF2B3E\"]\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v3/TeeTimes/TeeTimeBookings/CommitTeeTime","description":"<p>Confirms the tee time reservation.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version:</strong> 1.100.0</p>\n<p><em>*Enhancements in Web V1.100 include TeeSheetDisplayTime, TeeSheetDisplayHole.</em></p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TeeTimeID REQUIRED</td>\n<td>The unique tee time identifier of the tee time you’d like to confirm.  <br />Example: 71C929A4-8456-48E6-B8D2-3D67C787AB2A</td>\n</tr>\n<tr>\n<td>BookerName REQUIRED</td>\n<td>The full name of the booker (i.e. first and last name)  <br />Example: John Doe</td>\n</tr>\n<tr>\n<td>BookerContactID REQUIRED</td>\n<td>The unique identifier for the contact. This is contact of the user who is creating the booking.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.</td>\n</tr>\n<tr>\n<td>StartHole REQUIRED</td>\n<td>The hole the tee time will start from. Can return 1 or 10.  <br />Example: 1</td>\n</tr>\n<tr>\n<td>Is9Holes REQUIRED</td>\n<td>If the group would like to book 9 holes, set to true. By default, search results will be false (i.e. 18 holes).  <br />Example: False</td>\n</tr>\n<tr>\n<td>CartType REQUIRED</td>\n<td>The type of transportation requested for the booking. Options include: Walk, PullCart, PowerCart.  <br />Example: PowerCart</td>\n</tr>\n<tr>\n<td>NumberOfPlayers REQUIRED</td>\n<td>The number of players for the booking. Maximum of 4 or 5 permitted (based on client configuration).  <br />Example: 4</td>\n</tr>\n<tr>\n<td>Notes</td>\n<td>Any notes/comments you’d like to add to the booking.</td>\n</tr>\n<tr>\n<td>TeeTimePlayer (List):</td>\n<td>Important Notes:  <br />- Information for player number 1 is required and will be considered the booker.  <br />- For players you have no information (i.e. Hold/TBD) for do not pass any ‘TeeTimePlayer’ parameters.</td>\n</tr>\n<tr>\n<td>Number</td>\n<td>Example: 1</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>Example: John</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>Example: Doe</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>Example: 888-660-6131</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>Example: <a href=\"https://mailto:John.Doe@dayrep.com\">John.Doe@dayrep.com</a></td>\n</tr>\n<tr>\n<td>Price</td>\n<td>The amount paid/to be paid by the player.  <br />Note: do not pass in a player price and the default tee sheet price will be applied to the player.  <br />Example: 99.00</td>\n</tr>\n<tr>\n<td>ContactID</td>\n<td>The unique identifier for the player contact.  <br />Example: 71F61FAB-9251-41BB-86C9-43EC68A0BBE3.  <br />For players you do not have a contact ID for but do have their name, email and/or phone, pass a ContactID of 00000000-0000-0000-0000-000000000000. The system will auto match with an existing contact or generate a new contact with the provided information.</td>\n</tr>\n<tr>\n<td>PlayerPriceLevel</td>\n<td>The unique price level ID for the player.  <br />Note: do not pass in a PlayerPriceLevel and the system will use the contact’s default price level (if applicable).  <br />Example: GoldPlayer</td>\n</tr>\n<tr>\n<td>SelectedAttachments (List)</td>\n<td>The unique identifier for each tee time attachment the player is adding.  <br />Example: 70b60873-e03a-413e-9d27-fd3574df80de.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Message</td>\n<td>The message returned for the booking.  <br />Example: Success.</td>\n</tr>\n<tr>\n<td>ConfirmationNumber</td>\n<td>The unique confirmation number for the booking.  <br />Example: 361141</td>\n</tr>\n<tr>\n<td>CourseID</td>\n<td>The unique course identifier the booking is on.  <br />Example: CourseA</td>\n</tr>\n<tr>\n<td>CourseName</td>\n<td>The course name the booking is on.  <br />Example: Orca.</td>\n</tr>\n<tr>\n<td>TeeTime</td>\n<td>The date and time of the tee time.  <br />Example: 2021-03-02T10:20:00</td>\n</tr>\n<tr>\n<td>TeeSheetDisplayTime</td>\n<td>An override value used to replace the standard tee time shown on the tee sheet. Commonly used for shotgun starts where multiple groups begin play at the same time.  <br />Example: 9:00AM.</td>\n</tr>\n<tr>\n<td>TeeTimeID</td>\n<td>The unique tee time identifier of the tee time.  <br />Example: 71C929A4-8456-48E6-B8D2-3D67C787AB2A</td>\n</tr>\n<tr>\n<td>StartHole</td>\n<td>The hole the tee time will start from.  <br />Example: 1</td>\n</tr>\n<tr>\n<td>TeeSheetDisplayHole</td>\n<td>An override value that replaces the standard starting tee (1 or 10) with a custom hole designation. Used for shotgun starts where groups begin on different holes simultaneously.  <br />Example: 5.</td>\n</tr>\n<tr>\n<td>NumberOfPlayers</td>\n<td>Number of players on tee time.  <br />Example: 3</td>\n</tr>\n<tr>\n<td>UserID</td>\n<td>The unique user identifier for the booker.</td>\n</tr>\n<tr>\n<td>Notes</td>\n<td>Any notes added to the tee time.  <br />Example: Aerification on greens</td>\n</tr>\n<tr>\n<td>Is9Holes</td>\n<td>If the tee time booking is for 9 holes.  <br />Example: False</td>\n</tr>\n<tr>\n<td>Carts</td>\n<td>Number of carts for the tee time.  <br />Examples: 0, 1 or 2</td>\n</tr>\n<tr>\n<td>PlayerOne</td>\n<td>“John Doe”</td>\n</tr>\n<tr>\n<td>PlayerOneTeeTimeID</td>\n<td>The unique tee time ID for the player’s slot in the booking  <br />  <br />Example: d390eeb1-27aa-4f94-ab72-50e1389d0e6e</td>\n</tr>\n<tr>\n<td>PlayerTwo</td>\n<td>“Jim Doe”</td>\n</tr>\n<tr>\n<td>PlayerTwoTeeTimeID</td>\n<td>The unique tee time ID for the player’s slot in the booking  <br />  <br />Example: d390eeb1-27aa-4f94-ab72-50e1389d0e6e</td>\n</tr>\n<tr>\n<td>PlayerThree</td>\n<td>“Jane Doe”</td>\n</tr>\n<tr>\n<td>PlayerThreeTeeTimeID</td>\n<td>The unique tee time ID for the player’s slot in the booking  <br />  <br />Example: d390eeb1-27aa-4f94-ab72-50e1389d0e6e</td>\n</tr>\n<tr>\n<td>PlayerFour</td>\n<td>“Jessica Doe”</td>\n</tr>\n<tr>\n<td>PlayerFourTeeTimeID</td>\n<td>The unique tee time ID for the player’s slot in the booking  <br />  <br />Example: d390eeb1-27aa-4f94-ab72-50e1389d0e6e</td>\n</tr>\n<tr>\n<td>PlayerFive</td>\n<td>“Janette Doe”</td>\n</tr>\n<tr>\n<td>PlayerFiveTeeTimeID</td>\n<td>The unique tee time ID for the player’s slot in the booking  <br />  <br />Example: d390eeb1-27aa-4f94-ab72-50e1389d0e6e</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v3","TeeTimes","TeeTimeBookings","CommitTeeTime"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"00403c35-30c3-41a5-9e39-0ba98f628db0","name":"CommitTeeTime","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"TeeTimeID\": \"3713bbbb-3b0b-48da-a333-0db2f4c4f11e\",\r\n    \"BookerName\": \"Ian Robinson\",\r\n    \"BookerContactID\": \"468c2eb9-096e-41c3-a06b-b7d9532cc431\",\r\n    \"StartHole\": \"1\",\r\n    \"Is9Holes\": false,\r\n    \"CartType\": \"Walk\",\r\n    \"NumberOfPlayers\": 4,\r\n    \"Notes\": \"\",\r\n    \"TeeTimePlayers\": [\r\n        {\r\n            \"Number\": 1,\r\n            \"FirstName\": \"Ian\",\r\n            \"LastName\": \"Robinson\",\r\n            \"Phone\": \"6475551202\",\r\n            \"Email\": \"ian@totaleintegrated.com\",\r\n            \"Price\": 113.00,\r\n            \"ContactID\": \"468c2eb9-096e-41c3-a06b-b7d9532cc431\",\r\n            \"PlayerPriceLevel\": \"\",\r\n            \"SelectedAttachments\": [\"08a1c013-9e31-4e8b-8fea-89c77bf6ada3\"]\r\n        },\r\n        {\r\n            \"Number\": 2,\r\n            \"FirstName\": \"Jason\",\r\n            \"LastName\": \"Curtis\",\r\n            \"Phone\": \"6474441202\",\r\n            \"Email\": \"jason.curtis@totaleintegrated.com\",\r\n            \"Price\": 113.00,\r\n            \"ContactID\": \"00000000-0000-0000-0000-000000000000\",\r\n            \"PlayerPriceLevel\": \"\",\r\n            \"SelectedAttachments\": [\"08a1c013-9e31-4e8b-8fea-89c77bf6ada3\"]\r\n        }\r\n    ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v3/TeeTimes/TeeTimeBookings/CommitTeeTime"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Mar 2025 14:13:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Accept-Encoding"},{"key":"api-supported-versions","value":"1.0, 2.0, 3.0"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=%2FTVXXXxO96wCQLgntKCCNqGiX5BA54ZQ9G1XSOv1ZvrZ2oQ3v0Dq8a1EVs6u1kU9ln%2Fqnqt%2FGOXQvpUnGea7Vh7l298GfFx2BoSOm5pVR%2BqxH13khFGNRJKUDxCQObCY1%2BgcH%2FQJCVXBPGiGcCE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"921d18006f31399e-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2457&min_rtt=2240&rtt_var=995&sent=3&recv=6&lost=0&retrans=0&sent_bytes=219&recv_bytes=2777&delivery_rate=646428&cwnd=233&unsent_bytes=0&cid=71b4ae8df7ae5f43&ts=491&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"ConfirmationNumber\": 24708,\n    \"CourseID\": \"GC002\",\n    \"CourseName\": \"Shipyard\",\n    \"TeeTime\": \"2025-05-13T07:31:00\",\n    \"TeeTimeID\": \"3713bbbb-3b0b-48da-a333-0db2f4c4f11e\",\n    \"StartHole\": 1,\n    \"NumberOfPlayers\": 4,\n    \"UserID\": \"468C2EB9-096E-41C3-A06B-B7D9532CC431\",\n    \"Notes\": \"\",\n    \"Is9Holes\": false,\n    \"Carts\": \"2\",\n    \"PlayerOne\": \"Ian Robinson\",\n    \"PlayerTwo\": \"Jason Curtis\",\n    \"PlayerThree\": \"Hold/TBD\",\n    \"PlayerFour\": \"Hold/TBD\",\n    \"PlayerFive\": \"\",\n    \"Message\": \"Success\",\n    \"TeeSheetDisplayTime\": \"7:31AM\",\n    \"TeeSheetDisplayHole\": \"2b\"\n}"}],"_postman_id":"e05c1277-8357-4de5-b66d-dcba16b2865c"},{"name":"ReleaseTeeTime","id":"9f6fd100-9099-4571-aa74-43d0d41f5383","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"TeeTimeID\": \"a2020f2f-aa41-49d6-9266-f1092f6f3057\",\r\n    \"CourseID\": \"GC001\",\r\n    \"StartHole\": \"1\",\r\n    \"DeletionReason\" : \"I dont want to play\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v2/TeeTimes/TeeTimeBookings/ReleaseTeeTime","description":"<p>Cancel a booking or release a held tee time.</p>\n<p><strong>Method:</strong> POST</p>\n<p><strong>Type:</strong> Request Body Parameters</p>\n<p><strong>Version</strong>: 1.94.0</p>\n<h3 id=\"request\">Request</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TeeTimeID (also known as ‘ReservationID’) REQUIRED</td>\n<td>The unique tee time identifier/ReservationID of the tee time you’d like to cancel/release.  <br />Example: 71C929A4-8456-48E6-B8D2-3D67C787AB2A</td>\n</tr>\n<tr>\n<td>CourseID REQUIRED</td>\n<td>The unique course identifier for the course you’d like to book.  <br />Example: CourseA.</td>\n</tr>\n<tr>\n<td>StartHole</td>\n<td>The hole the group will tee off from. 0 = 1st and 1 = 10th. By default, if left blank the system treats this as a 0.  <br />Example: 0.</td>\n</tr>\n<tr>\n<td>DeletionReason</td>\n<td>Brief note/explanation why the booking was released/cancelled.  <br />Example: Changed mind.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-elements\">Response Elements</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Success</td>\n<td>If successfully released API returns “true”. If release failed, API will return an exception error.  <br />Example: true</td>\n</tr>\n<tr>\n<td>Message</td>\n<td>If the API returned some details they will be displayed here.  <br />Example: null</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v2","TeeTimes","TeeTimeBookings","ReleaseTeeTime"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"4d7f0d90-ea02-4ff0-bb9c-ad4b4d3ec30e","name":"ReleaseTeeTime","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"TeeTimeID\": \"a2020f2f-aa41-49d6-9266-f1092f6f3057\",\r\n    \"CourseID\": \"GC001\",\r\n    \"StartHole\": \"1\",\r\n    \"DeletionReason\" : \"I dont want to play\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/api/v2/TeeTimes/TeeTimeBookings/ReleaseTeeTime"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Mar 2025 14:10:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"vary","value":"Accept-Encoding"},{"key":"api-supported-versions","value":"1.0, 2.0, 3.0"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=gvc8I3gpnUJK2Iazx8gSg4qcz9xD3mq3hpNL90rQwFxn9b%2FlBvxZa8nHOhYuJdqwYE%2Bj1z4heB1HyBWdqsK6My0aDEK0JBT5reZn8a%2F8IUoaztccjbH9gDcL9qL4JftS%2FjsuCmIROOi%2F9vlrwvQ%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"921d125eab7dd6df-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=1983&min_rtt=1848&rtt_var=790&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1784&delivery_rate=783549&cwnd=233&unsent_bytes=0&cid=b7e588d1ff8b6e72&ts=160&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"Message\": null\n}"}],"_postman_id":"9f6fd100-9099-4571-aa74-43d0d41f5383"}],"id":"ab278094-c454-4eb3-a466-fcf06b25beb0","description":"<p>Total e Integrated offers a number of Tee Sheet APIs as a means to book and view tee times outside of TEI applications.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"f2f415f6-8c03-4068-827f-eda8b5eb99ad","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"0a69ed27-8a20-4b10-967b-141256561b67","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"ab278094-c454-4eb3-a466-fcf06b25beb0"}],"variable":[{"key":"bearerToken","value":""}]}