{"info":{"_postman_id":"473a0b00-8885-4720-82bf-09a727c42acc","name":"Atreemo API (Version :1.29.0.0)","description":"<html><head></head><body><h1 id=\"welcome-to-the-atreemo-api-guide-by-acteol-an-access-company\">Welcome to the Atreemo API Guide by Acteol (an Access company)</h1>    <p>        You will be able to find all the needed API methods explained and with the possibility to test them on the sandbox instance.        The Guide does not explain the purpose or functions of Atreemo features.    </p>    <h3><strong>Getting Started</strong></h3>    <p>        The API is REST based, which is easy to work with and familiar for developers.        The base endpoint for the current version of the API is:    </p>    <ul>        <li>            https://{{Host}}/        </li>    </ul>    <p>To use the API, a login and a password are required for authentication. These credentials are provided by Atreemo support team.</p>    <h3>        <strong>            Basic Authentication         </strong>    </h3>    <p>Authentication is done through the following endpoint:</p>    <ul>        <li>            https://{{Host}}/token            </li>    </ul>    <p>        The login and the password are used in the previous endpoint, in exchange for a token that will be appended to every future request. The request should contain:        Atreemo uses token based authentication through OAuth2.This means that you use a token on every request to authorize yourself.        Obtaining an access token is done by sending a HTTP POST request to the above endpoint.    </p>    <p> The request should contain:</p>           <ul>               <li>                   The following headers: Content-Type: application/x-www-form-urlencoded/               </li>               <li>                   And the following request body: grant_type=password&amp;username=[username]&amp;password=[password]               </li>           </ul>                       <p>If your request is composed correctly, and your credentials were correct, the server will return an access_token in JSON format for you to use:</p>           <i>  {\"access_token\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9(...)\",\"token_type\":\"Bearer\",\"expires_in\":3600,\"userName\":\"username\",}</i>            <h3>                <strong>Making it easier for you:</strong>            </h3>            <p>                Throughout the documentation you'll see the use of variables like {Host} ,{access_token},{UserName},{Password} that can be swapped out using your real Credentials.                If you use Postman, this collection is available for download along with a shared variable template to define your host and Credentials variables.            </p>            <p>                you can now get the collection added to your Postman Workspace, set your credentials and test all the methods with one token request and automatically via the sandbox instance            </p>                       <p> We hope you find it simpler to use, more intuitive, and better documented, we will keep updating this guide with any new Methods or updates to the currents ones.</p></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Welcome to the Atreemo API Guide by Acteol (an Access company)","slug":"welcome-to-the-atreemo-api-guide-by-acteol-an-access-company"}],"owner":"10141267","collectionId":"473a0b00-8885-4720-82bf-09a727c42acc","publishedId":"2sBXikmWLc","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"2084f1"},"publishDate":"2026-03-25T08:09:57.000Z"},"item":[{"name":"Access Token (Authentication)","item":[{"name":"token","event":[{"id":null,"listen":"test","script":{"id":"7936d76f-3d7a-476e-8266-380cd7d52976","type":"text/javascript","exec":["var data = JSON.parse(responseBody);postman.setEnvironmentVariable(\"access_token\", data.access_token);"],"src":null,"name":"testscript"},"disabled":false}],"id":"5be77069-9e4a-4dbe-93f8-071dcdacc526","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{UserName}}","type":"text"},{"key":"password","value":"{{Password}}","type":"text"},{"key":"grant_type","value":"password","type":"text"}]},"url":"https://{{Host}}/token","description":"<p>\n            Get Access token\n            \n</p>","urlObject":{"protocol":"https","path":["token"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"1f51ca22-8f36-479b-a174-4a948e975bc1","name":"token Sample","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{UserName}}","type":"text"},{"key":"password","value":"{{Password}}","type":"text"},{"key":"grant_type","value":"password","type":"text"}]},"url":"https://{{Host}}/token","description":"<html><p>\r\n            Get Access token\r\n            \n</p></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{    \"access_token\": \"KD5eAHF7ahIYEnWWEUtwWwOpr590n-1TgaOetPhtJ1RwC1dYaUh4AW2vJGF0kudPsXRNXIswGTZNscy1O4Wln-p5wLm6InuoIToA23PGYvhHGLKkUmc...\" ,    \"token_type\": \"bearer\",    \"expires_in\": 0,    \"userName\": \"username\",    \".issued\": \"issued date\",    \".expires\": \"expiry date\"}"}],"_postman_id":"5be77069-9e4a-4dbe-93f8-071dcdacc526"}],"id":"b7f518b6-9263-42ce-a9dd-c278b4dcb5c7","description":"<p>Api method to get access token</p>\n","_postman_id":"b7f518b6-9263-42ce-a9dd-c278b4dcb5c7"},{"name":"AddToMyCalendar","item":[{"name":"AddToMyCalendar","id":"ac427574-63ee-4a2e-bbc7-ecf72c61c1dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"EventID\": 1,\r\n  \"MeetingID\": 2,\r\n  \"SlotID\": 3,\r\n  \"CtcID\": 4,\r\n  \"UserID\": 5,\r\n  \"StartDate\": \"2026-03-25T07:30:07.3547923+00:00\",\r\n  \"EndDate\": \"2026-03-25T07:30:07.3547923+00:00\",\r\n  \"EventName\": \"sample string 8\",\r\n  \"Location\": \"sample string 9\",\r\n  \"ContactEmail\": \"sample string 10\",\r\n  \"GoogleAccessToken\": \"sample string 11\",\r\n  \"UserTZOfSet\": \"sample string 12\"\r\n}"},"url":"https://{{Host}}/api/AddToMyCalendar/AddToMyCalendar","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>CalendarEvent Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ContactEmail</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>EventID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EventName</td><td>String</td><td></td><td>False</td></tr><tr><td>GoogleAccessToken</td><td>String</td><td></td><td>False</td></tr><tr><td>Location</td><td>String</td><td></td><td>False</td></tr><tr><td>MeetingID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SlotID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>UserTZOfSet</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>CalendarEventOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CalendarEvent</td><td>CalendarEvent</td><td></td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>Gets or sets the Error.</td></tr><tr><td>Response</td><td>Boolean</td><td>Gets or sets a value indicating whether Response.</td></tr><tr><td><h4>CalendarEvent Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactEmail</td><td>String</td><td></td></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EventID</td><td>Int32</td><td></td></tr><tr><td>EventName</td><td>String</td><td></td></tr><tr><td>GoogleAccessToken</td><td>String</td><td></td></tr><tr><td>Location</td><td>String</td><td></td></tr><tr><td>MeetingID</td><td>Int32</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>StartDate</td><td>DateTime</td><td></td></tr><tr><td>UserID</td><td>Int32</td><td></td></tr><tr><td>UserTZOfSet</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","AddToMyCalendar","AddToMyCalendar"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"c29b995e-5852-4bb1-b6be-ed2e4482cf8d","name":"api/AddToMyCalendar/AddToMyCalendar Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"EventID\": 1,\r\n  \"MeetingID\": 2,\r\n  \"SlotID\": 3,\r\n  \"CtcID\": 4,\r\n  \"UserID\": 5,\r\n  \"StartDate\": \"2026-03-25T07:30:07.3547923+00:00\",\r\n  \"EndDate\": \"2026-03-25T07:30:07.3547923+00:00\",\r\n  \"EventName\": \"sample string 8\",\r\n  \"Location\": \"sample string 9\",\r\n  \"ContactEmail\": \"sample string 10\",\r\n  \"GoogleAccessToken\": \"sample string 11\",\r\n  \"UserTZOfSet\": \"sample string 12\"\r\n}"},"url":"https://{{Host}}/api/AddToMyCalendar/AddToMyCalendar","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CalendarEvent Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ContactEmail</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>EventID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EventName</td><td>String</td><td></td><td>False</td></tr><tr><td>GoogleAccessToken</td><td>String</td><td></td><td>False</td></tr><tr><td>Location</td><td>String</td><td></td><td>False</td></tr><tr><td>MeetingID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SlotID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>UserTZOfSet</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>CalendarEventOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CalendarEvent</td><td>CalendarEvent</td><td></td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>Gets or sets the Error.</td></tr><tr><td>Response</td><td>Boolean</td><td>Gets or sets a value indicating whether Response.</td></tr><tr><td colspan=3><h4>CalendarEvent Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactEmail</td><td>String</td><td></td></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EventID</td><td>Int32</td><td></td></tr><tr><td>EventName</td><td>String</td><td></td></tr><tr><td>GoogleAccessToken</td><td>String</td><td></td></tr><tr><td>Location</td><td>String</td><td></td></tr><tr><td>MeetingID</td><td>Int32</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>StartDate</td><td>DateTime</td><td></td></tr><tr><td>UserID</td><td>Int32</td><td></td></tr><tr><td>UserTZOfSet</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CalendarEvent\": {\r\n    \"EventID\": 1,\r\n    \"MeetingID\": 2,\r\n    \"SlotID\": 3,\r\n    \"CtcID\": 4,\r\n    \"UserID\": 5,\r\n    \"StartDate\": \"2026-03-25T07:30:07.4016706+00:00\",\r\n    \"EndDate\": \"2026-03-25T07:30:07.4016706+00:00\",\r\n    \"EventName\": \"sample string 8\",\r\n    \"Location\": \"sample string 9\",\r\n    \"ContactEmail\": \"sample string 10\",\r\n    \"GoogleAccessToken\": \"sample string 11\",\r\n    \"UserTZOfSet\": \"sample string 12\"\r\n  },\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"ac427574-63ee-4a2e-bbc7-ecf72c61c1dd"},{"name":"AddToMyGoogleCalendar","id":"30841504-6393-48af-a2a1-77bdace46eaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"EventID\": 1,\r\n  \"MeetingID\": 2,\r\n  \"SlotID\": 3,\r\n  \"CtcID\": 4,\r\n  \"UserID\": 5,\r\n  \"StartDate\": \"2026-03-25T07:30:07.4329151+00:00\",\r\n  \"EndDate\": \"2026-03-25T07:30:07.4329151+00:00\",\r\n  \"EventName\": \"sample string 8\",\r\n  \"Location\": \"sample string 9\",\r\n  \"ContactEmail\": \"sample string 10\",\r\n  \"GoogleAccessToken\": \"sample string 11\",\r\n  \"UserTZOfSet\": \"sample string 12\"\r\n}"},"url":"https://{{Host}}/api/AddToMyCalendar/AddToMyGoogleCalendar","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>CalendarEvent Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ContactEmail</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>EventID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EventName</td><td>String</td><td></td><td>False</td></tr><tr><td>GoogleAccessToken</td><td>String</td><td></td><td>False</td></tr><tr><td>Location</td><td>String</td><td></td><td>False</td></tr><tr><td>MeetingID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SlotID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>UserTZOfSet</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>CalendarEventOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CalendarEvent</td><td>CalendarEvent</td><td></td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>Gets or sets the Error.</td></tr><tr><td>Response</td><td>Boolean</td><td>Gets or sets a value indicating whether Response.</td></tr><tr><td><h4>CalendarEvent Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactEmail</td><td>String</td><td></td></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EventID</td><td>Int32</td><td></td></tr><tr><td>EventName</td><td>String</td><td></td></tr><tr><td>GoogleAccessToken</td><td>String</td><td></td></tr><tr><td>Location</td><td>String</td><td></td></tr><tr><td>MeetingID</td><td>Int32</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>StartDate</td><td>DateTime</td><td></td></tr><tr><td>UserID</td><td>Int32</td><td></td></tr><tr><td>UserTZOfSet</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","AddToMyCalendar","AddToMyGoogleCalendar"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"4ad3c25b-b84e-4ee1-802e-341f6bcc335c","name":"api/AddToMyCalendar/AddToMyGoogleCalendar Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"EventID\": 1,\r\n  \"MeetingID\": 2,\r\n  \"SlotID\": 3,\r\n  \"CtcID\": 4,\r\n  \"UserID\": 5,\r\n  \"StartDate\": \"2026-03-25T07:30:07.4329151+00:00\",\r\n  \"EndDate\": \"2026-03-25T07:30:07.4329151+00:00\",\r\n  \"EventName\": \"sample string 8\",\r\n  \"Location\": \"sample string 9\",\r\n  \"ContactEmail\": \"sample string 10\",\r\n  \"GoogleAccessToken\": \"sample string 11\",\r\n  \"UserTZOfSet\": \"sample string 12\"\r\n}"},"url":"https://{{Host}}/api/AddToMyCalendar/AddToMyGoogleCalendar","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CalendarEvent Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ContactEmail</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>EventID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EventName</td><td>String</td><td></td><td>False</td></tr><tr><td>GoogleAccessToken</td><td>String</td><td></td><td>False</td></tr><tr><td>Location</td><td>String</td><td></td><td>False</td></tr><tr><td>MeetingID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SlotID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>UserTZOfSet</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>CalendarEventOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CalendarEvent</td><td>CalendarEvent</td><td></td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>Gets or sets the Error.</td></tr><tr><td>Response</td><td>Boolean</td><td>Gets or sets a value indicating whether Response.</td></tr><tr><td colspan=3><h4>CalendarEvent Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactEmail</td><td>String</td><td></td></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EventID</td><td>Int32</td><td></td></tr><tr><td>EventName</td><td>String</td><td></td></tr><tr><td>GoogleAccessToken</td><td>String</td><td></td></tr><tr><td>Location</td><td>String</td><td></td></tr><tr><td>MeetingID</td><td>Int32</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>StartDate</td><td>DateTime</td><td></td></tr><tr><td>UserID</td><td>Int32</td><td></td></tr><tr><td>UserTZOfSet</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CalendarEvent\": {\r\n    \"EventID\": 1,\r\n    \"MeetingID\": 2,\r\n    \"SlotID\": 3,\r\n    \"CtcID\": 4,\r\n    \"UserID\": 5,\r\n    \"StartDate\": \"2026-03-25T07:30:07.4329151+00:00\",\r\n    \"EndDate\": \"2026-03-25T07:30:07.4329151+00:00\",\r\n    \"EventName\": \"sample string 8\",\r\n    \"Location\": \"sample string 9\",\r\n    \"ContactEmail\": \"sample string 10\",\r\n    \"GoogleAccessToken\": \"sample string 11\",\r\n    \"UserTZOfSet\": \"sample string 12\"\r\n  },\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"30841504-6393-48af-a2a1-77bdace46eaf"}],"id":"b16e4eb5-9188-475d-9419-dec7c048b9a0","description":"<p>Api Methods for AddToMyCalendar</p>\n","_postman_id":"b16e4eb5-9188-475d-9419-dec7c048b9a0"},{"name":"ApiOpenAI","item":[{"name":"AnalyzeEmailSpam","id":"91f9f1e6-afe8-4a5f-b55a-f014dfc4f9c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"model\": \"sample string 1\",\r\n  \"messages\": [\r\n    {\r\n      \"role\": \"sample string 1\",\r\n      \"content\": {}\r\n    },\r\n    {\r\n      \"role\": \"sample string 1\",\r\n      \"content\": {}\r\n    }\r\n  ],\r\n  \"temperature\": 2.1,\r\n  \"top_p\": 3.1,\r\n  \"n\": 4,\r\n  \"max_tokens\": 1,\r\n  \"tools\": [\r\n    {},\r\n    {}\r\n  ],\r\n  \"tool_choice\": {}\r\n}"},"url":"https://{{Host}}/api/ApiOpenAI/AnalyzeEmailSpam?SourceID=SourceID-value&Subscription_Key=Subscription_Key-value&FunctionName=FunctionName-value&SourceObjectID=SourceObjectID-value","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>ChatCompletionRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>max_tokens</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>messages</td><td>IList&lt;Messages&gt;</td><td></td><td>False</td></tr><tr><td>model</td><td>String</td><td></td><td>False</td></tr><tr><td>n</td><td>Int32</td><td></td><td>False</td></tr><tr><td>temperature</td><td>Single</td><td></td><td>False</td></tr><tr><td>tool_choice</td><td>Object</td><td></td><td>False</td></tr><tr><td>tools</td><td>List&lt;Object&gt;</td><td></td><td>False</td></tr><tr><td>top_p</td><td>Single</td><td></td><td>False</td></tr><tr><td><h4>Messages Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>content</td><td>Object</td><td></td><td>False</td></tr><tr><td>role</td><td>String</td><td></td><td>False</td></tr></table>","urlObject":{"protocol":"https","path":["api","ApiOpenAI","AnalyzeEmailSpam"],"host":["{{Host}}"],"query":[{"key":"SourceID","value":"SourceID-value"},{"key":"Subscription_Key","value":"Subscription_Key-value"},{"key":"FunctionName","value":"FunctionName-value"},{"key":"SourceObjectID","value":"SourceObjectID-value"}],"variable":[]}},"response":[{"id":"9387c464-3be2-4910-989a-f7f60d9407d4","name":"api/ApiOpenAI/AnalyzeEmailSpam?SourceID={SourceID}&Subscription_Key={Subscription_Key}&FunctionName={FunctionName}&SourceObjectID={SourceObjectID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"model\": \"sample string 1\",\r\n  \"messages\": [\r\n    {\r\n      \"role\": \"sample string 1\",\r\n      \"content\": {}\r\n    },\r\n    {\r\n      \"role\": \"sample string 1\",\r\n      \"content\": {}\r\n    }\r\n  ],\r\n  \"temperature\": 2.1,\r\n  \"top_p\": 3.1,\r\n  \"n\": 4,\r\n  \"max_tokens\": 1,\r\n  \"tools\": [\r\n    {},\r\n    {}\r\n  ],\r\n  \"tool_choice\": {}\r\n}"},"url":{"raw":"https://{{Host}}/api/ApiOpenAI/AnalyzeEmailSpam?SourceID=SourceID-value&Subscription_Key=Subscription_Key-value&FunctionName=FunctionName-value&SourceObjectID=SourceObjectID-value","protocol":"https","host":["{{Host}}"],"path":["api","ApiOpenAI","AnalyzeEmailSpam"],"query":[{"key":"SourceID","value":"SourceID-value"},{"key":"Subscription_Key","value":"Subscription_Key-value"},{"key":"FunctionName","value":"FunctionName-value"},{"key":"SourceObjectID","value":"SourceObjectID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ChatCompletionRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>max_tokens</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>messages</td><td>IList&lt;Messages&gt;</td><td></td><td>False</td></tr><tr><td>model</td><td>String</td><td></td><td>False</td></tr><tr><td>n</td><td>Int32</td><td></td><td>False</td></tr><tr><td>temperature</td><td>Single</td><td></td><td>False</td></tr><tr><td>tool_choice</td><td>Object</td><td></td><td>False</td></tr><tr><td>tools</td><td>List&lt;Object&gt;</td><td></td><td>False</td></tr><tr><td>top_p</td><td>Single</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Messages Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>content</td><td>Object</td><td></td><td>False</td></tr><tr><td>role</td><td>String</td><td></td><td>False</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"91f9f1e6-afe8-4a5f-b55a-f014dfc4f9c1"},{"name":"GenerateCampaignSubject","id":"4c4a5b8c-b6ae-47de-a841-1d19e9e90dee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"model\": \"sample string 1\",\r\n  \"messages\": [\r\n    {\r\n      \"role\": \"sample string 1\",\r\n      \"content\": {}\r\n    },\r\n    {\r\n      \"role\": \"sample string 1\",\r\n      \"content\": {}\r\n    }\r\n  ],\r\n  \"temperature\": 2.1,\r\n  \"top_p\": 3.1,\r\n  \"n\": 4,\r\n  \"max_tokens\": 1,\r\n  \"tools\": [\r\n    {},\r\n    {}\r\n  ],\r\n  \"tool_choice\": {}\r\n}"},"url":"https://{{Host}}/api/ApiOpenAI/GenerateCampaignSubject?SourceID=SourceID-value&Subscription_Key=Subscription_Key-value&FunctionName=FunctionName-value&SourceObjectID=SourceObjectID-value&usingTools=usingTools-value","description":" <p>\n            Generates a campaign subject using OpenAI's chat completion API.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>ChatCompletionRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>max_tokens</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>messages</td><td>IList&lt;Messages&gt;</td><td></td><td>False</td></tr><tr><td>model</td><td>String</td><td></td><td>False</td></tr><tr><td>n</td><td>Int32</td><td></td><td>False</td></tr><tr><td>temperature</td><td>Single</td><td></td><td>False</td></tr><tr><td>tool_choice</td><td>Object</td><td></td><td>False</td></tr><tr><td>tools</td><td>List&lt;Object&gt;</td><td></td><td>False</td></tr><tr><td>top_p</td><td>Single</td><td></td><td>False</td></tr><tr><td><h4>Messages Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>content</td><td>Object</td><td></td><td>False</td></tr><tr><td>role</td><td>String</td><td></td><td>False</td></tr></table>","urlObject":{"protocol":"https","path":["api","ApiOpenAI","GenerateCampaignSubject"],"host":["{{Host}}"],"query":[{"key":"SourceID","value":"SourceID-value"},{"key":"Subscription_Key","value":"Subscription_Key-value"},{"key":"FunctionName","value":"FunctionName-value"},{"key":"SourceObjectID","value":"SourceObjectID-value"},{"key":"usingTools","value":"usingTools-value"}],"variable":[]}},"response":[{"id":"692a9006-ee31-4ba7-8b26-e1ffa21036c9","name":"api/ApiOpenAI/GenerateCampaignSubject?SourceID={SourceID}&Subscription_Key={Subscription_Key}&FunctionName={FunctionName}&SourceObjectID={SourceObjectID}&usingTools={usingTools} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"model\": \"sample string 1\",\r\n  \"messages\": [\r\n    {\r\n      \"role\": \"sample string 1\",\r\n      \"content\": {}\r\n    },\r\n    {\r\n      \"role\": \"sample string 1\",\r\n      \"content\": {}\r\n    }\r\n  ],\r\n  \"temperature\": 2.1,\r\n  \"top_p\": 3.1,\r\n  \"n\": 4,\r\n  \"max_tokens\": 1,\r\n  \"tools\": [\r\n    {},\r\n    {}\r\n  ],\r\n  \"tool_choice\": {}\r\n}"},"url":{"raw":"https://{{Host}}/api/ApiOpenAI/GenerateCampaignSubject?SourceID=SourceID-value&Subscription_Key=Subscription_Key-value&FunctionName=FunctionName-value&SourceObjectID=SourceObjectID-value&usingTools=usingTools-value","protocol":"https","host":["{{Host}}"],"path":["api","ApiOpenAI","GenerateCampaignSubject"],"query":[{"key":"SourceID","value":"SourceID-value"},{"key":"Subscription_Key","value":"Subscription_Key-value"},{"key":"FunctionName","value":"FunctionName-value"},{"key":"SourceObjectID","value":"SourceObjectID-value"},{"key":"usingTools","value":"usingTools-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Generates a campaign subject using OpenAI's chat completion API.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ChatCompletionRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>max_tokens</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>messages</td><td>IList&lt;Messages&gt;</td><td></td><td>False</td></tr><tr><td>model</td><td>String</td><td></td><td>False</td></tr><tr><td>n</td><td>Int32</td><td></td><td>False</td></tr><tr><td>temperature</td><td>Single</td><td></td><td>False</td></tr><tr><td>tool_choice</td><td>Object</td><td></td><td>False</td></tr><tr><td>tools</td><td>List&lt;Object&gt;</td><td></td><td>False</td></tr><tr><td>top_p</td><td>Single</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Messages Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>content</td><td>Object</td><td></td><td>False</td></tr><tr><td>role</td><td>String</td><td></td><td>False</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4c4a5b8c-b6ae-47de-a841-1d19e9e90dee"},{"name":"GenerateRFMSegmentMovement","id":"eea30b84-a83e-4ca8-94f1-44f57d60d4c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"model\": \"sample string 1\",\r\n  \"messages\": [\r\n    {\r\n      \"role\": \"sample string 1\",\r\n      \"content\": {}\r\n    },\r\n    {\r\n      \"role\": \"sample string 1\",\r\n      \"content\": {}\r\n    }\r\n  ],\r\n  \"temperature\": 2.1,\r\n  \"top_p\": 3.1,\r\n  \"n\": 4,\r\n  \"max_tokens\": 1,\r\n  \"tools\": [\r\n    {},\r\n    {}\r\n  ],\r\n  \"tool_choice\": {}\r\n}"},"url":"https://{{Host}}/api/ApiOpenAI/GenerateRFMSegmentMovement?SourceID=SourceID-value&Subscription_Key=Subscription_Key-value&FunctionName=FunctionName-value&SourceObjectID=SourceObjectID-value","description":" <p>\n            Generates RFM Segment Movement Summary using OpenAI's chat completion API.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>ChatCompletionRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>max_tokens</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>messages</td><td>IList&lt;Messages&gt;</td><td></td><td>False</td></tr><tr><td>model</td><td>String</td><td></td><td>False</td></tr><tr><td>n</td><td>Int32</td><td></td><td>False</td></tr><tr><td>temperature</td><td>Single</td><td></td><td>False</td></tr><tr><td>tool_choice</td><td>Object</td><td></td><td>False</td></tr><tr><td>tools</td><td>List&lt;Object&gt;</td><td></td><td>False</td></tr><tr><td>top_p</td><td>Single</td><td></td><td>False</td></tr><tr><td><h4>Messages Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>content</td><td>Object</td><td></td><td>False</td></tr><tr><td>role</td><td>String</td><td></td><td>False</td></tr></table>","urlObject":{"protocol":"https","path":["api","ApiOpenAI","GenerateRFMSegmentMovement"],"host":["{{Host}}"],"query":[{"key":"SourceID","value":"SourceID-value"},{"key":"Subscription_Key","value":"Subscription_Key-value"},{"key":"FunctionName","value":"FunctionName-value"},{"key":"SourceObjectID","value":"SourceObjectID-value"}],"variable":[]}},"response":[{"id":"27faca70-9071-4df3-8ae9-f42c331ba3e6","name":"api/ApiOpenAI/GenerateRFMSegmentMovement?SourceID={SourceID}&Subscription_Key={Subscription_Key}&FunctionName={FunctionName}&SourceObjectID={SourceObjectID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"model\": \"sample string 1\",\r\n  \"messages\": [\r\n    {\r\n      \"role\": \"sample string 1\",\r\n      \"content\": {}\r\n    },\r\n    {\r\n      \"role\": \"sample string 1\",\r\n      \"content\": {}\r\n    }\r\n  ],\r\n  \"temperature\": 2.1,\r\n  \"top_p\": 3.1,\r\n  \"n\": 4,\r\n  \"max_tokens\": 1,\r\n  \"tools\": [\r\n    {},\r\n    {}\r\n  ],\r\n  \"tool_choice\": {}\r\n}"},"url":{"raw":"https://{{Host}}/api/ApiOpenAI/GenerateRFMSegmentMovement?SourceID=SourceID-value&Subscription_Key=Subscription_Key-value&FunctionName=FunctionName-value&SourceObjectID=SourceObjectID-value","protocol":"https","host":["{{Host}}"],"path":["api","ApiOpenAI","GenerateRFMSegmentMovement"],"query":[{"key":"SourceID","value":"SourceID-value"},{"key":"Subscription_Key","value":"Subscription_Key-value"},{"key":"FunctionName","value":"FunctionName-value"},{"key":"SourceObjectID","value":"SourceObjectID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Generates RFM Segment Movement Summary using OpenAI's chat completion API.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ChatCompletionRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>max_tokens</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>messages</td><td>IList&lt;Messages&gt;</td><td></td><td>False</td></tr><tr><td>model</td><td>String</td><td></td><td>False</td></tr><tr><td>n</td><td>Int32</td><td></td><td>False</td></tr><tr><td>temperature</td><td>Single</td><td></td><td>False</td></tr><tr><td>tool_choice</td><td>Object</td><td></td><td>False</td></tr><tr><td>tools</td><td>List&lt;Object&gt;</td><td></td><td>False</td></tr><tr><td>top_p</td><td>Single</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Messages Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>content</td><td>Object</td><td></td><td>False</td></tr><tr><td>role</td><td>String</td><td></td><td>False</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"eea30b84-a83e-4ca8-94f1-44f57d60d4c6"},{"name":"GetEngagementAIAnalysis","id":"fcfb6d49-e74a-47d5-aeb3-a1081a8335fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/OpenAI/GetEngagementAIAnalysis?UserID=UserID-value&BrandID=BrandID-value&ClientID=ClientID-value&NbDaysSinceLastRun=NbDaysSinceLastRun-value","description":" <p>\n</p>","urlObject":{"protocol":"https","path":["api","OpenAI","GetEngagementAIAnalysis"],"host":["{{Host}}"],"query":[{"key":"UserID","value":"UserID-value"},{"key":"BrandID","value":"BrandID-value"},{"key":"ClientID","value":"ClientID-value"},{"key":"NbDaysSinceLastRun","value":"NbDaysSinceLastRun-value"}],"variable":[]}},"response":[{"id":"816084f8-c162-427b-a3b5-0f6210e3e50a","name":"api/OpenAI/GetEngagementAIAnalysis?UserID={UserID}&BrandID={BrandID}&ClientID={ClientID}&NbDaysSinceLastRun={NbDaysSinceLastRun} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/OpenAI/GetEngagementAIAnalysis?UserID=UserID-value&BrandID=BrandID-value&ClientID=ClientID-value&NbDaysSinceLastRun=NbDaysSinceLastRun-value","protocol":"https","host":["{{Host}}"],"path":["api","OpenAI","GetEngagementAIAnalysis"],"query":[{"key":"UserID","value":"UserID-value"},{"key":"BrandID","value":"BrandID-value"},{"key":"ClientID","value":"ClientID-value"},{"key":"NbDaysSinceLastRun","value":"NbDaysSinceLastRun-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fcfb6d49-e74a-47d5-aeb3-a1081a8335fe"}],"id":"d08fd401-4670-4d1f-ae6e-c04ab2b133c2","description":"<p>Api Methods for ApiOpenAI</p>\n","_postman_id":"d08fd401-4670-4d1f-ae6e-c04ab2b133c2"},{"name":"App","item":[{"name":"GetCtcIDByPushNotificationToken","id":"d5dd4655-cc67-4678-a163-236d950abe22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/App/GetCtcIDByPushNotificationToken?Token=Token-value","description":" <p>\n            Get the list of push notification tokens linked to a contact\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>CtcIDOutPut Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","App","GetCtcIDByPushNotificationToken"],"host":["{{Host}}"],"query":[{"key":"Token","value":"Token-value"}],"variable":[]}},"response":[{"id":"529fe760-2351-442c-afce-b6b5c19ff890","name":"api/App/GetCtcIDByPushNotificationToken?Token={Token} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/App/GetCtcIDByPushNotificationToken?Token=Token-value","protocol":"https","host":["{{Host}}"],"path":["api","App","GetCtcIDByPushNotificationToken"],"query":[{"key":"Token","value":"Token-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get the list of push notification tokens linked to a contact\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>CtcIDOutPut Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Error\": \"sample string 1\",\r\n  \"Response\": true,\r\n  \"CtcID\": 3\r\n}"}],"_postman_id":"d5dd4655-cc67-4678-a163-236d950abe22"},{"name":"GetPushNotificationTokensByContact","id":"e41ea664-b416-4d93-83ac-69e8ffd86f52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/App/GetPushNotificationTokensByContact?CtcID=CtcID-value","description":" <p>\n            Get the list of push notification tokens linked to a contact\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>TokensOutPut Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td>Tokens</td><td>List&lt;String&gt;</td><td>List of tokens</td></tr></table>","urlObject":{"protocol":"https","path":["api","App","GetPushNotificationTokensByContact"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"}],"variable":[]}},"response":[{"id":"f6b62eca-d558-48da-8cec-ea9fa198810d","name":"api/App/GetPushNotificationTokensByContact?CtcID={CtcID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/App/GetPushNotificationTokensByContact?CtcID=CtcID-value","protocol":"https","host":["{{Host}}"],"path":["api","App","GetPushNotificationTokensByContact"],"query":[{"key":"CtcID","value":"CtcID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get the list of push notification tokens linked to a contact\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>TokensOutPut Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td>Tokens</td><td>List&lt;String&gt;</td><td>List of tokens</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Error\": \"sample string 1\",\r\n  \"Response\": true,\r\n  \"Tokens\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"e41ea664-b416-4d93-83ac-69e8ffd86f52"},{"name":"LinkTo","id":"70a42d27-3ce0-4617-b482-3a8a91159f52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Token\": \"sample string 2\",\r\n  \"ExpiryDate\": \"2026-03-25T07:30:07.4797814+00:00\",\r\n  \"AppID\": 3,\r\n  \"OS\": \"sample string 4\",\r\n  \"SourceID\": \"sample string 5\",\r\n  \"OriginID\": \"sample string 6\"\r\n}"},"url":"https://{{Host}}/api/App/LinkTo","description":" <p>\n            Link token to customer that will be used for mobile App notifications\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>LinkToInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppID</td><td>Int32</td><td>Clients having more than one customer application should also use an AppID which will be supplied by Acteol</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>the expiry date of the token</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>Origin ID</td><td>False</td></tr><tr><td>OS</td><td>String</td><td>Device \"IOS\" or \"Android\"</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>Token</td><td>String</td><td>The notification token</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","App","LinkTo"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"b3450855-9557-4586-8357-7e761a0e7e6b","name":"api/App/LinkTo Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Token\": \"sample string 2\",\r\n  \"ExpiryDate\": \"2026-03-25T07:30:07.4797814+00:00\",\r\n  \"AppID\": 3,\r\n  \"OS\": \"sample string 4\",\r\n  \"SourceID\": \"sample string 5\",\r\n  \"OriginID\": \"sample string 6\"\r\n}"},"url":"https://{{Host}}/api/App/LinkTo","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Link token to customer that will be used for mobile App notifications\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>LinkToInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppID</td><td>Int32</td><td>Clients having more than one customer application should also use an AppID which will be supplied by Acteol</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>the expiry date of the token</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>Origin ID</td><td>False</td></tr><tr><td>OS</td><td>String</td><td>Device \"IOS\" or \"Android\"</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>Token</td><td>String</td><td>The notification token</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"70a42d27-3ce0-4617-b482-3a8a91159f52"},{"name":"RemovePushNotificationToken","id":"ecf28b9c-d528-44df-8b9a-706be8b7971c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/App/RemovePushNotificationToken?Token=Token-value","description":" <p>\n            Remove push notification token\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4>","urlObject":{"protocol":"https","path":["api","App","RemovePushNotificationToken"],"host":["{{Host}}"],"query":[{"key":"Token","value":"Token-value"}],"variable":[]}},"response":[{"id":"269c11c3-37f9-47bc-9388-223eba6e703d","name":"api/App/RemovePushNotificationToken?Token={Token} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/App/RemovePushNotificationToken?Token=Token-value","protocol":"https","host":["{{Host}}"],"path":["api","App","RemovePushNotificationToken"],"query":[{"key":"Token","value":"Token-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Remove push notification token\r\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"true"}],"_postman_id":"ecf28b9c-d528-44df-8b9a-706be8b7971c"},{"name":"WebLinkTo","id":"fb276729-28bc-4ee6-8bba-06adaba18351","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Token\": \"sample string 2\",\r\n  \"ExpiryDate\": \"2026-03-25T07:30:07.495419+00:00\",\r\n  \"AppID\": 3,\r\n  \"OS\": \"sample string 4\",\r\n  \"SourceID\": \"sample string 5\",\r\n  \"OriginID\": \"sample string 6\"\r\n}"},"url":"https://{{Host}}/api/App/WebLinkTo","description":" <p>\n            Link token to customer that will be used for web notifications\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>LinkToInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppID</td><td>Int32</td><td>Clients having more than one customer application should also use an AppID which will be supplied by Acteol</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>the expiry date of the token</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>Origin ID</td><td>False</td></tr><tr><td>OS</td><td>String</td><td>Device \"IOS\" or \"Android\"</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>Token</td><td>String</td><td>The notification token</td><td>False</td></tr></table>","urlObject":{"protocol":"https","path":["api","App","WebLinkTo"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"468beb59-929d-4d09-afe6-2ba944faa017","name":"api/App/WebLinkTo Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Token\": \"sample string 2\",\r\n  \"ExpiryDate\": \"2026-03-25T07:30:07.495419+00:00\",\r\n  \"AppID\": 3,\r\n  \"OS\": \"sample string 4\",\r\n  \"SourceID\": \"sample string 5\",\r\n  \"OriginID\": \"sample string 6\"\r\n}"},"url":"https://{{Host}}/api/App/WebLinkTo","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Link token to customer that will be used for web notifications\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>LinkToInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppID</td><td>Int32</td><td>Clients having more than one customer application should also use an AppID which will be supplied by Acteol</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>the expiry date of the token</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>Origin ID</td><td>False</td></tr><tr><td>OS</td><td>String</td><td>Device \"IOS\" or \"Android\"</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>Token</td><td>String</td><td>The notification token</td><td>False</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fb276729-28bc-4ee6-8bba-06adaba18351"}],"id":"68ffe133-9341-46da-826f-763f9fb5079d","description":"<p>Api Methods for App</p>\n","_postman_id":"68ffe133-9341-46da-826f-763f9fb5079d"},{"name":"AtreemoTranslator","item":[{"name":"Translate","id":"fe90e45b-15ae-4072-9306-2ca3b072fe3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Texts\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"LanguageCode\": \"sample string 1\"\r\n}"},"url":"https://{{Host}}/api/AtreemoTranslator/Translate","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>TranslationRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>LanguageCode</td><td>String</td><td></td><td>False</td></tr><tr><td>Texts</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr></table>","urlObject":{"protocol":"https","path":["api","AtreemoTranslator","Translate"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"61628c2c-d635-465b-8c36-4517ef8b2051","name":"api/AtreemoTranslator/Translate Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Texts\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"LanguageCode\": \"sample string 1\"\r\n}"},"url":"https://{{Host}}/api/AtreemoTranslator/Translate","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>TranslationRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>LanguageCode</td><td>String</td><td></td><td>False</td></tr><tr><td>Texts</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fe90e45b-15ae-4072-9306-2ca3b072fe3d"}],"id":"82e04f4c-91fa-48fd-a214-e7700a6d613f","description":"<p>Api Methods for AtreemoTranslator</p>\n","_postman_id":"82e04f4c-91fa-48fd-a214-e7700a6d613f"},{"name":"Basket","item":[{"name":"AutoRedeemBenefit","id":"7c4b86ba-de51-4d05-afff-76d1f91ec6e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Basket\": {\r\n    \"OrderID\": 1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"OrderDate\": \"2026-03-25T07:30:07.495419+00:00\",\r\n    \"BasketItems\": [\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"TotalCostExclTax\": 3.1,\r\n    \"TotalCost\": 4.1,\r\n    \"SourceID\": \"sample string 5\",\r\n    \"VATNumber\": \"sample string 6\"\r\n  }\r\n}"},"url":"https://{{Host}}/api/Basket/AutoRedeemBenefit","description":" <p>\n            Auto select voucher for redemption\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>AutoRedemptionValidationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Basket</td><td>Basket</td><td>The basket</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td><h4>Basket Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketItems</td><td>List&lt;BasketItem&gt;</td><td>The list of basket details</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>the ID of the site</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The Date of order</td><td>False</td></tr><tr><td>OrderID</td><td>Int32</td><td>The order ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the basket</td><td>False</td></tr><tr><td>TotalCost</td><td>Double</td><td>The total amount</td><td>False</td></tr><tr><td>TotalCostExclTax</td><td>Double</td><td>The total amount without VAT</td><td>False</td></tr><tr><td>VATNumber</td><td>String</td><td>VAT ID</td><td>False</td></tr><tr><td><h4>BasketItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID).It should be empty when the order is linked to one customer</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>ModifierItems</td><td>List&lt;BasketModifiersItem&gt;</td><td>The list of modifiers</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item without VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td><h4>BasketModifiersItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item witout VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>RedemptionValidationOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DiscountItem</td><td>BasketDiscountItem</td><td>The discount details</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td><h4>BasketDiscountItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The amount of the discount related to this item</td></tr><tr><td>RedemptionID</td><td>String</td><td>The unique identifier of the redemption</td></tr><tr><td>VoucherCode</td><td>String</td><td>The benefit code used for this discount</td></tr></table>","urlObject":{"protocol":"https","path":["api","Basket","AutoRedeemBenefit"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"4e3586d9-786b-4a55-9676-b704f01cbd5c","name":"api/Basket/AutoRedeemBenefit Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Basket\": {\r\n    \"OrderID\": 1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"OrderDate\": \"2026-03-25T07:30:07.495419+00:00\",\r\n    \"BasketItems\": [\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"TotalCostExclTax\": 3.1,\r\n    \"TotalCost\": 4.1,\r\n    \"SourceID\": \"sample string 5\",\r\n    \"VATNumber\": \"sample string 6\"\r\n  }\r\n}"},"url":"https://{{Host}}/api/Basket/AutoRedeemBenefit","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Auto select voucher for redemption\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>AutoRedemptionValidationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Basket</td><td>Basket</td><td>The basket</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td colspan=4><h4>Basket Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketItems</td><td>List&lt;BasketItem&gt;</td><td>The list of basket details</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>the ID of the site</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The Date of order</td><td>False</td></tr><tr><td>OrderID</td><td>Int32</td><td>The order ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the basket</td><td>False</td></tr><tr><td>TotalCost</td><td>Double</td><td>The total amount</td><td>False</td></tr><tr><td>TotalCostExclTax</td><td>Double</td><td>The total amount without VAT</td><td>False</td></tr><tr><td>VATNumber</td><td>String</td><td>VAT ID</td><td>False</td></tr><tr><td colspan=4><h4>BasketItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID).It should be empty when the order is linked to one customer</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>ModifierItems</td><td>List&lt;BasketModifiersItem&gt;</td><td>The list of modifiers</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item without VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td colspan=4><h4>BasketModifiersItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item witout VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>RedemptionValidationOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DiscountItem</td><td>BasketDiscountItem</td><td>The discount details</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td colspan=3><h4>BasketDiscountItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The amount of the discount related to this item</td></tr><tr><td>RedemptionID</td><td>String</td><td>The unique identifier of the redemption</td></tr><tr><td>VoucherCode</td><td>String</td><td>The benefit code used for this discount</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"DiscountItem\": {\r\n    \"RedemptionID\": \"sample string 1\",\r\n    \"DiscountAmount\": 2.1,\r\n    \"VoucherCode\": \"sample string 3\"\r\n  },\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"7c4b86ba-de51-4d05-afff-76d1f91ec6e8"},{"name":"Burn","id":"2cab2b94-0edd-4e62-ae7f-c5e268d78e0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Description\": \"sample string 2\",\r\n  \"Basket\": {\r\n    \"OrderID\": 1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"OrderDate\": \"2026-03-25T07:30:07.5266608+00:00\",\r\n    \"BasketItems\": [\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"TotalCostExclTax\": 3.1,\r\n    \"TotalCost\": 4.1,\r\n    \"SourceID\": \"sample string 5\",\r\n    \"VATNumber\": \"sample string 6\"\r\n  },\r\n  \"Payment\": {\r\n    \"PaymentMethodName\": \"sample string 1\",\r\n    \"AmountPaid\": 2.1\r\n  }\r\n}"},"url":"https://{{Host}}/api/Basket/Burn","description":" <p>\n            Burn points\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>BasketPointInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Basket</td><td>Basket</td><td>The basket</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>Description</td><td>String</td><td>Description of the transaction</td><td>False</td></tr><tr><td>Payment</td><td>BasketPayment</td><td>The payment method used to earn point</td><td>False</td></tr><tr><td><h4>Basket Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketItems</td><td>List&lt;BasketItem&gt;</td><td>The list of basket details</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>the ID of the site</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The Date of order</td><td>False</td></tr><tr><td>OrderID</td><td>Int32</td><td>The order ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the basket</td><td>False</td></tr><tr><td>TotalCost</td><td>Double</td><td>The total amount</td><td>False</td></tr><tr><td>TotalCostExclTax</td><td>Double</td><td>The total amount without VAT</td><td>False</td></tr><tr><td>VATNumber</td><td>String</td><td>VAT ID</td><td>False</td></tr><tr><td><h4>BasketItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID).It should be empty when the order is linked to one customer</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>ModifierItems</td><td>List&lt;BasketModifiersItem&gt;</td><td>The list of modifiers</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item without VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td><h4>BasketModifiersItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item witout VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td><h4>BasketPayment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPaid</td><td>Double</td><td>Amount paid</td><td>False</td></tr><tr><td>PaymentMethodName</td><td>String</td><td>The Payment method name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>BasketPointOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>The cash balance of the customer</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>PointBalance</td><td>Double</td><td>The point balance of the customer</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Basket","Burn"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"dc80ee65-c97c-4247-a07e-2c70bd526bb0","name":"api/Basket/Burn Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Description\": \"sample string 2\",\r\n  \"Basket\": {\r\n    \"OrderID\": 1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"OrderDate\": \"2026-03-25T07:30:07.5266608+00:00\",\r\n    \"BasketItems\": [\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"TotalCostExclTax\": 3.1,\r\n    \"TotalCost\": 4.1,\r\n    \"SourceID\": \"sample string 5\",\r\n    \"VATNumber\": \"sample string 6\"\r\n  },\r\n  \"Payment\": {\r\n    \"PaymentMethodName\": \"sample string 1\",\r\n    \"AmountPaid\": 2.1\r\n  }\r\n}"},"url":"https://{{Host}}/api/Basket/Burn","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Burn points\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>BasketPointInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Basket</td><td>Basket</td><td>The basket</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>Description</td><td>String</td><td>Description of the transaction</td><td>False</td></tr><tr><td>Payment</td><td>BasketPayment</td><td>The payment method used to earn point</td><td>False</td></tr><tr><td colspan=4><h4>Basket Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketItems</td><td>List&lt;BasketItem&gt;</td><td>The list of basket details</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>the ID of the site</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The Date of order</td><td>False</td></tr><tr><td>OrderID</td><td>Int32</td><td>The order ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the basket</td><td>False</td></tr><tr><td>TotalCost</td><td>Double</td><td>The total amount</td><td>False</td></tr><tr><td>TotalCostExclTax</td><td>Double</td><td>The total amount without VAT</td><td>False</td></tr><tr><td>VATNumber</td><td>String</td><td>VAT ID</td><td>False</td></tr><tr><td colspan=4><h4>BasketItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID).It should be empty when the order is linked to one customer</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>ModifierItems</td><td>List&lt;BasketModifiersItem&gt;</td><td>The list of modifiers</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item without VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td colspan=4><h4>BasketModifiersItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item witout VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td colspan=4><h4>BasketPayment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPaid</td><td>Double</td><td>Amount paid</td><td>False</td></tr><tr><td>PaymentMethodName</td><td>String</td><td>The Payment method name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>BasketPointOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>The cash balance of the customer</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>PointBalance</td><td>Double</td><td>The point balance of the customer</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CustomerID\": 1,\r\n  \"PointBalance\": 2.1,\r\n  \"CashBalance\": 3.1,\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"2cab2b94-0edd-4e62-ae7f-c5e268d78e0d"},{"name":"CancelBasket","id":"e88cf6d2-4e98-41ea-a81b-d30e30282723","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"BasketID\": \"sample string 1\",\r\n  \"OrderID\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Basket/CancelBasket","description":" <p>\n            Cancel the basket\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>BasketCancellationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketID</td><td>String</td><td>The ID basket</td><td>False</td></tr><tr><td>OrderID</td><td>String</td><td>The ID of the orderbasket</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>BasketCancellationOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Basket","CancelBasket"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"9db27831-4932-442f-b52f-0453a5c92039","name":"api/Basket/CancelBasket Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"BasketID\": \"sample string 1\",\r\n  \"OrderID\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Basket/CancelBasket","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Cancel the basket\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>BasketCancellationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketID</td><td>String</td><td>The ID basket</td><td>False</td></tr><tr><td>OrderID</td><td>String</td><td>The ID of the orderbasket</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>BasketCancellationOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"e88cf6d2-4e98-41ea-a81b-d30e30282723"},{"name":"CancelBurnPoint","id":"4acc2cde-030f-4630-a896-0da83e243c2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Description\": \"sample string 2\",\r\n  \"Basket\": {\r\n    \"OrderID\": 1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"OrderDate\": \"2026-03-25T07:30:07.5579081+00:00\",\r\n    \"BasketItems\": [\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"TotalCostExclTax\": 3.1,\r\n    \"TotalCost\": 4.1,\r\n    \"SourceID\": \"sample string 5\",\r\n    \"VATNumber\": \"sample string 6\"\r\n  },\r\n  \"Payment\": {\r\n    \"PaymentMethodName\": \"sample string 1\",\r\n    \"AmountPaid\": 2.1\r\n  }\r\n}"},"url":"https://{{Host}}/api/Basket/CancelBurnPoint","description":" <p>\n            Revert points\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>BasketPointInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Basket</td><td>Basket</td><td>The basket</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>Description</td><td>String</td><td>Description of the transaction</td><td>False</td></tr><tr><td>Payment</td><td>BasketPayment</td><td>The payment method used to earn point</td><td>False</td></tr><tr><td><h4>Basket Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketItems</td><td>List&lt;BasketItem&gt;</td><td>The list of basket details</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>the ID of the site</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The Date of order</td><td>False</td></tr><tr><td>OrderID</td><td>Int32</td><td>The order ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the basket</td><td>False</td></tr><tr><td>TotalCost</td><td>Double</td><td>The total amount</td><td>False</td></tr><tr><td>TotalCostExclTax</td><td>Double</td><td>The total amount without VAT</td><td>False</td></tr><tr><td>VATNumber</td><td>String</td><td>VAT ID</td><td>False</td></tr><tr><td><h4>BasketItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID).It should be empty when the order is linked to one customer</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>ModifierItems</td><td>List&lt;BasketModifiersItem&gt;</td><td>The list of modifiers</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item without VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td><h4>BasketModifiersItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item witout VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td><h4>BasketPayment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPaid</td><td>Double</td><td>Amount paid</td><td>False</td></tr><tr><td>PaymentMethodName</td><td>String</td><td>The Payment method name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>BasketPointOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>The cash balance of the customer</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>PointBalance</td><td>Double</td><td>The point balance of the customer</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Basket","CancelBurnPoint"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"d4cd6f58-c40f-423e-8e50-a5c222edf45e","name":"api/Basket/CancelBurnPoint Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Description\": \"sample string 2\",\r\n  \"Basket\": {\r\n    \"OrderID\": 1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"OrderDate\": \"2026-03-25T07:30:07.5579081+00:00\",\r\n    \"BasketItems\": [\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"TotalCostExclTax\": 3.1,\r\n    \"TotalCost\": 4.1,\r\n    \"SourceID\": \"sample string 5\",\r\n    \"VATNumber\": \"sample string 6\"\r\n  },\r\n  \"Payment\": {\r\n    \"PaymentMethodName\": \"sample string 1\",\r\n    \"AmountPaid\": 2.1\r\n  }\r\n}"},"url":"https://{{Host}}/api/Basket/CancelBurnPoint","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Revert points\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>BasketPointInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Basket</td><td>Basket</td><td>The basket</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>Description</td><td>String</td><td>Description of the transaction</td><td>False</td></tr><tr><td>Payment</td><td>BasketPayment</td><td>The payment method used to earn point</td><td>False</td></tr><tr><td colspan=4><h4>Basket Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketItems</td><td>List&lt;BasketItem&gt;</td><td>The list of basket details</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>the ID of the site</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The Date of order</td><td>False</td></tr><tr><td>OrderID</td><td>Int32</td><td>The order ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the basket</td><td>False</td></tr><tr><td>TotalCost</td><td>Double</td><td>The total amount</td><td>False</td></tr><tr><td>TotalCostExclTax</td><td>Double</td><td>The total amount without VAT</td><td>False</td></tr><tr><td>VATNumber</td><td>String</td><td>VAT ID</td><td>False</td></tr><tr><td colspan=4><h4>BasketItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID).It should be empty when the order is linked to one customer</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>ModifierItems</td><td>List&lt;BasketModifiersItem&gt;</td><td>The list of modifiers</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item without VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td colspan=4><h4>BasketModifiersItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item witout VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td colspan=4><h4>BasketPayment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPaid</td><td>Double</td><td>Amount paid</td><td>False</td></tr><tr><td>PaymentMethodName</td><td>String</td><td>The Payment method name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>BasketPointOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>The cash balance of the customer</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>PointBalance</td><td>Double</td><td>The point balance of the customer</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CustomerID\": 1,\r\n  \"PointBalance\": 2.1,\r\n  \"CashBalance\": 3.1,\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"4acc2cde-030f-4630-a896-0da83e243c2c"},{"name":"CancelEarnPoint","id":"3773f38f-c530-4160-8ebf-8e884a0d00c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Description\": \"sample string 2\",\r\n  \"Basket\": {\r\n    \"OrderID\": 1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"OrderDate\": \"2026-03-25T07:30:07.5579081+00:00\",\r\n    \"BasketItems\": [\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"TotalCostExclTax\": 3.1,\r\n    \"TotalCost\": 4.1,\r\n    \"SourceID\": \"sample string 5\",\r\n    \"VATNumber\": \"sample string 6\"\r\n  },\r\n  \"Payment\": {\r\n    \"PaymentMethodName\": \"sample string 1\",\r\n    \"AmountPaid\": 2.1\r\n  }\r\n}"},"url":"https://{{Host}}/api/Basket/CancelEarnPoint","description":" <p>\n            Revert points\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>BasketPointInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Basket</td><td>Basket</td><td>The basket</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>Description</td><td>String</td><td>Description of the transaction</td><td>False</td></tr><tr><td>Payment</td><td>BasketPayment</td><td>The payment method used to earn point</td><td>False</td></tr><tr><td><h4>Basket Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketItems</td><td>List&lt;BasketItem&gt;</td><td>The list of basket details</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>the ID of the site</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The Date of order</td><td>False</td></tr><tr><td>OrderID</td><td>Int32</td><td>The order ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the basket</td><td>False</td></tr><tr><td>TotalCost</td><td>Double</td><td>The total amount</td><td>False</td></tr><tr><td>TotalCostExclTax</td><td>Double</td><td>The total amount without VAT</td><td>False</td></tr><tr><td>VATNumber</td><td>String</td><td>VAT ID</td><td>False</td></tr><tr><td><h4>BasketItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID).It should be empty when the order is linked to one customer</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>ModifierItems</td><td>List&lt;BasketModifiersItem&gt;</td><td>The list of modifiers</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item without VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td><h4>BasketModifiersItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item witout VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td><h4>BasketPayment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPaid</td><td>Double</td><td>Amount paid</td><td>False</td></tr><tr><td>PaymentMethodName</td><td>String</td><td>The Payment method name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>BasketPointOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>The cash balance of the customer</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>PointBalance</td><td>Double</td><td>The point balance of the customer</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Basket","CancelEarnPoint"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"340886aa-7954-45e7-a6eb-d78549f82947","name":"api/Basket/CancelEarnPoint Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Description\": \"sample string 2\",\r\n  \"Basket\": {\r\n    \"OrderID\": 1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"OrderDate\": \"2026-03-25T07:30:07.5579081+00:00\",\r\n    \"BasketItems\": [\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"TotalCostExclTax\": 3.1,\r\n    \"TotalCost\": 4.1,\r\n    \"SourceID\": \"sample string 5\",\r\n    \"VATNumber\": \"sample string 6\"\r\n  },\r\n  \"Payment\": {\r\n    \"PaymentMethodName\": \"sample string 1\",\r\n    \"AmountPaid\": 2.1\r\n  }\r\n}"},"url":"https://{{Host}}/api/Basket/CancelEarnPoint","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Revert points\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>BasketPointInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Basket</td><td>Basket</td><td>The basket</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>Description</td><td>String</td><td>Description of the transaction</td><td>False</td></tr><tr><td>Payment</td><td>BasketPayment</td><td>The payment method used to earn point</td><td>False</td></tr><tr><td colspan=4><h4>Basket Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketItems</td><td>List&lt;BasketItem&gt;</td><td>The list of basket details</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>the ID of the site</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The Date of order</td><td>False</td></tr><tr><td>OrderID</td><td>Int32</td><td>The order ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the basket</td><td>False</td></tr><tr><td>TotalCost</td><td>Double</td><td>The total amount</td><td>False</td></tr><tr><td>TotalCostExclTax</td><td>Double</td><td>The total amount without VAT</td><td>False</td></tr><tr><td>VATNumber</td><td>String</td><td>VAT ID</td><td>False</td></tr><tr><td colspan=4><h4>BasketItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID).It should be empty when the order is linked to one customer</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>ModifierItems</td><td>List&lt;BasketModifiersItem&gt;</td><td>The list of modifiers</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item without VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td colspan=4><h4>BasketModifiersItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item witout VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td colspan=4><h4>BasketPayment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPaid</td><td>Double</td><td>Amount paid</td><td>False</td></tr><tr><td>PaymentMethodName</td><td>String</td><td>The Payment method name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>BasketPointOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>The cash balance of the customer</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>PointBalance</td><td>Double</td><td>The point balance of the customer</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CustomerID\": 1,\r\n  \"PointBalance\": 2.1,\r\n  \"CashBalance\": 3.1,\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"3773f38f-c530-4160-8ebf-8e884a0d00c2"},{"name":"ConfirmRedeemBenefit","id":"49dddb1a-0bc1-4d25-8ecb-d08965bf0767","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"RedemptionID\": \"sample string 1\",\r\n  \"CustomerID\": 1\r\n}"},"url":"https://{{Host}}/api/Basket/ConfirmRedeemBenefit","description":" <p>\n            confirm the redemtion of a voucher\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>BenefitRedemptionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32 (nullable)</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>RedemptionID</td><td>String</td><td>The ID of the redemption to confirm</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>BenefitRedemptionOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Basket","ConfirmRedeemBenefit"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"c4c236c1-ddb0-4554-8539-cafedcb1824a","name":"api/Basket/ConfirmRedeemBenefit Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"RedemptionID\": \"sample string 1\",\r\n  \"CustomerID\": 1\r\n}"},"url":"https://{{Host}}/api/Basket/ConfirmRedeemBenefit","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            confirm the redemtion of a voucher\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>BenefitRedemptionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32 (nullable)</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>RedemptionID</td><td>String</td><td>The ID of the redemption to confirm</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>BenefitRedemptionOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"49dddb1a-0bc1-4d25-8ecb-d08965bf0767"},{"name":"Earn","id":"a4064195-3a95-4630-a531-7db6d2fcea51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Description\": \"sample string 2\",\r\n  \"Basket\": {\r\n    \"OrderID\": 1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"OrderDate\": \"2026-03-25T07:30:07.5735376+00:00\",\r\n    \"BasketItems\": [\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"TotalCostExclTax\": 3.1,\r\n    \"TotalCost\": 4.1,\r\n    \"SourceID\": \"sample string 5\",\r\n    \"VATNumber\": \"sample string 6\"\r\n  },\r\n  \"Payment\": {\r\n    \"PaymentMethodName\": \"sample string 1\",\r\n    \"AmountPaid\": 2.1\r\n  }\r\n}"},"url":"https://{{Host}}/api/Basket/Earn","description":" <p>\n            Earn points\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>BasketPointInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Basket</td><td>Basket</td><td>The basket</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>Description</td><td>String</td><td>Description of the transaction</td><td>False</td></tr><tr><td>Payment</td><td>BasketPayment</td><td>The payment method used to earn point</td><td>False</td></tr><tr><td><h4>Basket Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketItems</td><td>List&lt;BasketItem&gt;</td><td>The list of basket details</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>the ID of the site</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The Date of order</td><td>False</td></tr><tr><td>OrderID</td><td>Int32</td><td>The order ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the basket</td><td>False</td></tr><tr><td>TotalCost</td><td>Double</td><td>The total amount</td><td>False</td></tr><tr><td>TotalCostExclTax</td><td>Double</td><td>The total amount without VAT</td><td>False</td></tr><tr><td>VATNumber</td><td>String</td><td>VAT ID</td><td>False</td></tr><tr><td><h4>BasketItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID).It should be empty when the order is linked to one customer</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>ModifierItems</td><td>List&lt;BasketModifiersItem&gt;</td><td>The list of modifiers</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item without VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td><h4>BasketModifiersItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item witout VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td><h4>BasketPayment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPaid</td><td>Double</td><td>Amount paid</td><td>False</td></tr><tr><td>PaymentMethodName</td><td>String</td><td>The Payment method name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>BasketPointOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>The cash balance of the customer</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>PointBalance</td><td>Double</td><td>The point balance of the customer</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Basket","Earn"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"f9d51dbc-4424-43a9-b367-63a84591bce8","name":"api/Basket/Earn Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Description\": \"sample string 2\",\r\n  \"Basket\": {\r\n    \"OrderID\": 1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"OrderDate\": \"2026-03-25T07:30:07.5735376+00:00\",\r\n    \"BasketItems\": [\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"TotalCostExclTax\": 3.1,\r\n    \"TotalCost\": 4.1,\r\n    \"SourceID\": \"sample string 5\",\r\n    \"VATNumber\": \"sample string 6\"\r\n  },\r\n  \"Payment\": {\r\n    \"PaymentMethodName\": \"sample string 1\",\r\n    \"AmountPaid\": 2.1\r\n  }\r\n}"},"url":"https://{{Host}}/api/Basket/Earn","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Earn points\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>BasketPointInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Basket</td><td>Basket</td><td>The basket</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>Description</td><td>String</td><td>Description of the transaction</td><td>False</td></tr><tr><td>Payment</td><td>BasketPayment</td><td>The payment method used to earn point</td><td>False</td></tr><tr><td colspan=4><h4>Basket Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketItems</td><td>List&lt;BasketItem&gt;</td><td>The list of basket details</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>the ID of the site</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The Date of order</td><td>False</td></tr><tr><td>OrderID</td><td>Int32</td><td>The order ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the basket</td><td>False</td></tr><tr><td>TotalCost</td><td>Double</td><td>The total amount</td><td>False</td></tr><tr><td>TotalCostExclTax</td><td>Double</td><td>The total amount without VAT</td><td>False</td></tr><tr><td>VATNumber</td><td>String</td><td>VAT ID</td><td>False</td></tr><tr><td colspan=4><h4>BasketItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID).It should be empty when the order is linked to one customer</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>ModifierItems</td><td>List&lt;BasketModifiersItem&gt;</td><td>The list of modifiers</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item without VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td colspan=4><h4>BasketModifiersItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item witout VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td colspan=4><h4>BasketPayment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPaid</td><td>Double</td><td>Amount paid</td><td>False</td></tr><tr><td>PaymentMethodName</td><td>String</td><td>The Payment method name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>BasketPointOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>The cash balance of the customer</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>PointBalance</td><td>Double</td><td>The point balance of the customer</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CustomerID\": 1,\r\n  \"PointBalance\": 2.1,\r\n  \"CashBalance\": 3.1,\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"a4064195-3a95-4630-a531-7db6d2fcea51"},{"name":"RedeemBenefit","id":"0a10c22d-0ca5-494e-83a5-8a9cb0d5fc07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Basket\": {\r\n    \"OrderID\": 1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"OrderDate\": \"2026-03-25T07:30:07.5735376+00:00\",\r\n    \"BasketItems\": [\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"TotalCostExclTax\": 3.1,\r\n    \"TotalCost\": 4.1,\r\n    \"SourceID\": \"sample string 5\",\r\n    \"VATNumber\": \"sample string 6\"\r\n  },\r\n  \"VoucherCode\": \"sample string 2\",\r\n  \"redemptionType\": 1\r\n}"},"url":"https://{{Host}}/api/Basket/RedeemBenefit","description":" <p>\n            This method allows to retrieve discount amount if the voucher is eligible to be redeemed in this basket.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>RedemptionValidationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Basket</td><td>Basket</td><td>The basket</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>redemptionType</td><td>RedemptionType (nullable)</td><td>The redemption type of the voucher</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>The voucher code to be redeemed</td><td>False</td></tr><tr><td><h4>Basket Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketItems</td><td>List&lt;BasketItem&gt;</td><td>The list of basket details</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>the ID of the site</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The Date of order</td><td>False</td></tr><tr><td>OrderID</td><td>Int32</td><td>The order ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the basket</td><td>False</td></tr><tr><td>TotalCost</td><td>Double</td><td>The total amount</td><td>False</td></tr><tr><td>TotalCostExclTax</td><td>Double</td><td>The total amount without VAT</td><td>False</td></tr><tr><td>VATNumber</td><td>String</td><td>VAT ID</td><td>False</td></tr><tr><td><h4>BasketItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID).It should be empty when the order is linked to one customer</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>ModifierItems</td><td>List&lt;BasketModifiersItem&gt;</td><td>The list of modifiers</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item without VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td><h4>BasketModifiersItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item witout VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>RedemptionValidationOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DiscountItem</td><td>BasketDiscountItem</td><td>The discount details</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td><h4>BasketDiscountItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The amount of the discount related to this item</td></tr><tr><td>RedemptionID</td><td>String</td><td>The unique identifier of the redemption</td></tr><tr><td>VoucherCode</td><td>String</td><td>The benefit code used for this discount</td></tr></table>","urlObject":{"protocol":"https","path":["api","Basket","RedeemBenefit"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"693b559d-d490-431f-9504-4af867cc841d","name":"api/Basket/RedeemBenefit Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"Basket\": {\r\n    \"OrderID\": 1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"OrderDate\": \"2026-03-25T07:30:07.5735376+00:00\",\r\n    \"BasketItems\": [\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"ItemID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"ProductCode\": \"sample string 3\",\r\n        \"Quantity\": 4.1,\r\n        \"UnitPrice\": 5.1,\r\n        \"DiscountAmount\": 6.1,\r\n        \"PointsDiscount\": 7.1,\r\n        \"TotalAmountExclTax\": 8.1,\r\n        \"TotalAmount\": 9.1,\r\n        \"CustomerID\": 10,\r\n        \"ModifierItems\": [\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          },\r\n          {\r\n            \"ItemID\": 1,\r\n            \"Name\": \"sample string 2\",\r\n            \"ProductCode\": \"sample string 3\",\r\n            \"Quantity\": 4.1,\r\n            \"UnitPrice\": 5.1,\r\n            \"TotalAmountExclTax\": 6.1,\r\n            \"TotalAmount\": 7.1,\r\n            \"DiscountAmount\": 8.1,\r\n            \"PointsDiscount\": 9.1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"TotalCostExclTax\": 3.1,\r\n    \"TotalCost\": 4.1,\r\n    \"SourceID\": \"sample string 5\",\r\n    \"VATNumber\": \"sample string 6\"\r\n  },\r\n  \"VoucherCode\": \"sample string 2\",\r\n  \"redemptionType\": 1\r\n}"},"url":"https://{{Host}}/api/Basket/RedeemBenefit","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            This method allows to retrieve discount amount if the voucher is eligible to be redeemed in this basket.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>RedemptionValidationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Basket</td><td>Basket</td><td>The basket</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>redemptionType</td><td>RedemptionType (nullable)</td><td>The redemption type of the voucher</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>The voucher code to be redeemed</td><td>False</td></tr><tr><td colspan=4><h4>Basket Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BasketItems</td><td>List&lt;BasketItem&gt;</td><td>The list of basket details</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>the ID of the site</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The Date of order</td><td>False</td></tr><tr><td>OrderID</td><td>Int32</td><td>The order ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the basket</td><td>False</td></tr><tr><td>TotalCost</td><td>Double</td><td>The total amount</td><td>False</td></tr><tr><td>TotalCostExclTax</td><td>Double</td><td>The total amount without VAT</td><td>False</td></tr><tr><td>VATNumber</td><td>String</td><td>VAT ID</td><td>False</td></tr><tr><td colspan=4><h4>BasketItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The ID of the customer (CtcID).It should be empty when the order is linked to one customer</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>ModifierItems</td><td>List&lt;BasketModifiersItem&gt;</td><td>The list of modifiers</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item without VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr><tr><td colspan=4><h4>BasketModifiersItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The discount amount</td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td>the Unique identifier of the basket item</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The name of the product</td><td>False</td></tr><tr><td>PointsDiscount</td><td>Double</td><td>The points to be burnt</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>The code of the product</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Quantity</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>The amount paid (will be used to calculate the number of points earnt)</td><td>False</td></tr><tr><td>TotalAmountExclTax</td><td>Double</td><td>The total amount of the basket item witout VAT</td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td>The unit price of the product</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>RedemptionValidationOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DiscountItem</td><td>BasketDiscountItem</td><td>The discount details</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td colspan=3><h4>BasketDiscountItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DiscountAmount</td><td>Double</td><td>The amount of the discount related to this item</td></tr><tr><td>RedemptionID</td><td>String</td><td>The unique identifier of the redemption</td></tr><tr><td>VoucherCode</td><td>String</td><td>The benefit code used for this discount</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"DiscountItem\": {\r\n    \"RedemptionID\": \"sample string 1\",\r\n    \"DiscountAmount\": 2.1,\r\n    \"VoucherCode\": \"sample string 3\"\r\n  },\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"0a10c22d-0ca5-494e-83a5-8a9cb0d5fc07"},{"name":"RevertBenefitRedemption","id":"81c05c16-8682-45ce-b357-c627e0b0f66f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"RedemptionID\": \"sample string 1\",\r\n  \"CustomerID\": 1\r\n}"},"url":"https://{{Host}}/api/Basket/RevertBenefitRedemption","description":" <p>\n            Cancel the redemption of a voucher\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>BenefitRedemptionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32 (nullable)</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>RedemptionID</td><td>String</td><td>The ID of the redemption to confirm</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>BenefitRedemptionOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Basket","RevertBenefitRedemption"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"a28d2d53-ee58-43db-9094-d3377f17cb34","name":"api/Basket/RevertBenefitRedemption Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"RedemptionID\": \"sample string 1\",\r\n  \"CustomerID\": 1\r\n}"},"url":"https://{{Host}}/api/Basket/RevertBenefitRedemption","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Cancel the redemption of a voucher\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>BenefitRedemptionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32 (nullable)</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>RedemptionID</td><td>String</td><td>The ID of the redemption to confirm</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>BenefitRedemptionOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"81c05c16-8682-45ce-b357-c627e0b0f66f"}],"id":"175e26bc-b502-40d7-abbe-8567bef5be20","description":"<p>Api Methods for Basket</p>\n","_postman_id":"175e26bc-b502-40d7-abbe-8567bef5be20"},{"name":"BIDWHouse","item":[{"name":"GetBookingsFact","id":"9d869517-68b7-45f2-9fd3-507aa376fde8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetBookingsFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from BookingsFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>BookingsFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingsFact</td><td>List&lt;BookingsFact&gt;</td><td>List of objects indicating a booking details.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td><h4>BookingsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingDateTime</td><td>DateTime (nullable)</td><td>The date of the Booking.</td></tr><tr><td>BookingID</td><td>String</td><td>The unique ID for the booking in Atreemo and used to join the various tables.</td></tr><tr><td>BookingsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>BrandName</td><td>String</td><td>The brand name (multibrand instances).</td></tr><tr><td>Covers</td><td>Int32</td><td>The booking's covers number.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>EstimatedValue</td><td>Decimal</td><td>The booking's estimated value .</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the booking.</td></tr><tr><td>SiteID</td><td>Int32</td><td>The location ID where the booking is made .</td></tr><tr><td>SiteName</td><td>String</td><td>The location name where the booking is made .</td></tr><tr><td>Source</td><td>String</td><td>The booking's source.</td></tr><tr><td>Status</td><td>String</td><td>The bookings' Atreemo status</td></tr><tr><td>StatusID</td><td>Int32</td><td>The bookings' Atreemo status ID</td></tr><tr><td>VistDateTime</td><td>DateTime (nullable)</td><td>The visit date of the booking.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetBookingsFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"be7575e4-9347-4f15-b3f7-a90a53d8a0df","name":"api/BIDWHouse/GetBookingsFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetBookingsFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetBookingsFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from BookingsFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>BookingsFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingsFact</td><td>List&lt;BookingsFact&gt;</td><td>List of objects indicating a booking details.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td colspan=3><h4>BookingsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingDateTime</td><td>DateTime (nullable)</td><td>The date of the Booking.</td></tr><tr><td>BookingID</td><td>String</td><td>The unique ID for the booking in Atreemo and used to join the various tables.</td></tr><tr><td>BookingsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>BrandName</td><td>String</td><td>The brand name (multibrand instances).</td></tr><tr><td>Covers</td><td>Int32</td><td>The booking's covers number.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>EstimatedValue</td><td>Decimal</td><td>The booking's estimated value .</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the booking.</td></tr><tr><td>SiteID</td><td>Int32</td><td>The location ID where the booking is made .</td></tr><tr><td>SiteName</td><td>String</td><td>The location name where the booking is made .</td></tr><tr><td>Source</td><td>String</td><td>The booking's source.</td></tr><tr><td>Status</td><td>String</td><td>The bookings' Atreemo status</td></tr><tr><td>StatusID</td><td>Int32</td><td>The bookings' Atreemo status ID</td></tr><tr><td>VistDateTime</td><td>DateTime (nullable)</td><td>The visit date of the booking.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"BookingsFact\": [\r\n    {\r\n      \"BookingsFactID\": 1,\r\n      \"BookingID\": \"sample string 2\",\r\n      \"CtcID\": 3,\r\n      \"BookingDateTime\": \"2026-03-25T07:30:07.5891689+00:00\",\r\n      \"VistDateTime\": \"2026-03-25T07:30:07.5891689+00:00\",\r\n      \"StatusID\": 4,\r\n      \"Status\": \"sample string 5\",\r\n      \"Source\": \"sample string 6\",\r\n      \"EstimatedValue\": 7.0,\r\n      \"SiteID\": 8,\r\n      \"SiteName\": \"sample string 9\",\r\n      \"Covers\": 10,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.5891689+00:00\",\r\n      \"BrandName\": \"sample string 12\"\r\n    },\r\n    {\r\n      \"BookingsFactID\": 1,\r\n      \"BookingID\": \"sample string 2\",\r\n      \"CtcID\": 3,\r\n      \"BookingDateTime\": \"2026-03-25T07:30:07.5891689+00:00\",\r\n      \"VistDateTime\": \"2026-03-25T07:30:07.5891689+00:00\",\r\n      \"StatusID\": 4,\r\n      \"Status\": \"sample string 5\",\r\n      \"Source\": \"sample string 6\",\r\n      \"EstimatedValue\": 7.0,\r\n      \"SiteID\": 8,\r\n      \"SiteName\": \"sample string 9\",\r\n      \"Covers\": 10,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.5891689+00:00\",\r\n      \"BrandName\": \"sample string 12\"\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"9d869517-68b7-45f2-9fd3-507aa376fde8"},{"name":"GetContactDetailsFact","id":"bc55d6fe-bc70-49cf-b1e2-b36e2c43ce85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetContactDetailsFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from ContactDetailsFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ContactDetailsFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactDetailsFacts</td><td>List&lt;ContactDetailsFact&gt;</td><td>List of objects indicating a contact details.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td><h4>ContactDetailsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BirthdateMonth</td><td>Int32</td><td>The month of birth for the contact.</td></tr><tr><td>BirthDateYear</td><td>Int32</td><td>The year of birth for the contact.</td></tr><tr><td>ContactDetailsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>CorporateName</td><td>String</td><td>The company name linked or assigned to the contact based on the configuration in Atreemo.</td></tr><tr><td>CreateDate</td><td>DateTime</td><td>The date the contact was created.  Where this was not known as part \n            of the initial data import the date of the import is used.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>Deleted</td><td>Boolean</td><td>True if the contact is deleted.</td></tr><tr><td>FavouriteSite</td><td>String</td><td>The contact favourite location name.</td></tr><tr><td>FavouriteSiteID</td><td>Int64</td><td>The date the contact was created.  Where this was not known as part of the initial data import the date of the import is used.</td></tr><tr><td>Frequency</td><td>Int32</td><td>Visit Frequency of the contact.</td></tr><tr><td>Gender</td><td>String</td><td>The contacts assigned gender.</td></tr><tr><td>IsStaff</td><td>Boolean</td><td>True if the contact is a staff.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the contact.</td></tr><tr><td>Monetary</td><td>Int32</td><td>The Monetary of the contact.</td></tr><tr><td>ParentCtcID</td><td>Int32</td><td>Parent CtcID if the contact is merged</td></tr><tr><td>PointBalance</td><td>Single</td><td>The contact point balance.</td></tr><tr><td>PostCodeSector</td><td>String</td><td>The postcode sector for the contact.</td></tr><tr><td>Recency</td><td>Int32</td><td>The Recency of the contact.</td></tr><tr><td>Segment</td><td>String</td><td>The Segment of the contact.</td></tr><tr><td>SourceID</td><td>String</td><td>The original source for the contact, for example wifi.</td></tr><tr><td>TiersName</td><td>String</td><td>The tier name linked or assigned to the contact based on the configuration in Atreemo.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetContactDetailsFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"92b84e5a-0a74-4775-b41c-3b714a332095","name":"api/BIDWHouse/GetContactDetailsFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetContactDetailsFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetContactDetailsFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from ContactDetailsFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactDetailsFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactDetailsFacts</td><td>List&lt;ContactDetailsFact&gt;</td><td>List of objects indicating a contact details.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td colspan=3><h4>ContactDetailsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BirthdateMonth</td><td>Int32</td><td>The month of birth for the contact.</td></tr><tr><td>BirthDateYear</td><td>Int32</td><td>The year of birth for the contact.</td></tr><tr><td>ContactDetailsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>CorporateName</td><td>String</td><td>The company name linked or assigned to the contact based on the configuration in Atreemo.</td></tr><tr><td>CreateDate</td><td>DateTime</td><td>The date the contact was created.  Where this was not known as part \n            of the initial data import the date of the import is used.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>Deleted</td><td>Boolean</td><td>True if the contact is deleted.</td></tr><tr><td>FavouriteSite</td><td>String</td><td>The contact favourite location name.</td></tr><tr><td>FavouriteSiteID</td><td>Int64</td><td>The date the contact was created.  Where this was not known as part of the initial data import the date of the import is used.</td></tr><tr><td>Frequency</td><td>Int32</td><td>Visit Frequency of the contact.</td></tr><tr><td>Gender</td><td>String</td><td>The contacts assigned gender.</td></tr><tr><td>IsStaff</td><td>Boolean</td><td>True if the contact is a staff.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the contact.</td></tr><tr><td>Monetary</td><td>Int32</td><td>The Monetary of the contact.</td></tr><tr><td>ParentCtcID</td><td>Int32</td><td>Parent CtcID if the contact is merged</td></tr><tr><td>PointBalance</td><td>Single</td><td>The contact point balance.</td></tr><tr><td>PostCodeSector</td><td>String</td><td>The postcode sector for the contact.</td></tr><tr><td>Recency</td><td>Int32</td><td>The Recency of the contact.</td></tr><tr><td>Segment</td><td>String</td><td>The Segment of the contact.</td></tr><tr><td>SourceID</td><td>String</td><td>The original source for the contact, for example wifi.</td></tr><tr><td>TiersName</td><td>String</td><td>The tier name linked or assigned to the contact based on the configuration in Atreemo.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"ContactDetailsFacts\": [\r\n    {\r\n      \"ContactDetailsFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"Gender\": \"sample string 3\",\r\n      \"BirthDateYear\": 4,\r\n      \"BirthdateMonth\": 5,\r\n      \"PostCodeSector\": \"sample string 6\",\r\n      \"FavouriteSiteID\": 7,\r\n      \"FavouriteSite\": \"sample string 8\",\r\n      \"CreateDate\": \"2026-03-25T07:30:07.6204061+00:00\",\r\n      \"SourceID\": \"sample string 10\",\r\n      \"PointBalance\": 11.1,\r\n      \"CorporateName\": \"sample string 12\",\r\n      \"TiersName\": \"sample string 13\",\r\n      \"Deleted\": true,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.6204061+00:00\",\r\n      \"IsStaff\": true,\r\n      \"ParentCtcID\": 17,\r\n      \"Recency\": 18,\r\n      \"Frequency\": 19,\r\n      \"Monetary\": 20,\r\n      \"Segment\": \"sample string 21\"\r\n    },\r\n    {\r\n      \"ContactDetailsFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"Gender\": \"sample string 3\",\r\n      \"BirthDateYear\": 4,\r\n      \"BirthdateMonth\": 5,\r\n      \"PostCodeSector\": \"sample string 6\",\r\n      \"FavouriteSiteID\": 7,\r\n      \"FavouriteSite\": \"sample string 8\",\r\n      \"CreateDate\": \"2026-03-25T07:30:07.6204061+00:00\",\r\n      \"SourceID\": \"sample string 10\",\r\n      \"PointBalance\": 11.1,\r\n      \"CorporateName\": \"sample string 12\",\r\n      \"TiersName\": \"sample string 13\",\r\n      \"Deleted\": true,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.6204061+00:00\",\r\n      \"IsStaff\": true,\r\n      \"ParentCtcID\": 17,\r\n      \"Recency\": 18,\r\n      \"Frequency\": 19,\r\n      \"Monetary\": 20,\r\n      \"Segment\": \"sample string 21\"\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"bc55d6fe-bc70-49cf-b1e2-b36e2c43ce85"},{"name":"GetContactPreferencesFact","id":"23a79078-b89b-4df7-bbf4-cd92c7a0ef95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetContactPreferencesFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from ContactPreferencesFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ContactPreferencesFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactPreferencesFacts</td><td>List&lt;ContactPreferencesFact&gt;</td><td>List of objects indicating a contacts opt in status and preferences.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td><h4>ContactPreferencesFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandName</td><td>String</td><td>The brand name (multibrand instances)</td></tr><tr><td>ContactPreferencesFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>EmailOptin</td><td>Boolean</td><td>True if the contact is opted in for email.</td></tr><tr><td>MailOptin</td><td>Boolean</td><td>True if the contact is opted in for direct mail.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date.</td></tr><tr><td>PhoneOptin</td><td>Boolean</td><td>True if the contacts is opted in for phone.</td></tr><tr><td>Preferences</td><td>String</td><td>Preferences the contact has selected will be shown with a semi column\n            as a separator.</td></tr><tr><td>PushOptin</td><td>Boolean</td><td>True if the contact is opted in for push notification.</td></tr><tr><td>SMSOptin</td><td>Boolean</td><td>True if the contact is opted in for SMS.</td></tr><tr><td>WebPushOptin</td><td>Boolean</td><td>True if the contacts is opted in for web push notification.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetContactPreferencesFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"0a581554-bd29-4827-b1f6-98b5bc214bdf","name":"api/BIDWHouse/GetContactPreferencesFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetContactPreferencesFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetContactPreferencesFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from ContactPreferencesFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactPreferencesFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactPreferencesFacts</td><td>List&lt;ContactPreferencesFact&gt;</td><td>List of objects indicating a contacts opt in status and preferences.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td colspan=3><h4>ContactPreferencesFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandName</td><td>String</td><td>The brand name (multibrand instances)</td></tr><tr><td>ContactPreferencesFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>EmailOptin</td><td>Boolean</td><td>True if the contact is opted in for email.</td></tr><tr><td>MailOptin</td><td>Boolean</td><td>True if the contact is opted in for direct mail.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date.</td></tr><tr><td>PhoneOptin</td><td>Boolean</td><td>True if the contacts is opted in for phone.</td></tr><tr><td>Preferences</td><td>String</td><td>Preferences the contact has selected will be shown with a semi column\n            as a separator.</td></tr><tr><td>PushOptin</td><td>Boolean</td><td>True if the contact is opted in for push notification.</td></tr><tr><td>SMSOptin</td><td>Boolean</td><td>True if the contact is opted in for SMS.</td></tr><tr><td>WebPushOptin</td><td>Boolean</td><td>True if the contacts is opted in for web push notification.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"ContactPreferencesFacts\": [\r\n    {\r\n      \"ContactPreferencesFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"BrandName\": \"sample string 3\",\r\n      \"Preferences\": \"sample string 4\",\r\n      \"WebPushOptin\": true,\r\n      \"PushOptin\": true,\r\n      \"EmailOptin\": true,\r\n      \"MailOptin\": true,\r\n      \"PhoneOptin\": true,\r\n      \"SMSOptin\": true,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.6360383+00:00\"\r\n    },\r\n    {\r\n      \"ContactPreferencesFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"BrandName\": \"sample string 3\",\r\n      \"Preferences\": \"sample string 4\",\r\n      \"WebPushOptin\": true,\r\n      \"PushOptin\": true,\r\n      \"EmailOptin\": true,\r\n      \"MailOptin\": true,\r\n      \"PhoneOptin\": true,\r\n      \"SMSOptin\": true,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.6360383+00:00\"\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"23a79078-b89b-4df7-bbf4-cd92c7a0ef95"},{"name":"GetContactsAvailabilityFact","id":"9bc76dbc-04d9-48c2-af2c-fe87525fe60a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetContactsAvailabilityFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from FactContactsAvailability table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ContactAvailabilityFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactAvailabilityFacts</td><td>List&lt;ContactAvailabilityFact&gt;</td><td>List of objects indicating a contact availability.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td><h4>ContactAvailabilityFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AppAvailable</td><td>Boolean</td><td>True if the contact can receive app notifications.</td></tr><tr><td>ContactAvailabilityFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>EmailAvailable</td><td>Boolean</td><td>True if the contact is available by email.</td></tr><tr><td>MailAvailable</td><td>Boolean</td><td>True if the contact can receive mails.</td></tr><tr><td>MobileAvailable</td><td>Boolean</td><td>True if the contact is available by  mobile.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the contact.</td></tr><tr><td>PhoneAvailable</td><td>Boolean</td><td>True if the contact is available by phone.</td></tr><tr><td>WebPushAvailable</td><td>Boolean</td><td>True if the contact can receive web push notifications.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetContactsAvailabilityFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"23084137-6a41-4033-8f44-4736225d9c80","name":"api/BIDWHouse/GetContactsAvailabilityFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetContactsAvailabilityFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetContactsAvailabilityFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from FactContactsAvailability table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactAvailabilityFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactAvailabilityFacts</td><td>List&lt;ContactAvailabilityFact&gt;</td><td>List of objects indicating a contact availability.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td colspan=3><h4>ContactAvailabilityFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AppAvailable</td><td>Boolean</td><td>True if the contact can receive app notifications.</td></tr><tr><td>ContactAvailabilityFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>EmailAvailable</td><td>Boolean</td><td>True if the contact is available by email.</td></tr><tr><td>MailAvailable</td><td>Boolean</td><td>True if the contact can receive mails.</td></tr><tr><td>MobileAvailable</td><td>Boolean</td><td>True if the contact is available by  mobile.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the contact.</td></tr><tr><td>PhoneAvailable</td><td>Boolean</td><td>True if the contact is available by phone.</td></tr><tr><td>WebPushAvailable</td><td>Boolean</td><td>True if the contact can receive web push notifications.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"ContactAvailabilityFacts\": [\r\n    {\r\n      \"ContactAvailabilityFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"EmailAvailable\": true,\r\n      \"MobileAvailable\": true,\r\n      \"PhoneAvailable\": true,\r\n      \"WebPushAvailable\": true,\r\n      \"AppAvailable\": true,\r\n      \"MailAvailable\": true,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.6522909+00:00\"\r\n    },\r\n    {\r\n      \"ContactAvailabilityFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"EmailAvailable\": true,\r\n      \"MobileAvailable\": true,\r\n      \"PhoneAvailable\": true,\r\n      \"WebPushAvailable\": true,\r\n      \"AppAvailable\": true,\r\n      \"MailAvailable\": true,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.6522909+00:00\"\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"9bc76dbc-04d9-48c2-af2c-fe87525fe60a"},{"name":"GetContactsMemberNumbersFact","id":"87356e7d-a9b8-468f-b98f-deb3a9e865b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetContactsMemberNumbersFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from ContactsMemberNumbersFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ContactsMemberNumbersFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactsMemberNumbersFacts</td><td>List&lt;ContactsMemberNumbersFact&gt;</td><td>The list of objects associated  to Contacts Member Numbers.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The list of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td><h4>ContactsMemberNumbersFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The unique contact ID .</td></tr><tr><td>FactContactsMemberNumberSK</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>HashedMemberNumber</td><td>String</td><td>The unique Hashed Member Number of the contact.</td></tr><tr><td>MemberNumber</td><td>String</td><td>The unique Member Number of the contact.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date applied to this contact.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetContactsMemberNumbersFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"67cd0716-3916-4d62-bcf9-eba23803337b","name":"api/BIDWHouse/GetContactsMemberNumbersFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetContactsMemberNumbersFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetContactsMemberNumbersFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from ContactsMemberNumbersFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactsMemberNumbersFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactsMemberNumbersFacts</td><td>List&lt;ContactsMemberNumbersFact&gt;</td><td>The list of objects associated  to Contacts Member Numbers.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The list of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td colspan=3><h4>ContactsMemberNumbersFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The unique contact ID .</td></tr><tr><td>FactContactsMemberNumberSK</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>HashedMemberNumber</td><td>String</td><td>The unique Hashed Member Number of the contact.</td></tr><tr><td>MemberNumber</td><td>String</td><td>The unique Member Number of the contact.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date applied to this contact.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"ContactsMemberNumbersFacts\": [\r\n    {\r\n      \"FactContactsMemberNumberSK\": 1,\r\n      \"CtcID\": 2,\r\n      \"MemberNumber\": \"sample string 3\",\r\n      \"HashedMemberNumber\": \"sample string 4\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.6679836+00:00\"\r\n    },\r\n    {\r\n      \"FactContactsMemberNumberSK\": 1,\r\n      \"CtcID\": 2,\r\n      \"MemberNumber\": \"sample string 3\",\r\n      \"HashedMemberNumber\": \"sample string 4\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.6679836+00:00\"\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"87356e7d-a9b8-468f-b98f-deb3a9e865b6"},{"name":"GetContactSourcesFact","id":"fc564eb5-3176-42bb-a6e6-c3327af8051d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetContactSourcesFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from ContactsSourcesFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ContactsSourcesFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactsSourcesFacts</td><td>List&lt;ContactsSourcesFact&gt;</td><td>List of objects indicating a contact source details.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status .</td></tr><tr><td><h4>ContactsSourcesFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandName</td><td>String</td><td>The brand name (multibrand instances)</td></tr><tr><td>ContactsSourcesFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables .</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the contact.</td></tr><tr><td>OriginID</td><td>String</td><td>The origin of the source.</td></tr><tr><td>SourceID</td><td>String</td><td>The source name.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetContactSourcesFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"97398ec6-308d-4999-8b16-f2967f1b7c23","name":"api/BIDWHouse/GetContactSourcesFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetContactSourcesFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetContactSourcesFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from ContactsSourcesFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactsSourcesFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactsSourcesFacts</td><td>List&lt;ContactsSourcesFact&gt;</td><td>List of objects indicating a contact source details.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status .</td></tr><tr><td colspan=3><h4>ContactsSourcesFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandName</td><td>String</td><td>The brand name (multibrand instances)</td></tr><tr><td>ContactsSourcesFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables .</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the contact.</td></tr><tr><td>OriginID</td><td>String</td><td>The origin of the source.</td></tr><tr><td>SourceID</td><td>String</td><td>The source name.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"ContactsSourcesFacts\": [\r\n    {\r\n      \"ContactsSourcesFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"SourceID\": \"sample string 3\",\r\n      \"OriginID\": \"sample string 4\",\r\n      \"BrandName\": \"sample string 5\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.6836172+00:00\"\r\n    },\r\n    {\r\n      \"ContactsSourcesFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"SourceID\": \"sample string 3\",\r\n      \"OriginID\": \"sample string 4\",\r\n      \"BrandName\": \"sample string 5\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.6836172+00:00\"\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"fc564eb5-3176-42bb-a6e6-c3327af8051d"},{"name":"GetEmailTrendFact","id":"8624a4f0-13dc-4fb1-91b7-9b6c31b05d2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetEmailTrendFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from EmailTrendFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>EmailTrendOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>EmailTrendFacts</td><td>List&lt;EmailTrendFact&gt;</td><td>The list of objects indicating emails results for a contact.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td><h4>EmailTrendFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingsMadeIn14Days</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td>The brand name (multibrand instances).</td></tr><tr><td>Category</td><td>String</td><td>The campaign category name.</td></tr><tr><td>CategoryID</td><td>Int32</td><td>The campaign category unique ID.</td></tr><tr><td>CostPerItem</td><td>Single</td><td>The unit cost per item (if paid for per item).</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo \n            and used to join the various tables.</td></tr><tr><td>DayOfWeekEmailOpened</td><td>Int32</td><td>The day of the week the email was opened.</td></tr><tr><td>DirectSpentWithoutOverlap</td><td>Single</td><td>The amount of direct spent without overlap</td></tr><tr><td>DomainName</td><td>String</td><td>The domain name linked to the customer.</td></tr><tr><td>EcastItemID</td><td>Int32</td><td>The Ecast ID</td></tr><tr><td>EmailTrendFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>Error</td><td>Int16</td><td>The error if the email could not be delivered.</td></tr><tr><td>FirstTrial</td><td>DateTime (nullable)</td><td>The first date/time the email was sent.</td></tr><tr><td>IndirectSpentWithoutOverlap</td><td>Single</td><td>The amount of indirect spent without overlap</td></tr><tr><td>IsComplaint</td><td>Boolean</td><td>If a complaint was received from this email via the email service provider the response will be True.</td></tr><tr><td>IsFollowUp</td><td>Boolean</td><td>If the email was an automated follow up the response will be True.</td></tr><tr><td>LastTrial</td><td>DateTime (nullable)</td><td>The last date / time the email tried to send to the contact.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date.</td></tr><tr><td>NbClicks</td><td>Int32</td><td>The total number of clicks the contact made for the email.</td></tr><tr><td>NbDeliv</td><td>Int32</td><td>The number of emails delivered</td></tr><tr><td>NbDispatched</td><td>Int32</td><td>The number of emails dispatched</td></tr><tr><td>NbSent</td><td>Int32</td><td>The number of emails sent</td></tr><tr><td>NbTrial</td><td>Int16</td><td>The number of times Atreemo tried to send the email.</td></tr><tr><td>NbViews</td><td>Int32</td><td>The total number of views made by the contact for the email.</td></tr><tr><td>OpCode</td><td>Int32</td><td>The unique ID for the email campaign.</td></tr><tr><td>OpenDate</td><td>DateTime (nullable)</td><td>The date / time the email was opened.</td></tr><tr><td>PrjMkgTitle</td><td>String</td><td>The internal name given to the campaign in Atreemo.</td></tr><tr><td>SendDate</td><td>DateTime</td><td>The date / time the email was scheduled to send.</td></tr><tr><td>SenderProfile</td><td>String</td><td>The Atreemo sender profile used for the email.</td></tr><tr><td>SenderProfileID</td><td>Int32</td><td>The Atreemo sender profile ID used for the email.</td></tr><tr><td>Status</td><td>Int16</td><td>The send status.Possible values : = 5\n            Sent if value is greater than 5 the status is error.</td></tr><tr><td>Subject</td><td>String</td><td>The Email Subject.</td></tr><tr><td>SubmittedBy</td><td>String</td><td>The Atreemo user who submitted the campaign.</td></tr><tr><td>TimeOfDayEmailOpened</td><td>Int32</td><td>The time of day the email is opened.</td></tr><tr><td>UniqueClicks</td><td>Int32</td><td>The number of clicks</td></tr><tr><td>UniqueViews</td><td>Int32</td><td>The number of views</td></tr><tr><td>Unsubscribe</td><td>Int32</td><td>If response is 1 the contact unsubscribed.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetEmailTrendFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"6ec1029c-1c5f-45c8-9cc0-25f20712dc4a","name":"api/BIDWHouse/GetEmailTrendFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetEmailTrendFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetEmailTrendFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from EmailTrendFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>EmailTrendOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>EmailTrendFacts</td><td>List&lt;EmailTrendFact&gt;</td><td>The list of objects indicating emails results for a contact.</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td colspan=3><h4>EmailTrendFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingsMadeIn14Days</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td>The brand name (multibrand instances).</td></tr><tr><td>Category</td><td>String</td><td>The campaign category name.</td></tr><tr><td>CategoryID</td><td>Int32</td><td>The campaign category unique ID.</td></tr><tr><td>CostPerItem</td><td>Single</td><td>The unit cost per item (if paid for per item).</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo \n            and used to join the various tables.</td></tr><tr><td>DayOfWeekEmailOpened</td><td>Int32</td><td>The day of the week the email was opened.</td></tr><tr><td>DirectSpentWithoutOverlap</td><td>Single</td><td>The amount of direct spent without overlap</td></tr><tr><td>DomainName</td><td>String</td><td>The domain name linked to the customer.</td></tr><tr><td>EcastItemID</td><td>Int32</td><td>The Ecast ID</td></tr><tr><td>EmailTrendFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>Error</td><td>Int16</td><td>The error if the email could not be delivered.</td></tr><tr><td>FirstTrial</td><td>DateTime (nullable)</td><td>The first date/time the email was sent.</td></tr><tr><td>IndirectSpentWithoutOverlap</td><td>Single</td><td>The amount of indirect spent without overlap</td></tr><tr><td>IsComplaint</td><td>Boolean</td><td>If a complaint was received from this email via the email service provider the response will be True.</td></tr><tr><td>IsFollowUp</td><td>Boolean</td><td>If the email was an automated follow up the response will be True.</td></tr><tr><td>LastTrial</td><td>DateTime (nullable)</td><td>The last date / time the email tried to send to the contact.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date.</td></tr><tr><td>NbClicks</td><td>Int32</td><td>The total number of clicks the contact made for the email.</td></tr><tr><td>NbDeliv</td><td>Int32</td><td>The number of emails delivered</td></tr><tr><td>NbDispatched</td><td>Int32</td><td>The number of emails dispatched</td></tr><tr><td>NbSent</td><td>Int32</td><td>The number of emails sent</td></tr><tr><td>NbTrial</td><td>Int16</td><td>The number of times Atreemo tried to send the email.</td></tr><tr><td>NbViews</td><td>Int32</td><td>The total number of views made by the contact for the email.</td></tr><tr><td>OpCode</td><td>Int32</td><td>The unique ID for the email campaign.</td></tr><tr><td>OpenDate</td><td>DateTime (nullable)</td><td>The date / time the email was opened.</td></tr><tr><td>PrjMkgTitle</td><td>String</td><td>The internal name given to the campaign in Atreemo.</td></tr><tr><td>SendDate</td><td>DateTime</td><td>The date / time the email was scheduled to send.</td></tr><tr><td>SenderProfile</td><td>String</td><td>The Atreemo sender profile used for the email.</td></tr><tr><td>SenderProfileID</td><td>Int32</td><td>The Atreemo sender profile ID used for the email.</td></tr><tr><td>Status</td><td>Int16</td><td>The send status.Possible values : = 5\n            Sent if value is greater than 5 the status is error.</td></tr><tr><td>Subject</td><td>String</td><td>The Email Subject.</td></tr><tr><td>SubmittedBy</td><td>String</td><td>The Atreemo user who submitted the campaign.</td></tr><tr><td>TimeOfDayEmailOpened</td><td>Int32</td><td>The time of day the email is opened.</td></tr><tr><td>UniqueClicks</td><td>Int32</td><td>The number of clicks</td></tr><tr><td>UniqueViews</td><td>Int32</td><td>The number of views</td></tr><tr><td>Unsubscribe</td><td>Int32</td><td>If response is 1 the contact unsubscribed.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"EmailTrendFacts\": [\r\n    {\r\n      \"EmailTrendFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"OpCode\": 3,\r\n      \"PrjMkgTitle\": \"sample string 4\",\r\n      \"Subject\": \"sample string 5\",\r\n      \"CategoryID\": 6,\r\n      \"Category\": \"sample string 7\",\r\n      \"SendDate\": \"2026-03-25T07:30:07.6836172+00:00\",\r\n      \"OpenDate\": \"2026-03-25T07:30:07.6836172+00:00\",\r\n      \"TimeOfDayEmailOpened\": 9,\r\n      \"DayOfWeekEmailOpened\": 10,\r\n      \"SubmittedBy\": \"sample string 11\",\r\n      \"SenderProfileID\": 12,\r\n      \"SenderProfile\": \"sample string 13\",\r\n      \"BrandName\": \"sample string 14\",\r\n      \"DomainName\": \"sample string 15\",\r\n      \"IsFollowUp\": true,\r\n      \"IsComplaint\": true,\r\n      \"Status\": 18,\r\n      \"Error\": 19,\r\n      \"FirstTrial\": \"2026-03-25T07:30:07.6836172+00:00\",\r\n      \"LastTrial\": \"2026-03-25T07:30:07.6836172+00:00\",\r\n      \"NbTrial\": 20,\r\n      \"NbClicks\": 21,\r\n      \"NbViews\": 22,\r\n      \"Unsubscribe\": 23,\r\n      \"CostPerItem\": 24.1,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.6992273+00:00\",\r\n      \"DirectSpentWithoutOverlap\": 26.1,\r\n      \"IndirectSpentWithoutOverlap\": 27.1,\r\n      \"NbSent\": 28,\r\n      \"NbDeliv\": 29,\r\n      \"NbDispatched\": 30,\r\n      \"UniqueViews\": 31,\r\n      \"UniqueClicks\": 32,\r\n      \"EcastItemID\": 33,\r\n      \"BookingsMadeIn14Days\": 34\r\n    },\r\n    {\r\n      \"EmailTrendFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"OpCode\": 3,\r\n      \"PrjMkgTitle\": \"sample string 4\",\r\n      \"Subject\": \"sample string 5\",\r\n      \"CategoryID\": 6,\r\n      \"Category\": \"sample string 7\",\r\n      \"SendDate\": \"2026-03-25T07:30:07.6836172+00:00\",\r\n      \"OpenDate\": \"2026-03-25T07:30:07.6836172+00:00\",\r\n      \"TimeOfDayEmailOpened\": 9,\r\n      \"DayOfWeekEmailOpened\": 10,\r\n      \"SubmittedBy\": \"sample string 11\",\r\n      \"SenderProfileID\": 12,\r\n      \"SenderProfile\": \"sample string 13\",\r\n      \"BrandName\": \"sample string 14\",\r\n      \"DomainName\": \"sample string 15\",\r\n      \"IsFollowUp\": true,\r\n      \"IsComplaint\": true,\r\n      \"Status\": 18,\r\n      \"Error\": 19,\r\n      \"FirstTrial\": \"2026-03-25T07:30:07.6836172+00:00\",\r\n      \"LastTrial\": \"2026-03-25T07:30:07.6836172+00:00\",\r\n      \"NbTrial\": 20,\r\n      \"NbClicks\": 21,\r\n      \"NbViews\": 22,\r\n      \"Unsubscribe\": 23,\r\n      \"CostPerItem\": 24.1,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.6992273+00:00\",\r\n      \"DirectSpentWithoutOverlap\": 26.1,\r\n      \"IndirectSpentWithoutOverlap\": 27.1,\r\n      \"NbSent\": 28,\r\n      \"NbDeliv\": 29,\r\n      \"NbDispatched\": 30,\r\n      \"UniqueViews\": 31,\r\n      \"UniqueClicks\": 32,\r\n      \"EcastItemID\": 33,\r\n      \"BookingsMadeIn14Days\": 34\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"8624a4f0-13dc-4fb1-91b7-9b6c31b05d2d"},{"name":"GetHotelBookingsFact","id":"cbb4bb5f-b0f7-4932-866b-5f3735898ae0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetHotelBookingsFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from FactHotelBooking table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>HotelBookingsFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>HotelBookingsFact</td><td>List&lt;HotelBookingsFact&gt;</td><td>List of objects indicating a booking details.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td><h4>HotelBookingsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>HotelBookingBookerCtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>HotelBookingCheckInDate</td><td>DateTime (nullable)</td><td>The Start date of the visit.</td></tr><tr><td>HotelBookingCheckOutDate</td><td>DateTime (nullable)</td><td>The end visit date of the visit.</td></tr><tr><td>HotelBookingDateTime</td><td>DateTime (nullable)</td><td>The date of the Booking.</td></tr><tr><td>HotelBookingExternalID</td><td>String</td><td>The external unique ID for the booking.</td></tr><tr><td>HotelBookingID</td><td>Int32</td><td>The unique ID for the booking in Atreemo and used to join the various tables.</td></tr><tr><td>HotelBookingIsOTA</td><td>Boolean</td><td>Is OTA</td></tr><tr><td>HotelBookingMarketSegment</td><td>String</td><td>The market segment .</td></tr><tr><td>HotelBookingModifyURL</td><td>String</td><td>The URL to modify the booking .</td></tr><tr><td>HotelBookingNightsNumber</td><td>Int32</td><td>The number of nights</td></tr><tr><td>HotelBookingsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>HotelBookingSiteID</td><td>Int32</td><td>The location ID where the booking is made .</td></tr><tr><td>HotelBookingSiteName</td><td>String</td><td>The location name where the booking is made .</td></tr><tr><td>HotelBookingSpend</td><td>Decimal</td><td>The booking's spend value .</td></tr><tr><td>HotelBookingStatus</td><td>String</td><td>The bookings' Atreemo status</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the booking.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetHotelBookingsFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"0afe2cb3-3a12-4686-8c6e-c878fbe6135d","name":"api/BIDWHouse/GetHotelBookingsFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetHotelBookingsFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetHotelBookingsFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from FactHotelBooking table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>HotelBookingsFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>HotelBookingsFact</td><td>List&lt;HotelBookingsFact&gt;</td><td>List of objects indicating a booking details.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td colspan=3><h4>HotelBookingsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>HotelBookingBookerCtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>HotelBookingCheckInDate</td><td>DateTime (nullable)</td><td>The Start date of the visit.</td></tr><tr><td>HotelBookingCheckOutDate</td><td>DateTime (nullable)</td><td>The end visit date of the visit.</td></tr><tr><td>HotelBookingDateTime</td><td>DateTime (nullable)</td><td>The date of the Booking.</td></tr><tr><td>HotelBookingExternalID</td><td>String</td><td>The external unique ID for the booking.</td></tr><tr><td>HotelBookingID</td><td>Int32</td><td>The unique ID for the booking in Atreemo and used to join the various tables.</td></tr><tr><td>HotelBookingIsOTA</td><td>Boolean</td><td>Is OTA</td></tr><tr><td>HotelBookingMarketSegment</td><td>String</td><td>The market segment .</td></tr><tr><td>HotelBookingModifyURL</td><td>String</td><td>The URL to modify the booking .</td></tr><tr><td>HotelBookingNightsNumber</td><td>Int32</td><td>The number of nights</td></tr><tr><td>HotelBookingsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>HotelBookingSiteID</td><td>Int32</td><td>The location ID where the booking is made .</td></tr><tr><td>HotelBookingSiteName</td><td>String</td><td>The location name where the booking is made .</td></tr><tr><td>HotelBookingSpend</td><td>Decimal</td><td>The booking's spend value .</td></tr><tr><td>HotelBookingStatus</td><td>String</td><td>The bookings' Atreemo status</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the booking.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"HotelBookingsFact\": [\r\n    {\r\n      \"HotelBookingsFactID\": 1,\r\n      \"HotelBookingID\": 2,\r\n      \"HotelBookingBookerCtcID\": 3,\r\n      \"HotelBookingExternalID\": \"sample string 4\",\r\n      \"HotelBookingDateTime\": \"2026-03-25T07:30:07.7148752+00:00\",\r\n      \"HotelBookingCheckInDate\": \"2026-03-25T07:30:07.7148752+00:00\",\r\n      \"HotelBookingCheckOutDate\": \"2026-03-25T07:30:07.7148752+00:00\",\r\n      \"HotelBookingStatus\": \"sample string 5\",\r\n      \"HotelBookingIsOTA\": true,\r\n      \"HotelBookingSpend\": 7.0,\r\n      \"HotelBookingSiteID\": 8,\r\n      \"HotelBookingSiteName\": \"sample string 9\",\r\n      \"HotelBookingNightsNumber\": 10,\r\n      \"HotelBookingMarketSegment\": \"sample string 11\",\r\n      \"HotelBookingModifyURL\": \"sample string 12\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.7148752+00:00\"\r\n    },\r\n    {\r\n      \"HotelBookingsFactID\": 1,\r\n      \"HotelBookingID\": 2,\r\n      \"HotelBookingBookerCtcID\": 3,\r\n      \"HotelBookingExternalID\": \"sample string 4\",\r\n      \"HotelBookingDateTime\": \"2026-03-25T07:30:07.7148752+00:00\",\r\n      \"HotelBookingCheckInDate\": \"2026-03-25T07:30:07.7148752+00:00\",\r\n      \"HotelBookingCheckOutDate\": \"2026-03-25T07:30:07.7148752+00:00\",\r\n      \"HotelBookingStatus\": \"sample string 5\",\r\n      \"HotelBookingIsOTA\": true,\r\n      \"HotelBookingSpend\": 7.0,\r\n      \"HotelBookingSiteID\": 8,\r\n      \"HotelBookingSiteName\": \"sample string 9\",\r\n      \"HotelBookingNightsNumber\": 10,\r\n      \"HotelBookingMarketSegment\": \"sample string 11\",\r\n      \"HotelBookingModifyURL\": \"sample string 12\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.7148752+00:00\"\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"cbb4bb5f-b0f7-4932-866b-5f3735898ae0"},{"name":"GetLoyaltyPointsFact","id":"a9eb5e25-2ba6-4320-b1f0-dd884251ce00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetLoyaltyPointsFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from LoyaltyPointsFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>LoyaltyPointsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>LoyaltyPointsFacts</td><td>List&lt;LoyaltyPointsFact&gt;</td><td>The List of object for Loyalty.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td><h4>LoyaltyPointsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActionDate</td><td>DateTime (nullable)</td><td>The date when this record was added/updated.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>LoyaltyPointsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date.</td></tr><tr><td>OrderUniqueID</td><td>Int64</td><td>Atreemo Order Unique ID. Can be joined with transaction\n            fact table to get the transaction details.</td></tr><tr><td>Points</td><td>Single</td><td>The number of Points/Stamps the customer earned or burnt based \n            on the ActionDate and Location.</td></tr><tr><td>SiteID</td><td>Int32</td><td>The location ID the customer used their Loyalty Account.</td></tr><tr><td>SiteName</td><td>String</td><td>The location name the customer used their Loyalty Account.</td></tr><tr><td>Source</td><td>String</td><td>The Source of the ActionDate.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetLoyaltyPointsFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"c062eeb7-1de8-4035-97ee-7cd3ac87f0d6","name":"api/BIDWHouse/GetLoyaltyPointsFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetLoyaltyPointsFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetLoyaltyPointsFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from LoyaltyPointsFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>LoyaltyPointsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>LoyaltyPointsFacts</td><td>List&lt;LoyaltyPointsFact&gt;</td><td>The List of object for Loyalty.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td colspan=3><h4>LoyaltyPointsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActionDate</td><td>DateTime (nullable)</td><td>The date when this record was added/updated.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>LoyaltyPointsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date.</td></tr><tr><td>OrderUniqueID</td><td>Int64</td><td>Atreemo Order Unique ID. Can be joined with transaction\n            fact table to get the transaction details.</td></tr><tr><td>Points</td><td>Single</td><td>The number of Points/Stamps the customer earned or burnt based \n            on the ActionDate and Location.</td></tr><tr><td>SiteID</td><td>Int32</td><td>The location ID the customer used their Loyalty Account.</td></tr><tr><td>SiteName</td><td>String</td><td>The location name the customer used their Loyalty Account.</td></tr><tr><td>Source</td><td>String</td><td>The Source of the ActionDate.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"LoyaltyPointsFacts\": [\r\n    {\r\n      \"LoyaltyPointsFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"OrderUniqueID\": 3,\r\n      \"SiteID\": 4,\r\n      \"SiteName\": \"sample string 5\",\r\n      \"ActionDate\": \"2026-03-25T07:30:07.7304986+00:00\",\r\n      \"Points\": 6.1,\r\n      \"Source\": \"sample string 7\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.7304986+00:00\"\r\n    },\r\n    {\r\n      \"LoyaltyPointsFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"OrderUniqueID\": 3,\r\n      \"SiteID\": 4,\r\n      \"SiteName\": \"sample string 5\",\r\n      \"ActionDate\": \"2026-03-25T07:30:07.7304986+00:00\",\r\n      \"Points\": 6.1,\r\n      \"Source\": \"sample string 7\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.7304986+00:00\"\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"a9eb5e25-2ba6-4320-b1f0-dd884251ce00"},{"name":"GetPushNotificationTrendFact","id":"e4cd216f-8875-4dd5-abdf-17c4e4fa8844","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetPushNotificationTrendFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from PushNotificationTrendFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>PushNotificationTrendOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>PushNotificationTrendFacts</td><td>List&lt;PushNotificationTrendFact&gt;</td><td>List of objects linked to a Push Notification.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td><h4>PushNotificationTrendFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandName</td><td>String</td><td>The brand name ( multibrand instances).</td></tr><tr><td>Category</td><td>String</td><td>The campaign category name.</td></tr><tr><td>CategoryID</td><td>Int32</td><td>The campaign category unique ID.</td></tr><tr><td>CostPerItem</td><td>Single</td><td>The cost per item (if paid for on a per send basis).</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>DirectSpentWithoutOverlap</td><td>Single</td><td>The amount of direct spent without overlap</td></tr><tr><td>IndirectSpentWithoutOverlap</td><td>Single</td><td>The amount of indirect spent without overlap</td></tr><tr><td>ItemID</td><td>Int32</td><td>Push notification ID.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date.</td></tr><tr><td>NbDeliv</td><td>Int32</td><td>The number of emails delivered</td></tr><tr><td>NbDispatched</td><td>Int32</td><td>The number of emails dispatched</td></tr><tr><td>NbSent</td><td>Int32</td><td>The number of emails sent</td></tr><tr><td>PrjMkgTitle</td><td>String</td><td>The marketing project title given the the campaign in Atreemo.</td></tr><tr><td>PushNotificationTrendFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>SendDate</td><td>DateTime</td><td>The date of send.</td></tr><tr><td>SenderProfile</td><td>String</td><td>The Atreemo users sender profile name used for the campaign.</td></tr><tr><td>SenderProfileID</td><td>Int32</td><td>The Atreemo users sender profile unique ID used for the campaign.</td></tr><tr><td>SubmittedBy</td><td>String</td><td>The Atreemo user who submitted the push notification campaign.</td></tr><tr><td>UniqueClicks</td><td>Int32</td><td>The number of clicks</td></tr><tr><td>UniqueViews</td><td>Int32</td><td>The number of views</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetPushNotificationTrendFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"75a9e34d-29c2-4e1d-9397-461a13faaa91","name":"api/BIDWHouse/GetPushNotificationTrendFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetPushNotificationTrendFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetPushNotificationTrendFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from PushNotificationTrendFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>PushNotificationTrendOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>PushNotificationTrendFacts</td><td>List&lt;PushNotificationTrendFact&gt;</td><td>List of objects linked to a Push Notification.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td colspan=3><h4>PushNotificationTrendFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandName</td><td>String</td><td>The brand name ( multibrand instances).</td></tr><tr><td>Category</td><td>String</td><td>The campaign category name.</td></tr><tr><td>CategoryID</td><td>Int32</td><td>The campaign category unique ID.</td></tr><tr><td>CostPerItem</td><td>Single</td><td>The cost per item (if paid for on a per send basis).</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>DirectSpentWithoutOverlap</td><td>Single</td><td>The amount of direct spent without overlap</td></tr><tr><td>IndirectSpentWithoutOverlap</td><td>Single</td><td>The amount of indirect spent without overlap</td></tr><tr><td>ItemID</td><td>Int32</td><td>Push notification ID.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date.</td></tr><tr><td>NbDeliv</td><td>Int32</td><td>The number of emails delivered</td></tr><tr><td>NbDispatched</td><td>Int32</td><td>The number of emails dispatched</td></tr><tr><td>NbSent</td><td>Int32</td><td>The number of emails sent</td></tr><tr><td>PrjMkgTitle</td><td>String</td><td>The marketing project title given the the campaign in Atreemo.</td></tr><tr><td>PushNotificationTrendFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>SendDate</td><td>DateTime</td><td>The date of send.</td></tr><tr><td>SenderProfile</td><td>String</td><td>The Atreemo users sender profile name used for the campaign.</td></tr><tr><td>SenderProfileID</td><td>Int32</td><td>The Atreemo users sender profile unique ID used for the campaign.</td></tr><tr><td>SubmittedBy</td><td>String</td><td>The Atreemo user who submitted the push notification campaign.</td></tr><tr><td>UniqueClicks</td><td>Int32</td><td>The number of clicks</td></tr><tr><td>UniqueViews</td><td>Int32</td><td>The number of views</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"PushNotificationTrendFacts\": [\r\n    {\r\n      \"PushNotificationTrendFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"PrjMkgTitle\": \"sample string 3\",\r\n      \"CategoryID\": 4,\r\n      \"Category\": \"sample string 5\",\r\n      \"SendDate\": \"2026-03-25T07:30:07.7461097+00:00\",\r\n      \"SubmittedBy\": \"sample string 7\",\r\n      \"SenderProfileID\": 8,\r\n      \"SenderProfile\": \"sample string 9\",\r\n      \"BrandName\": \"sample string 10\",\r\n      \"CostPerItem\": 11.1,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.7461097+00:00\",\r\n      \"DirectSpentWithoutOverlap\": 13.1,\r\n      \"IndirectSpentWithoutOverlap\": 14.1,\r\n      \"NbSent\": 15,\r\n      \"NbDeliv\": 16,\r\n      \"NbDispatched\": 17,\r\n      \"UniqueViews\": 18,\r\n      \"UniqueClicks\": 19,\r\n      \"ItemID\": 20\r\n    },\r\n    {\r\n      \"PushNotificationTrendFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"PrjMkgTitle\": \"sample string 3\",\r\n      \"CategoryID\": 4,\r\n      \"Category\": \"sample string 5\",\r\n      \"SendDate\": \"2026-03-25T07:30:07.7461097+00:00\",\r\n      \"SubmittedBy\": \"sample string 7\",\r\n      \"SenderProfileID\": 8,\r\n      \"SenderProfile\": \"sample string 9\",\r\n      \"BrandName\": \"sample string 10\",\r\n      \"CostPerItem\": 11.1,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.7461097+00:00\",\r\n      \"DirectSpentWithoutOverlap\": 13.1,\r\n      \"IndirectSpentWithoutOverlap\": 14.1,\r\n      \"NbSent\": 15,\r\n      \"NbDeliv\": 16,\r\n      \"NbDispatched\": 17,\r\n      \"UniqueViews\": 18,\r\n      \"UniqueClicks\": 19,\r\n      \"ItemID\": 20\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"e4cd216f-8875-4dd5-abdf-17c4e4fa8844"},{"name":"GetRewardJourneysProgressFact","id":"136f8e99-5ba7-44c3-9b9a-f404503f2ea8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetRewardJourneysProgressFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from FactRewardJourneysProgress table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>RewardJourneysProgressFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td>RewardJourneysProgressFact</td><td>List&lt;RewardJourneysProgressFact&gt;</td><td>List of objects indicating a booking details.</td></tr><tr><td><h4>RewardJourneysProgressFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingDate</td><td>DateTime (nullable)</td><td>The date of the Booking.</td></tr><tr><td>BookingID</td><td>Int32 (nullable)</td><td>The unique ID for the booking in Atreemo and used to join the various tables.</td></tr><tr><td>BookingStatus</td><td>String</td><td>The bookings' Atreemo status</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>GoalToAchieve</td><td>Double</td><td>The Goal To Achieve the RewardJourney.</td></tr><tr><td>Location</td><td>String</td><td>The location name</td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td>Modified Date of the RewardJourney</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The date / time of the transaction.</td></tr><tr><td>OrderUniqueID</td><td>Int64</td><td>Atreemo’s Unique Order ID.</td></tr><tr><td>Product</td><td>String</td><td>The product name</td></tr><tr><td>RewardJourneyCompleted</td><td>Boolean (nullable)</td><td>If true,the RewardJourney is completed.</td></tr><tr><td>RewardJourneyCompletionDate</td><td>DateTime (nullable)</td><td>Completion Date of the RewardJourney, empty if the RewardJourney still in progress</td></tr><tr><td>RewardJourneyCreateDate</td><td>DateTime</td><td>The Create Date for the RewardJourney.</td></tr><tr><td>RewardJourneyFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>The unique ID for the RewardJourney in Atreemo and used to join the various tables.</td></tr><tr><td>RewardJourneyProgress</td><td>Double</td><td>The Progress of the RewardJourney.</td></tr><tr><td>RewardJourneyRewardType</td><td>String</td><td>The Reward Type of the RewardJourney.</td></tr><tr><td>RewardJourneySignUpDate</td><td>DateTime</td><td>The SignUp Date for the RewardJourney.</td></tr><tr><td>RewardJourneyType</td><td>String</td><td>The type of the RewardJourney.</td></tr><tr><td>SpendProgress</td><td>Double</td><td>The Spend Progress of the RewardJourney.</td></tr><tr><td>VisitDateTime</td><td>DateTime (nullable)</td><td>The visit date time.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetRewardJourneysProgressFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"93b72bdb-8f2f-4973-9e0d-27a7aa12c79a","name":"api/BIDWHouse/GetRewardJourneysProgressFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetRewardJourneysProgressFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetRewardJourneysProgressFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from FactRewardJourneysProgress table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>RewardJourneysProgressFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td>RewardJourneysProgressFact</td><td>List&lt;RewardJourneysProgressFact&gt;</td><td>List of objects indicating a booking details.</td></tr><tr><td colspan=3><h4>RewardJourneysProgressFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingDate</td><td>DateTime (nullable)</td><td>The date of the Booking.</td></tr><tr><td>BookingID</td><td>Int32 (nullable)</td><td>The unique ID for the booking in Atreemo and used to join the various tables.</td></tr><tr><td>BookingStatus</td><td>String</td><td>The bookings' Atreemo status</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>GoalToAchieve</td><td>Double</td><td>The Goal To Achieve the RewardJourney.</td></tr><tr><td>Location</td><td>String</td><td>The location name</td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td>Modified Date of the RewardJourney</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>The date / time of the transaction.</td></tr><tr><td>OrderUniqueID</td><td>Int64</td><td>Atreemo’s Unique Order ID.</td></tr><tr><td>Product</td><td>String</td><td>The product name</td></tr><tr><td>RewardJourneyCompleted</td><td>Boolean (nullable)</td><td>If true,the RewardJourney is completed.</td></tr><tr><td>RewardJourneyCompletionDate</td><td>DateTime (nullable)</td><td>Completion Date of the RewardJourney, empty if the RewardJourney still in progress</td></tr><tr><td>RewardJourneyCreateDate</td><td>DateTime</td><td>The Create Date for the RewardJourney.</td></tr><tr><td>RewardJourneyFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>The unique ID for the RewardJourney in Atreemo and used to join the various tables.</td></tr><tr><td>RewardJourneyProgress</td><td>Double</td><td>The Progress of the RewardJourney.</td></tr><tr><td>RewardJourneyRewardType</td><td>String</td><td>The Reward Type of the RewardJourney.</td></tr><tr><td>RewardJourneySignUpDate</td><td>DateTime</td><td>The SignUp Date for the RewardJourney.</td></tr><tr><td>RewardJourneyType</td><td>String</td><td>The type of the RewardJourney.</td></tr><tr><td>SpendProgress</td><td>Double</td><td>The Spend Progress of the RewardJourney.</td></tr><tr><td>VisitDateTime</td><td>DateTime (nullable)</td><td>The visit date time.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"RewardJourneysProgressFact\": [\r\n    {\r\n      \"RewardJourneyFactID\": 1,\r\n      \"RewardJourneyID\": 2,\r\n      \"CtcID\": 3,\r\n      \"RewardJourneyCreateDate\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"RewardJourneyType\": \"sample string 5\",\r\n      \"GoalToAchieve\": 6.1,\r\n      \"RewardJourneyRewardType\": \"sample string 7\",\r\n      \"RewardJourneySignUpDate\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"RewardJourneyCompletionDate\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"RewardJourneyProgress\": 9.1,\r\n      \"RewardJourneyCompleted\": true,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"BookingID\": 1,\r\n      \"BookingDate\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"BookingStatus\": \"sample string 10\",\r\n      \"OrderDate\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"OrderUniqueID\": 11,\r\n      \"SpendProgress\": 12.1,\r\n      \"VisitDateTime\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"Product\": \"sample string 13\",\r\n      \"Location\": \"sample string 14\"\r\n    },\r\n    {\r\n      \"RewardJourneyFactID\": 1,\r\n      \"RewardJourneyID\": 2,\r\n      \"CtcID\": 3,\r\n      \"RewardJourneyCreateDate\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"RewardJourneyType\": \"sample string 5\",\r\n      \"GoalToAchieve\": 6.1,\r\n      \"RewardJourneyRewardType\": \"sample string 7\",\r\n      \"RewardJourneySignUpDate\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"RewardJourneyCompletionDate\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"RewardJourneyProgress\": 9.1,\r\n      \"RewardJourneyCompleted\": true,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"BookingID\": 1,\r\n      \"BookingDate\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"BookingStatus\": \"sample string 10\",\r\n      \"OrderDate\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"OrderUniqueID\": 11,\r\n      \"SpendProgress\": 12.1,\r\n      \"VisitDateTime\": \"2026-03-25T07:30:07.7773719+00:00\",\r\n      \"Product\": \"sample string 13\",\r\n      \"Location\": \"sample string 14\"\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"136f8e99-5ba7-44c3-9b9a-f404503f2ea8"},{"name":"GetSLPFact","id":"9b37bb06-e7ee-4307-9d69-cbf4e1542e85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetSLPFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from LeadsFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>LeadsFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>LeadsFacts</td><td>List&lt;LeadsFact&gt;</td><td>List of objects indicating a sales lead details.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td><h4>LeadsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AppointmentDate</td><td>DateTime (nullable)</td><td>If the sales lead appointment date.</td></tr><tr><td>Brand</td><td>String</td><td>If the sales lead brand.</td></tr><tr><td>CallMade</td><td>Boolean</td><td>If a call made with a contact this valus is true.</td></tr><tr><td>CategoryName</td><td>String</td><td>The sales leads category name.</td></tr><tr><td>ClaimedBy</td><td>String</td><td>The Atreemo user who claimed the sales lead.</td></tr><tr><td>ClaimedDate</td><td>DateTime (nullable)</td><td>The date of claiming a lead.</td></tr><tr><td>CreateDate</td><td>DateTime</td><td>The creation date of the sales lead.</td></tr><tr><td>CreatedBy</td><td>String</td><td>The Atreemo user who created the sales lead.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>Deleted</td><td>Boolean</td><td>If the sales lead is deleted in Atreemo Deleted is True.</td></tr><tr><td>EstimatedRevenue</td><td>Single</td><td>The sales lead estimated revenue value .</td></tr><tr><td>EventDate</td><td>DateTime (nullable)</td><td>The sales lead event date.</td></tr><tr><td>EventEndDate</td><td>DateTime (nullable)</td><td>The sales lead event end date.</td></tr><tr><td>FirstCallDate</td><td>DateTime (nullable)</td><td>The date of the first call made.</td></tr><tr><td>FirstCallMadeBy</td><td>String</td><td>The user who made the first call.</td></tr><tr><td>FirstCallType</td><td>String</td><td>The type of the first call.</td></tr><tr><td>FollowUpDate</td><td>DateTime (nullable)</td><td>The sales lead follow up date.</td></tr><tr><td>IsMaster</td><td>Boolean</td><td>If the sales lead  is Merged to another lead IsMaster is True.</td></tr><tr><td>IsWalkin</td><td>Boolean</td><td>If the sales lead contact made is walk in this variable will be True.</td></tr><tr><td>LastCallDate</td><td>DateTime (nullable)</td><td>The date of the last call made.</td></tr><tr><td>LastCallMadeBy</td><td>String</td><td>The user who made the last call.</td></tr><tr><td>LastCallType</td><td>String</td><td>The type of the last call.</td></tr><tr><td>LastCommunicationDate</td><td>DateTime (nullable)</td><td>The last date of the most recent communication with the lead</td></tr><tr><td>LastModifiedOn</td><td>DateTime (nullable)</td><td>The sales lead last Modification Date in Atreemo.</td></tr><tr><td>LastSuccessfulCallMadeBy</td><td>String</td><td>The user who made the last successful call to the lead.</td></tr><tr><td>LastSuccessfulCallMadeOn</td><td>DateTime (nullable)</td><td>The last successful call date was made to the lead.</td></tr><tr><td>LastUnsuccessfulCallMadeBy</td><td>String</td><td>The user who made the last unsuccessful call to the lead.</td></tr><tr><td>LastUnsuccessfulCallMadeOn</td><td>DateTime (nullable)</td><td>The last unsuccessful call date was made to the lead.</td></tr><tr><td>LeadID</td><td>Int32</td><td>The unique ID for the sales Lead in Atreemo and used to join the various tables.</td></tr><tr><td>LeadsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>LeadSource</td><td>String</td><td>If the sales lead source.</td></tr><tr><td>MasterID</td><td>Int32</td><td>If the sales lead  is Merged to another lead the MasterID is not null.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the lead.</td></tr><tr><td>PostSaesCallDate</td><td>DateTime (nullable)</td><td>If the sales lead post sale call date.</td></tr><tr><td>Priority</td><td>String</td><td>The sales lead priority in Atreemo.</td></tr><tr><td>ProvisionalEventDate</td><td>DateTime (nullable)</td><td>The sales lead Provisional event  date.</td></tr><tr><td>ProvisionalEventEndDate</td><td>DateTime (nullable)</td><td>The sales lead Provisional event end date.</td></tr><tr><td>Region</td><td>String</td><td>The region name where the transaction was made.</td></tr><tr><td>Revenue</td><td>Single</td><td>If the sales lead revenue.</td></tr><tr><td>SaleType</td><td>String</td><td>The sales lead sale type in Atreemo.</td></tr><tr><td>SiteID</td><td>Int32</td><td>The location ID where the transaction was made.</td></tr><tr><td>SiteName</td><td>String</td><td>The location name where the transaction was made.</td></tr><tr><td>SourceName</td><td>String</td><td>The sales lead source Name in Atreemo.</td></tr><tr><td>Status</td><td>String</td><td>The sales leads Atreemo status</td></tr><tr><td>SubCategoryName</td><td>String</td><td>The sales leads subcategory name.</td></tr><tr><td>TotalEmails</td><td>Int32 (nullable)</td><td>The total number of emails sent to the lead.</td></tr><tr><td>TotalSuccessfulCalls</td><td>Int32 (nullable)</td><td>The Total number of successful calls made to leads.</td></tr><tr><td>TotalUnsuccessfulCalls</td><td>Int32 (nullable)</td><td>The Total number of unsuccessful calls made to leads.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetSLPFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"e94afb6b-3368-423e-98be-a7e525bd2f5d","name":"api/BIDWHouse/GetSLPFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetSLPFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetSLPFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from LeadsFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>LeadsFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>LeadsFacts</td><td>List&lt;LeadsFact&gt;</td><td>List of objects indicating a sales lead details.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td colspan=3><h4>LeadsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AppointmentDate</td><td>DateTime (nullable)</td><td>If the sales lead appointment date.</td></tr><tr><td>Brand</td><td>String</td><td>If the sales lead brand.</td></tr><tr><td>CallMade</td><td>Boolean</td><td>If a call made with a contact this valus is true.</td></tr><tr><td>CategoryName</td><td>String</td><td>The sales leads category name.</td></tr><tr><td>ClaimedBy</td><td>String</td><td>The Atreemo user who claimed the sales lead.</td></tr><tr><td>ClaimedDate</td><td>DateTime (nullable)</td><td>The date of claiming a lead.</td></tr><tr><td>CreateDate</td><td>DateTime</td><td>The creation date of the sales lead.</td></tr><tr><td>CreatedBy</td><td>String</td><td>The Atreemo user who created the sales lead.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>Deleted</td><td>Boolean</td><td>If the sales lead is deleted in Atreemo Deleted is True.</td></tr><tr><td>EstimatedRevenue</td><td>Single</td><td>The sales lead estimated revenue value .</td></tr><tr><td>EventDate</td><td>DateTime (nullable)</td><td>The sales lead event date.</td></tr><tr><td>EventEndDate</td><td>DateTime (nullable)</td><td>The sales lead event end date.</td></tr><tr><td>FirstCallDate</td><td>DateTime (nullable)</td><td>The date of the first call made.</td></tr><tr><td>FirstCallMadeBy</td><td>String</td><td>The user who made the first call.</td></tr><tr><td>FirstCallType</td><td>String</td><td>The type of the first call.</td></tr><tr><td>FollowUpDate</td><td>DateTime (nullable)</td><td>The sales lead follow up date.</td></tr><tr><td>IsMaster</td><td>Boolean</td><td>If the sales lead  is Merged to another lead IsMaster is True.</td></tr><tr><td>IsWalkin</td><td>Boolean</td><td>If the sales lead contact made is walk in this variable will be True.</td></tr><tr><td>LastCallDate</td><td>DateTime (nullable)</td><td>The date of the last call made.</td></tr><tr><td>LastCallMadeBy</td><td>String</td><td>The user who made the last call.</td></tr><tr><td>LastCallType</td><td>String</td><td>The type of the last call.</td></tr><tr><td>LastCommunicationDate</td><td>DateTime (nullable)</td><td>The last date of the most recent communication with the lead</td></tr><tr><td>LastModifiedOn</td><td>DateTime (nullable)</td><td>The sales lead last Modification Date in Atreemo.</td></tr><tr><td>LastSuccessfulCallMadeBy</td><td>String</td><td>The user who made the last successful call to the lead.</td></tr><tr><td>LastSuccessfulCallMadeOn</td><td>DateTime (nullable)</td><td>The last successful call date was made to the lead.</td></tr><tr><td>LastUnsuccessfulCallMadeBy</td><td>String</td><td>The user who made the last unsuccessful call to the lead.</td></tr><tr><td>LastUnsuccessfulCallMadeOn</td><td>DateTime (nullable)</td><td>The last unsuccessful call date was made to the lead.</td></tr><tr><td>LeadID</td><td>Int32</td><td>The unique ID for the sales Lead in Atreemo and used to join the various tables.</td></tr><tr><td>LeadsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>LeadSource</td><td>String</td><td>If the sales lead source.</td></tr><tr><td>MasterID</td><td>Int32</td><td>If the sales lead  is Merged to another lead the MasterID is not null.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the lead.</td></tr><tr><td>PostSaesCallDate</td><td>DateTime (nullable)</td><td>If the sales lead post sale call date.</td></tr><tr><td>Priority</td><td>String</td><td>The sales lead priority in Atreemo.</td></tr><tr><td>ProvisionalEventDate</td><td>DateTime (nullable)</td><td>The sales lead Provisional event  date.</td></tr><tr><td>ProvisionalEventEndDate</td><td>DateTime (nullable)</td><td>The sales lead Provisional event end date.</td></tr><tr><td>Region</td><td>String</td><td>The region name where the transaction was made.</td></tr><tr><td>Revenue</td><td>Single</td><td>If the sales lead revenue.</td></tr><tr><td>SaleType</td><td>String</td><td>The sales lead sale type in Atreemo.</td></tr><tr><td>SiteID</td><td>Int32</td><td>The location ID where the transaction was made.</td></tr><tr><td>SiteName</td><td>String</td><td>The location name where the transaction was made.</td></tr><tr><td>SourceName</td><td>String</td><td>The sales lead source Name in Atreemo.</td></tr><tr><td>Status</td><td>String</td><td>The sales leads Atreemo status</td></tr><tr><td>SubCategoryName</td><td>String</td><td>The sales leads subcategory name.</td></tr><tr><td>TotalEmails</td><td>Int32 (nullable)</td><td>The total number of emails sent to the lead.</td></tr><tr><td>TotalSuccessfulCalls</td><td>Int32 (nullable)</td><td>The Total number of successful calls made to leads.</td></tr><tr><td>TotalUnsuccessfulCalls</td><td>Int32 (nullable)</td><td>The Total number of unsuccessful calls made to leads.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"LeadsFacts\": [\r\n    {\r\n      \"LeadsFactID\": 1,\r\n      \"LeadID\": 2,\r\n      \"CtcID\": 3,\r\n      \"CreateDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"CreatedBy\": \"sample string 5\",\r\n      \"ClaimedBy\": \"sample string 6\",\r\n      \"CategoryName\": \"sample string 7\",\r\n      \"SubCategoryName\": \"sample string 8\",\r\n      \"Status\": \"sample string 9\",\r\n      \"IsWalkin\": true,\r\n      \"LeadSource\": \"sample string 11\",\r\n      \"Revenue\": 12.1,\r\n      \"PostSaesCallDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"SiteID\": 13,\r\n      \"SiteName\": \"sample string 14\",\r\n      \"Region\": \"sample string 15\",\r\n      \"FollowUpDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"SourceName\": \"sample string 16\",\r\n      \"Priority\": \"sample string 17\",\r\n      \"EventDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"EventEndDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"ProvisionalEventDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"ProvisionalEventEndDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"SaleType\": \"sample string 18\",\r\n      \"EstimatedRevenue\": 19.1,\r\n      \"CallMade\": true,\r\n      \"ClaimedDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"FirstCallDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"FirstCallMadeBy\": \"sample string 21\",\r\n      \"FirstCallType\": \"sample string 22\",\r\n      \"LastCallDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"LastCallMadeBy\": \"sample string 23\",\r\n      \"LastCallType\": \"sample string 24\",\r\n      \"AppointmentDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"Brand\": \"sample string 25\",\r\n      \"MasterID\": 26,\r\n      \"IsMaster\": true,\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"Deleted\": true,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"TotalSuccessfulCalls\": 1,\r\n      \"LastSuccessfulCallMadeOn\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"LastSuccessfulCallMadeBy\": \"sample string 30\",\r\n      \"TotalUnsuccessfulCalls\": 1,\r\n      \"LastUnsuccessfulCallMadeOn\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"LastUnsuccessfulCallMadeBy\": \"sample string 31\",\r\n      \"TotalEmails\": 1,\r\n      \"LastCommunicationDate\": \"2026-03-25T07:30:07.7930023+00:00\"\r\n    },\r\n    {\r\n      \"LeadsFactID\": 1,\r\n      \"LeadID\": 2,\r\n      \"CtcID\": 3,\r\n      \"CreateDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"CreatedBy\": \"sample string 5\",\r\n      \"ClaimedBy\": \"sample string 6\",\r\n      \"CategoryName\": \"sample string 7\",\r\n      \"SubCategoryName\": \"sample string 8\",\r\n      \"Status\": \"sample string 9\",\r\n      \"IsWalkin\": true,\r\n      \"LeadSource\": \"sample string 11\",\r\n      \"Revenue\": 12.1,\r\n      \"PostSaesCallDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"SiteID\": 13,\r\n      \"SiteName\": \"sample string 14\",\r\n      \"Region\": \"sample string 15\",\r\n      \"FollowUpDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"SourceName\": \"sample string 16\",\r\n      \"Priority\": \"sample string 17\",\r\n      \"EventDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"EventEndDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"ProvisionalEventDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"ProvisionalEventEndDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"SaleType\": \"sample string 18\",\r\n      \"EstimatedRevenue\": 19.1,\r\n      \"CallMade\": true,\r\n      \"ClaimedDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"FirstCallDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"FirstCallMadeBy\": \"sample string 21\",\r\n      \"FirstCallType\": \"sample string 22\",\r\n      \"LastCallDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"LastCallMadeBy\": \"sample string 23\",\r\n      \"LastCallType\": \"sample string 24\",\r\n      \"AppointmentDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"Brand\": \"sample string 25\",\r\n      \"MasterID\": 26,\r\n      \"IsMaster\": true,\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"Deleted\": true,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"TotalSuccessfulCalls\": 1,\r\n      \"LastSuccessfulCallMadeOn\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"LastSuccessfulCallMadeBy\": \"sample string 30\",\r\n      \"TotalUnsuccessfulCalls\": 1,\r\n      \"LastUnsuccessfulCallMadeOn\": \"2026-03-25T07:30:07.7930023+00:00\",\r\n      \"LastUnsuccessfulCallMadeBy\": \"sample string 31\",\r\n      \"TotalEmails\": 1,\r\n      \"LastCommunicationDate\": \"2026-03-25T07:30:07.7930023+00:00\"\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"9b37bb06-e7ee-4307-9d69-cbf4e1542e85"},{"name":"GetSMSTrendFact","id":"7b649c56-d638-4e85-81ac-898a0d8b12b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetSMSTrendFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from SMSTrendFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>SMSTrendOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status .</td></tr><tr><td>SMSTrendFacts</td><td>List&lt;SMSTrendFact&gt;</td><td>List of objects linked to sms campaigns.</td></tr><tr><td><h4>SMSTrendFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingsMadeIn14Days</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td>The brand name ( multibrand instances).</td></tr><tr><td>Category</td><td>String</td><td>The campaign category name.</td></tr><tr><td>CategoryID</td><td>Int32</td><td>The campaign category unique ID.</td></tr><tr><td>CostPerItem</td><td>Single</td><td>The cost per item.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date.</td></tr><tr><td>NbUnits</td><td>Int32</td><td>The number of unit SMS sent, for example if the message was 204 characters the number of units would be 2.</td></tr><tr><td>PrjMkgTitle</td><td>String</td><td>The marketing project title assigned in Atreemo.</td></tr><tr><td>SendDate</td><td>DateTime</td><td>The date time the SMS was scheduled to send.</td></tr><tr><td>SenderProfile</td><td>String</td><td>The Atreemo users sender profile name.</td></tr><tr><td>SenderProfileID</td><td>Int32</td><td>The Atreemo users sender profile unique ID.</td></tr><tr><td>SMSItemID</td><td>Int32</td><td>The unique ID of the SMS Item.</td></tr><tr><td>SMSTrendFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>SubmittedBy</td><td>String</td><td>The Atreemo user who submitted the campaign.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetSMSTrendFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"38efa136-9c02-488f-aee4-02c6f1367b93","name":"api/BIDWHouse/GetSMSTrendFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetSMSTrendFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetSMSTrendFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from SMSTrendFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>SMSTrendOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status .</td></tr><tr><td>SMSTrendFacts</td><td>List&lt;SMSTrendFact&gt;</td><td>List of objects linked to sms campaigns.</td></tr><tr><td colspan=3><h4>SMSTrendFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingsMadeIn14Days</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td>The brand name ( multibrand instances).</td></tr><tr><td>Category</td><td>String</td><td>The campaign category name.</td></tr><tr><td>CategoryID</td><td>Int32</td><td>The campaign category unique ID.</td></tr><tr><td>CostPerItem</td><td>Single</td><td>The cost per item.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date.</td></tr><tr><td>NbUnits</td><td>Int32</td><td>The number of unit SMS sent, for example if the message was 204 characters the number of units would be 2.</td></tr><tr><td>PrjMkgTitle</td><td>String</td><td>The marketing project title assigned in Atreemo.</td></tr><tr><td>SendDate</td><td>DateTime</td><td>The date time the SMS was scheduled to send.</td></tr><tr><td>SenderProfile</td><td>String</td><td>The Atreemo users sender profile name.</td></tr><tr><td>SenderProfileID</td><td>Int32</td><td>The Atreemo users sender profile unique ID.</td></tr><tr><td>SMSItemID</td><td>Int32</td><td>The unique ID of the SMS Item.</td></tr><tr><td>SMSTrendFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>SubmittedBy</td><td>String</td><td>The Atreemo user who submitted the campaign.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"SMSTrendFacts\": [\r\n    {\r\n      \"SMSTrendFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"PrjMkgTitle\": \"sample string 3\",\r\n      \"CategoryID\": 4,\r\n      \"Category\": \"sample string 5\",\r\n      \"SendDate\": \"2026-03-25T07:30:07.8398714+00:00\",\r\n      \"SubmittedBy\": \"sample string 7\",\r\n      \"SenderProfileID\": 8,\r\n      \"SenderProfile\": \"sample string 9\",\r\n      \"BrandName\": \"sample string 10\",\r\n      \"NbUnits\": 11,\r\n      \"CostPerItem\": 12.1,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.8398714+00:00\",\r\n      \"SMSItemID\": 14,\r\n      \"BookingsMadeIn14Days\": 15\r\n    },\r\n    {\r\n      \"SMSTrendFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"PrjMkgTitle\": \"sample string 3\",\r\n      \"CategoryID\": 4,\r\n      \"Category\": \"sample string 5\",\r\n      \"SendDate\": \"2026-03-25T07:30:07.8398714+00:00\",\r\n      \"SubmittedBy\": \"sample string 7\",\r\n      \"SenderProfileID\": 8,\r\n      \"SenderProfile\": \"sample string 9\",\r\n      \"BrandName\": \"sample string 10\",\r\n      \"NbUnits\": 11,\r\n      \"CostPerItem\": 12.1,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.8398714+00:00\",\r\n      \"SMSItemID\": 14,\r\n      \"BookingsMadeIn14Days\": 15\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"7b649c56-d638-4e85-81ac-898a0d8b12b5"},{"name":"GetTransactionsFact","id":"60c5c372-25ea-47fd-b69b-7cdb28df1f84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetTransactionsFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from TransactionsFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>TransactionsFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The list of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td>TransactionsFacts</td><td>List&lt;TransactionsFact&gt;</td><td>The list of objects associated  to transactions linked to a contact.</td></tr><tr><td><h4>TransactionsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AmountPaid</td><td>Single</td><td>The Amount Paid in this transaction.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique contact ID linked to this transaction.</td></tr><tr><td>DiscountAmount</td><td>Single</td><td>The Discount Amount in this transaction.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date applied to this transaction.</td></tr><tr><td>OrderChannel</td><td>String</td><td>The transaction Order Channel.Possible Values : InStore OnlineWeb OnlineApp.</td></tr><tr><td>OrderDate</td><td>DateTime</td><td>The date / time of the transaction.</td></tr><tr><td>OrderID</td><td>String</td><td>The transaction OrderID received from the EPOS.</td></tr><tr><td>OrderStatus</td><td>String</td><td>The order status of the transaction. Possible Values: Paid, Cancelled,\n            Invoiced, Incomplete, Refunded, PartiallyPaid,</td></tr><tr><td>OrderType</td><td>String</td><td>The order type of the transaction. Possible Values: InStore,\n            Collection, Delivery, Shop, PayAtTable, PreOrder.</td></tr><tr><td>OrderUniqueID</td><td>Int64</td><td>Atreemo’s Unique Order ID.</td></tr><tr><td>PaidWithPoints</td><td>Boolean</td><td>If the transaction is paid with points will be true.</td></tr><tr><td>SaleType</td><td>String</td><td>The transaction sale type. Possible Values: Sale, Refund, No Sale, Cancelled Sale,\n            Zero Value Sale, Other Actions, Void, Online, Discounted Sale.</td></tr><tr><td>SiteID</td><td>Int32</td><td>The location ID where the transaction was made.</td></tr><tr><td>SiteName</td><td>String</td><td>The location name where the transaction was made.</td></tr><tr><td>Source</td><td>String</td><td>The source name given to the transaction.</td></tr><tr><td>TotalSpend</td><td>Single</td><td>The Total Spend for the transaction.</td></tr><tr><td>TransactionsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>VoucherCode</td><td>String</td><td>The Voucher Code linked to the transaction (if applicable).</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetTransactionsFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"a5081bb0-aa23-4872-adaf-ca80b024b611","name":"api/BIDWHouse/GetTransactionsFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetTransactionsFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetTransactionsFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from TransactionsFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>TransactionsFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The list of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td>TransactionsFacts</td><td>List&lt;TransactionsFact&gt;</td><td>The list of objects associated  to transactions linked to a contact.</td></tr><tr><td colspan=3><h4>TransactionsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AmountPaid</td><td>Single</td><td>The Amount Paid in this transaction.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique contact ID linked to this transaction.</td></tr><tr><td>DiscountAmount</td><td>Single</td><td>The Discount Amount in this transaction.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date applied to this transaction.</td></tr><tr><td>OrderChannel</td><td>String</td><td>The transaction Order Channel.Possible Values : InStore OnlineWeb OnlineApp.</td></tr><tr><td>OrderDate</td><td>DateTime</td><td>The date / time of the transaction.</td></tr><tr><td>OrderID</td><td>String</td><td>The transaction OrderID received from the EPOS.</td></tr><tr><td>OrderStatus</td><td>String</td><td>The order status of the transaction. Possible Values: Paid, Cancelled,\n            Invoiced, Incomplete, Refunded, PartiallyPaid,</td></tr><tr><td>OrderType</td><td>String</td><td>The order type of the transaction. Possible Values: InStore,\n            Collection, Delivery, Shop, PayAtTable, PreOrder.</td></tr><tr><td>OrderUniqueID</td><td>Int64</td><td>Atreemo’s Unique Order ID.</td></tr><tr><td>PaidWithPoints</td><td>Boolean</td><td>If the transaction is paid with points will be true.</td></tr><tr><td>SaleType</td><td>String</td><td>The transaction sale type. Possible Values: Sale, Refund, No Sale, Cancelled Sale,\n            Zero Value Sale, Other Actions, Void, Online, Discounted Sale.</td></tr><tr><td>SiteID</td><td>Int32</td><td>The location ID where the transaction was made.</td></tr><tr><td>SiteName</td><td>String</td><td>The location name where the transaction was made.</td></tr><tr><td>Source</td><td>String</td><td>The source name given to the transaction.</td></tr><tr><td>TotalSpend</td><td>Single</td><td>The Total Spend for the transaction.</td></tr><tr><td>TransactionsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr><tr><td>VoucherCode</td><td>String</td><td>The Voucher Code linked to the transaction (if applicable).</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"TransactionsFacts\": [\r\n    {\r\n      \"TransactionsFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"VoucherCode\": \"sample string 3\",\r\n      \"SiteID\": 4,\r\n      \"SiteName\": \"sample string 5\",\r\n      \"OrderDate\": \"2026-03-25T07:30:07.8711107+00:00\",\r\n      \"TotalSpend\": 7.1,\r\n      \"OrderType\": \"sample string 8\",\r\n      \"OrderStatus\": \"sample string 9\",\r\n      \"AmountPaid\": 10.1,\r\n      \"DiscountAmount\": 11.1,\r\n      \"SaleType\": \"sample string 12\",\r\n      \"OrderID\": \"sample string 13\",\r\n      \"OrderChannel\": \"sample string 14\",\r\n      \"Source\": \"sample string 15\",\r\n      \"PaidWithPoints\": true,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.8711107+00:00\",\r\n      \"OrderUniqueID\": 18\r\n    },\r\n    {\r\n      \"TransactionsFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"VoucherCode\": \"sample string 3\",\r\n      \"SiteID\": 4,\r\n      \"SiteName\": \"sample string 5\",\r\n      \"OrderDate\": \"2026-03-25T07:30:07.8711107+00:00\",\r\n      \"TotalSpend\": 7.1,\r\n      \"OrderType\": \"sample string 8\",\r\n      \"OrderStatus\": \"sample string 9\",\r\n      \"AmountPaid\": 10.1,\r\n      \"DiscountAmount\": 11.1,\r\n      \"SaleType\": \"sample string 12\",\r\n      \"OrderID\": \"sample string 13\",\r\n      \"OrderChannel\": \"sample string 14\",\r\n      \"Source\": \"sample string 15\",\r\n      \"PaidWithPoints\": true,\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.8711107+00:00\",\r\n      \"OrderUniqueID\": 18\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"60c5c372-25ea-47fd-b69b-7cdb28df1f84"},{"name":"GetVisitsFact","id":"d658512a-2e21-4e22-902d-324ea1275631","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetVisitsFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from VisitsFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>VisitsFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td>VisitsFacts</td><td>List&lt;VisitsFact&gt;</td><td>List of objects linked to visits for a contact.</td></tr><tr><td><h4>VisitsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandName</td><td>String</td><td>The brand name (multibrand instances).</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>DirectSpent</td><td>Single</td><td>The amount direct spent in the visit.</td></tr><tr><td>IndirectSpent</td><td>Single</td><td>The amount of indirect spent in the visit.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>Returns the last modification date.</td></tr><tr><td>SiteID</td><td>Int32</td><td>The visit location ID where the visit was recorded.</td></tr><tr><td>SiteName</td><td>String</td><td>The visit location name where the visit was recorded.</td></tr><tr><td>Source</td><td>String</td><td>The visit source, for example Wifi.</td></tr><tr><td>VisitDateTime</td><td>DateTime</td><td>The visit date time.</td></tr><tr><td>VisitsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetVisitsFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"933f3a24-3fc7-4097-97f7-81bc1a83d437","name":"api/BIDWHouse/GetVisitsFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetVisitsFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetVisitsFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from VisitsFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>VisitsFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td>VisitsFacts</td><td>List&lt;VisitsFact&gt;</td><td>List of objects linked to visits for a contact.</td></tr><tr><td colspan=3><h4>VisitsFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandName</td><td>String</td><td>The brand name (multibrand instances).</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>DirectSpent</td><td>Single</td><td>The amount direct spent in the visit.</td></tr><tr><td>IndirectSpent</td><td>Single</td><td>The amount of indirect spent in the visit.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>Returns the last modification date.</td></tr><tr><td>SiteID</td><td>Int32</td><td>The visit location ID where the visit was recorded.</td></tr><tr><td>SiteName</td><td>String</td><td>The visit location name where the visit was recorded.</td></tr><tr><td>Source</td><td>String</td><td>The visit source, for example Wifi.</td></tr><tr><td>VisitDateTime</td><td>DateTime</td><td>The visit date time.</td></tr><tr><td>VisitsFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"VisitsFacts\": [\r\n    {\r\n      \"VisitsFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"VisitDateTime\": \"2026-03-25T07:30:07.8867405+00:00\",\r\n      \"SiteID\": 4,\r\n      \"SiteName\": \"sample string 5\",\r\n      \"DirectSpent\": 6.1,\r\n      \"IndirectSpent\": 7.1,\r\n      \"Source\": \"sample string 8\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.8867405+00:00\",\r\n      \"BrandName\": \"sample string 10\"\r\n    },\r\n    {\r\n      \"VisitsFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"VisitDateTime\": \"2026-03-25T07:30:07.8867405+00:00\",\r\n      \"SiteID\": 4,\r\n      \"SiteName\": \"sample string 5\",\r\n      \"DirectSpent\": 6.1,\r\n      \"IndirectSpent\": 7.1,\r\n      \"Source\": \"sample string 8\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.8867405+00:00\",\r\n      \"BrandName\": \"sample string 10\"\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"d658512a-2e21-4e22-902d-324ea1275631"},{"name":"GetVouchersFact","id":"06532846-2b72-4c5a-892f-59ef37743b38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/BIDWHouse/GetVouchersFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","description":" <p>\n            Getting records from VouchersFact table.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>VouchersFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td>VouchersFacts</td><td>List&lt;VouchersFact&gt;</td><td>List of objects linked to voucher and contacts.</td></tr><tr><td><h4>VouchersFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Category</td><td>String</td><td>The voucher category name.</td></tr><tr><td>CategoryID</td><td>Int32</td><td>The voucher category ID.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>Disabled</td><td>Boolean</td><td>If True the voucher code has been disabled.</td></tr><tr><td>IssuedDate</td><td>DateTime (nullable)</td><td>The voucher issued date.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the voucher.</td></tr><tr><td>OfferCode</td><td>String</td><td>The voucher offer code sent to the customer.</td></tr><tr><td>OfferID</td><td>Int32</td><td>The Atreemo voucher offer ID.</td></tr><tr><td>OrderAmount</td><td>Single</td><td>The voucher order amount.</td></tr><tr><td>Redeemed</td><td>Boolean</td><td>If True the code has been redeemed.</td></tr><tr><td>RedemptionAmount</td><td>Single</td><td>The voucher redemption amount (if redeemed = True).</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>The voucher redemption date / time (if redeemed = True).</td></tr><tr><td>RedemptionLocation</td><td>String</td><td>The voucher redemption location name (if redeemed = True).</td></tr><tr><td>RedemptionLocationID</td><td>Int64</td><td>The voucher redemption location ID (if redeemed = True).</td></tr><tr><td>SubCategory</td><td>String</td><td>The subcategory linked to the issued voucher.</td></tr><tr><td>SubCategoryID</td><td>Int32</td><td>The Subcategory ID linked to the issued voucher.</td></tr><tr><td>Title</td><td>String</td><td>The name given to the voucher in Atreemo.</td></tr><tr><td>VoucherCode</td><td>String</td><td>The Voucher code issued to the contact.</td></tr><tr><td>VoucherCreatedDate</td><td>DateTime</td><td>The date the voucher was set up in Atreemo.</td></tr><tr><td>VoucherExpiryDate</td><td>DateTime (nullable)</td><td>The voucher expiration date.</td></tr><tr><td>VouchersFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","GetVouchersFact"],"host":["{{Host}}"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}],"variable":[]}},"response":[{"id":"b2b65b2b-0904-40df-9632-c4aa3c62abd6","name":"api/BIDWHouse/GetVouchersFact?PageSize={PageSize}&resetStartProcessDate={resetStartProcessDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/BIDWHouse/GetVouchersFact?PageSize=PageSize-value&resetStartProcessDate=resetStartProcessDate-value","protocol":"https","host":["{{Host}}"],"path":["api","BIDWHouse","GetVouchersFact"],"query":[{"key":"PageSize","value":"PageSize-value"},{"key":"resetStartProcessDate","value":"resetStartProcessDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Getting records from VouchersFact table.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>VouchersFactOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>The List of errors if exist.</td></tr><tr><td>Response</td><td>Boolean</td><td>The call success status.</td></tr><tr><td>VouchersFacts</td><td>List&lt;VouchersFact&gt;</td><td>List of objects linked to voucher and contacts.</td></tr><tr><td colspan=3><h4>VouchersFact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Category</td><td>String</td><td>The voucher category name.</td></tr><tr><td>CategoryID</td><td>Int32</td><td>The voucher category ID.</td></tr><tr><td>CtcID</td><td>Int32</td><td>The unique ID for the contact in Atreemo and used to join the various tables.</td></tr><tr><td>Disabled</td><td>Boolean</td><td>If True the voucher code has been disabled.</td></tr><tr><td>IssuedDate</td><td>DateTime (nullable)</td><td>The voucher issued date.</td></tr><tr><td>ModifiedDate</td><td>DateTime</td><td>The last modification date for the voucher.</td></tr><tr><td>OfferCode</td><td>String</td><td>The voucher offer code sent to the customer.</td></tr><tr><td>OfferID</td><td>Int32</td><td>The Atreemo voucher offer ID.</td></tr><tr><td>OrderAmount</td><td>Single</td><td>The voucher order amount.</td></tr><tr><td>Redeemed</td><td>Boolean</td><td>If True the code has been redeemed.</td></tr><tr><td>RedemptionAmount</td><td>Single</td><td>The voucher redemption amount (if redeemed = True).</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>The voucher redemption date / time (if redeemed = True).</td></tr><tr><td>RedemptionLocation</td><td>String</td><td>The voucher redemption location name (if redeemed = True).</td></tr><tr><td>RedemptionLocationID</td><td>Int64</td><td>The voucher redemption location ID (if redeemed = True).</td></tr><tr><td>SubCategory</td><td>String</td><td>The subcategory linked to the issued voucher.</td></tr><tr><td>SubCategoryID</td><td>Int32</td><td>The Subcategory ID linked to the issued voucher.</td></tr><tr><td>Title</td><td>String</td><td>The name given to the voucher in Atreemo.</td></tr><tr><td>VoucherCode</td><td>String</td><td>The Voucher code issued to the contact.</td></tr><tr><td>VoucherCreatedDate</td><td>DateTime</td><td>The date the voucher was set up in Atreemo.</td></tr><tr><td>VoucherExpiryDate</td><td>DateTime (nullable)</td><td>The voucher expiration date.</td></tr><tr><td>VouchersFactID</td><td>Int32</td><td>Incremental unique ID.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"VouchersFacts\": [\r\n    {\r\n      \"VouchersFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"Title\": \"sample string 3\",\r\n      \"VoucherCode\": \"sample string 4\",\r\n      \"OfferID\": 5,\r\n      \"OfferCode\": \"sample string 6\",\r\n      \"Disabled\": true,\r\n      \"Redeemed\": true,\r\n      \"VoucherCreatedDate\": \"2026-03-25T07:30:07.9023618+00:00\",\r\n      \"VoucherExpiryDate\": \"2026-03-25T07:30:07.9023618+00:00\",\r\n      \"RedemptionDate\": \"2026-03-25T07:30:07.9023618+00:00\",\r\n      \"RedemptionLocationID\": 10,\r\n      \"RedemptionLocation\": \"sample string 11\",\r\n      \"RedemptionAmount\": 12.1,\r\n      \"CategoryID\": 13,\r\n      \"Category\": \"sample string 14\",\r\n      \"SubCategoryID\": 15,\r\n      \"SubCategory\": \"sample string 16\",\r\n      \"OrderAmount\": 17.1,\r\n      \"IssuedDate\": \"2026-03-25T07:30:07.9023618+00:00\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.9023618+00:00\"\r\n    },\r\n    {\r\n      \"VouchersFactID\": 1,\r\n      \"CtcID\": 2,\r\n      \"Title\": \"sample string 3\",\r\n      \"VoucherCode\": \"sample string 4\",\r\n      \"OfferID\": 5,\r\n      \"OfferCode\": \"sample string 6\",\r\n      \"Disabled\": true,\r\n      \"Redeemed\": true,\r\n      \"VoucherCreatedDate\": \"2026-03-25T07:30:07.9023618+00:00\",\r\n      \"VoucherExpiryDate\": \"2026-03-25T07:30:07.9023618+00:00\",\r\n      \"RedemptionDate\": \"2026-03-25T07:30:07.9023618+00:00\",\r\n      \"RedemptionLocationID\": 10,\r\n      \"RedemptionLocation\": \"sample string 11\",\r\n      \"RedemptionAmount\": 12.1,\r\n      \"CategoryID\": 13,\r\n      \"Category\": \"sample string 14\",\r\n      \"SubCategoryID\": 15,\r\n      \"SubCategory\": \"sample string 16\",\r\n      \"OrderAmount\": 17.1,\r\n      \"IssuedDate\": \"2026-03-25T07:30:07.9023618+00:00\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:07.9023618+00:00\"\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"06532846-2b72-4c5a-892f-59ef37743b38"},{"name":"Post","id":"510bcfa4-2a78-4d17-99a8-3e7cea6a4928","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"TableName\": \"sample string 1\",\r\n  \"StartDate\": \"2026-03-25T07:30:07.9336281+00:00\"\r\n}"},"url":"https://{{Host}}/api/BIDWHouse/Post","description":" <p>\n            Set the initial date for when data from each fact table will be retrieved.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>BIDWHouseInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>StartDate</td><td>DateTime</td><td>The Date from which to get records.</td><td>True</td></tr><tr><td>TableName</td><td>String</td><td>Below the name of the fact tables :\n            ContactDetailsFact\n            ContactPreferencesFact\n            EmailTrendFact\n            LoyaltyPointsFact\n            PushNotificationsTrendFact\n            SMSTrendFact\n            TransactionsFact\n            VisitsFact\n            VouchersFact\n            ContactsSourcesFact\n            LeadsFact\n            BookingsFact\n            HotelBookingsFact</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>BIDWHouseOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>The list of errors if exist.</td></tr><tr><td>response</td><td>Boolean</td><td>The call success status.</td></tr></table>","urlObject":{"protocol":"https","path":["api","BIDWHouse","Post"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"4468f671-c04f-467e-8e3c-9a9982eeec87","name":"api/BIDWHouse/Post Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"TableName\": \"sample string 1\",\r\n  \"StartDate\": \"2026-03-25T07:30:07.9336281+00:00\"\r\n}"},"url":"https://{{Host}}/api/BIDWHouse/Post","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Set the initial date for when data from each fact table will be retrieved.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>BIDWHouseInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>StartDate</td><td>DateTime</td><td>The Date from which to get records.</td><td>True</td></tr><tr><td>TableName</td><td>String</td><td>Below the name of the fact tables :\n            ContactDetailsFact\n            ContactPreferencesFact\n            EmailTrendFact\n            LoyaltyPointsFact\n            PushNotificationsTrendFact\n            SMSTrendFact\n            TransactionsFact\n            VisitsFact\n            VouchersFact\n            ContactsSourcesFact\n            LeadsFact\n            BookingsFact\n            HotelBookingsFact</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>BIDWHouseOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>The list of errors if exist.</td></tr><tr><td>response</td><td>Boolean</td><td>The call success status.</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"510bcfa4-2a78-4d17-99a8-3e7cea6a4928"}],"id":"29b4076c-670f-4ad0-bbe2-4e34017a5829","description":"<p>Api Methods for BIDWHouse <br /> Please follow the steps below to retrieve the BI data: <br />Below are the names of the fact tables you will be able to access.The data in each table is updated once a day.  Please note some data feeds may be sent to Atreemo every 24 hours so there could be a 24-48 delay in some records being updated: <br /><li>ContactDetailsFact – Details for all the contacts in the database</li><li>ContactPreferencesFact – The marketing opt in preferences for the contacts, i.e.email opt in</li><li>EmailTrendFact – Details for any emails the contacts have received </li><li>LoyaltyPointsFact – Details the loyalty transactions linked to a contact</li><li>PushNotificationsTrendFact – Details for any push notifications the contacts have received</li><li>SMSTrendFact – Details for any text messages the contacts have received</li><li>TransactionsFact – Details transactions that are linked to a contact </li><li>VisitsFact – Summarises all the visits linked to a contact</li> <li>VouchersFact – Details vouchers issued and redeemed for contacts</li><li>ContactsSourcesFact – Includes all the data sources linked to a contact.The main ContactDetailsFact table will always return the original source, whereas this table will include all the data sources.</li>You are able to make successive calls to each table, when you get an empty list, you will have the full data set.<br />The data will start from the date you defined in the original set call (Post).If you don’t include the date in the first post call, the date will start from first row in the table (the oldest record).<br />You do not need to recall the Set method in subsequent calls, the batch ID is auto-incremented for each call.<br />The batch size is defaulted to 5,000 but can be extended to 100,000 by using the PageSize parameter in the Get method.The response time will be defined by the size of the batch requested.<br /></p>\n","_postman_id":"29b4076c-670f-4ad0-bbe2-4e34017a5829"},{"name":"CampaignApi","item":[{"name":"DispatchCampaignElements","id":"658be7f9-b63d-4a4c-a419-34ba0c159b70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CampaignID\": 1,\r\n  \"ListOfRecipients\": [\r\n    {\r\n      \"ChannelID\": 1,\r\n      \"SendDate\": \"2026-03-25T07:30:07.9492317+00:00\",\r\n      \"ChannelFieldValue\": \"sample string 3\",\r\n      \"CtcID\": 4,\r\n      \"MemberID\": 1,\r\n      \"PersonalizedFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"ChannelID\": 1,\r\n      \"SendDate\": \"2026-03-25T07:30:07.9492317+00:00\",\r\n      \"ChannelFieldValue\": \"sample string 3\",\r\n      \"CtcID\": 4,\r\n      \"MemberID\": 1,\r\n      \"PersonalizedFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ]\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/CampaignApi/DispatchCampaignElements","description":" <p>\n            Send Campaign Elements\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>DispatchCampainElementInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CampaignID</td><td>Int32</td><td></td><td>True</td></tr><tr><td>ListOfRecipients</td><td>List&lt;Recipient&gt;</td><td></td><td>True</td></tr><tr><td><h4>Recipient Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ChannelFieldValue</td><td>String</td><td></td><td>True</td></tr><tr><td>ChannelID</td><td>Int32</td><td></td><td>True</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the contact\n            Mandatory when the channel type is custom list</td><td>False</td></tr><tr><td>MemberID</td><td>Int32 (nullable)</td><td>The MemberID of the contact</td><td>False</td></tr><tr><td>PersonalizedFields</td><td>List&lt;PersonalizedField&gt;</td><td>Collection of the personalized fields</td><td>False</td></tr><tr><td>SendDate</td><td>DateTime</td><td>Send date(When empty the email should be sent immediately)</td><td>False</td></tr><tr><td><h4>PersonalizedField Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field Value</td><td>False</td></tr></table>","urlObject":{"protocol":"https","path":["api","CampaignApi","DispatchCampaignElements"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"19e89599-49b7-487f-9267-915a0376b886","name":"api/CampaignApi/DispatchCampaignElements Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CampaignID\": 1,\r\n  \"ListOfRecipients\": [\r\n    {\r\n      \"ChannelID\": 1,\r\n      \"SendDate\": \"2026-03-25T07:30:07.9492317+00:00\",\r\n      \"ChannelFieldValue\": \"sample string 3\",\r\n      \"CtcID\": 4,\r\n      \"MemberID\": 1,\r\n      \"PersonalizedFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"ChannelID\": 1,\r\n      \"SendDate\": \"2026-03-25T07:30:07.9492317+00:00\",\r\n      \"ChannelFieldValue\": \"sample string 3\",\r\n      \"CtcID\": 4,\r\n      \"MemberID\": 1,\r\n      \"PersonalizedFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ]\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/CampaignApi/DispatchCampaignElements","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Send Campaign Elements\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>DispatchCampainElementInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CampaignID</td><td>Int32</td><td></td><td>True</td></tr><tr><td>ListOfRecipients</td><td>List&lt;Recipient&gt;</td><td></td><td>True</td></tr><tr><td colspan=4><h4>Recipient Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ChannelFieldValue</td><td>String</td><td></td><td>True</td></tr><tr><td>ChannelID</td><td>Int32</td><td></td><td>True</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the contact\n            Mandatory when the channel type is custom list</td><td>False</td></tr><tr><td>MemberID</td><td>Int32 (nullable)</td><td>The MemberID of the contact</td><td>False</td></tr><tr><td>PersonalizedFields</td><td>List&lt;PersonalizedField&gt;</td><td>Collection of the personalized fields</td><td>False</td></tr><tr><td>SendDate</td><td>DateTime</td><td>Send date(When empty the email should be sent immediately)</td><td>False</td></tr><tr><td colspan=4><h4>PersonalizedField Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field Value</td><td>False</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"658be7f9-b63d-4a4c-a419-34ba0c159b70"}],"id":"72463196-f435-45e5-8ba4-cdce11ea0ce9","description":"<p>Api Methods for CampaignApi</p>\n","_postman_id":"72463196-f435-45e5-8ba4-cdce11ea0ce9"},{"name":"CommunicationPreference","item":[{"name":"Get","id":"8a81e4d6-5f0c-4dc0-a0bc-3e3e89292bd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/CommunicationPreference/Get?customerid=customerid-value","description":" <p>\n            Get the communication preferences of the requested customer\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>CommsPreferenceOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an Email</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td></td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a Web notification</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","CommunicationPreference","Get"],"host":["{{Host}}"],"query":[{"key":"customerid","value":"customerid-value"}],"variable":[]}},"response":[{"id":"47d2cccb-38e9-4e5f-9cf6-6eb72a929a5a","name":"api/CommunicationPreference/Get?customerid={customerid} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/CommunicationPreference/Get?customerid=customerid-value","protocol":"https","host":["{{Host}}"],"path":["api","CommunicationPreference","Get"],"query":[{"key":"customerid","value":"customerid-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get the communication preferences of the requested customer\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>CommsPreferenceOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an Email</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td></td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a Web notification</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"EmailOptin\": true,\r\n  \"SmsOptin\": true,\r\n  \"MailOptin\": true,\r\n  \"PhoneOptin\": true,\r\n  \"PushNotificationOptin\": true,\r\n  \"WhatsAppOptin\": true,\r\n  \"WebPushNotificationOptin\": true\r\n}"}],"_postman_id":"8a81e4d6-5f0c-4dc0-a0bc-3e3e89292bd0"},{"name":"Get","id":"e820823b-f197-4c5a-8001-24706ff883f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/CommunicationPreference/Get?customerid=customerid-value&BrandID=BrandID-value","description":" <p>\n            Get the communication preferences of the requested customer\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>CommsPreferenceOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an Email</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td></td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a Web notification</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","CommunicationPreference","Get"],"host":["{{Host}}"],"query":[{"key":"customerid","value":"customerid-value"},{"key":"BrandID","value":"BrandID-value"}],"variable":[]}},"response":[{"id":"531b56f0-716d-4c87-9053-6a18976a3700","name":"api/CommunicationPreference/Get?customerid={customerid}&BrandID={BrandID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/CommunicationPreference/Get?customerid=customerid-value&BrandID=BrandID-value","protocol":"https","host":["{{Host}}"],"path":["api","CommunicationPreference","Get"],"query":[{"key":"customerid","value":"customerid-value"},{"key":"BrandID","value":"BrandID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get the communication preferences of the requested customer\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>CommsPreferenceOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an Email</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td></td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a Web notification</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"EmailOptin\": true,\r\n  \"SmsOptin\": true,\r\n  \"MailOptin\": true,\r\n  \"PhoneOptin\": true,\r\n  \"PushNotificationOptin\": true,\r\n  \"WhatsAppOptin\": true,\r\n  \"WebPushNotificationOptin\": true\r\n}"}],"_postman_id":"e820823b-f197-4c5a-8001-24706ff883f8"},{"name":"Post","id":"3cde5184-6d41-4c06-950a-4c4e98545d96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"EmailOptin\": true,\r\n  \"SmsOptin\": true,\r\n  \"MailOptin\": true,\r\n  \"PhoneOptin\": true,\r\n  \"ChangeDate\": \"2026-03-25T07:30:07.9648287+00:00\",\r\n  \"SourceID\": \"sample string 2\",\r\n  \"BrandID\": 1,\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"PushNotificationOptin\": true,\r\n  \"WebPushNotificationOptin\": true\r\n}"},"url":"https://{{Host}}/api/CommunicationPreference/Post","description":" <p>\n            Set the communication preferences of the requested customer\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>CommsPreferenceInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The brand ID where the change should be applied</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>True</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","CommunicationPreference","Post"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"7b1f21cf-7dca-40bb-9db3-2e3b3fe1d40c","name":"api/CommunicationPreference/Post Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"EmailOptin\": true,\r\n  \"SmsOptin\": true,\r\n  \"MailOptin\": true,\r\n  \"PhoneOptin\": true,\r\n  \"ChangeDate\": \"2026-03-25T07:30:07.9648287+00:00\",\r\n  \"SourceID\": \"sample string 2\",\r\n  \"BrandID\": 1,\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"PushNotificationOptin\": true,\r\n  \"WebPushNotificationOptin\": true\r\n}"},"url":"https://{{Host}}/api/CommunicationPreference/Post","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Set the communication preferences of the requested customer\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CommsPreferenceInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The brand ID where the change should be applied</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>True</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"3cde5184-6d41-4c06-950a-4c4e98545d96"},{"name":"PostEmailOptin","id":"7dcbf3b5-b1e7-40d2-8122-f700c68035f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Email\": \"sample string 1\",\r\n  \"EmailOptin\": true,\r\n  \"ChangeDate\": \"2026-03-25T07:30:07.9804872+00:00\",\r\n  \"SourceID\": \"sample string 2\",\r\n  \"Brand\": \"sample string 3\",\r\n  \"IsHardBounce\": true\r\n}"},"url":"https://{{Host}}/api/CommunicationPreference/PostEmailOptin","description":" <p>\n            Post preferences of know contact\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>PostEmailOptinInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Brand</td><td>String</td><td>Brand name</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>The unique identifier of the customer in CRM side.</td><td>True</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td><td>False</td></tr><tr><td>IsHardBounce</td><td>Boolean</td><td>if the value is true the EmailOptin field will be ignored.</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the change</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","CommunicationPreference","PostEmailOptin"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"fcba5589-3173-4c77-bb23-690fe85edd44","name":"api/CommunicationPreference/PostEmailOptin Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Email\": \"sample string 1\",\r\n  \"EmailOptin\": true,\r\n  \"ChangeDate\": \"2026-03-25T07:30:07.9804872+00:00\",\r\n  \"SourceID\": \"sample string 2\",\r\n  \"Brand\": \"sample string 3\",\r\n  \"IsHardBounce\": true\r\n}"},"url":"https://{{Host}}/api/CommunicationPreference/PostEmailOptin","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post preferences of know contact\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PostEmailOptinInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Brand</td><td>String</td><td>Brand name</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>The unique identifier of the customer in CRM side.</td><td>True</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td><td>False</td></tr><tr><td>IsHardBounce</td><td>Boolean</td><td>if the value is true the EmailOptin field will be ignored.</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the change</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"7dcbf3b5-b1e7-40d2-8122-f700c68035f6"},{"name":"PostSmsOptin","id":"cdbabc15-ad3f-439a-89f1-6c95af1ee43a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"MobileNumber\": \"sample string 1\",\r\n  \"SmsOptin\": true,\r\n  \"ChangeDate\": \"2026-03-25T07:30:07.9804872+00:00\",\r\n  \"SourceID\": \"sample string 2\",\r\n  \"Brand\": \"sample string 3\"\r\n}"},"url":"https://{{Host}}/api/CommunicationPreference/PostSmsOptin","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>PostSmsOptinInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Brand</td><td>String</td><td>Brand ID</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>MobileNumber</td><td>String</td><td>The unique identifier of the customer in CRM side.</td><td>True</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an SMS</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the change</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","CommunicationPreference","PostSmsOptin"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"3a9ca6f5-7929-467a-a287-6f361d639861","name":"api/CommunicationPreference/PostSmsOptin Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"MobileNumber\": \"sample string 1\",\r\n  \"SmsOptin\": true,\r\n  \"ChangeDate\": \"2026-03-25T07:30:07.9804872+00:00\",\r\n  \"SourceID\": \"sample string 2\",\r\n  \"Brand\": \"sample string 3\"\r\n}"},"url":"https://{{Host}}/api/CommunicationPreference/PostSmsOptin","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PostSmsOptinInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Brand</td><td>String</td><td>Brand ID</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>MobileNumber</td><td>String</td><td>The unique identifier of the customer in CRM side.</td><td>True</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an SMS</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the change</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"cdbabc15-ad3f-439a-89f1-6c95af1ee43a"}],"id":"38d873ac-3971-4f00-bd9b-25295b7b578b","description":"<p>Api Methods for CommunicationPreference</p>\n","_postman_id":"38d873ac-3971-4f00-bd9b-25295b7b578b"},{"name":"Company","item":[{"name":"AddComment","id":"c8871763-df91-49f6-8db6-aed1bd6658e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcCpyID\": 1,\r\n  \"NoteUserID\": 2,\r\n  \"SourceNote\": 3,\r\n  \"Comment\": \"sample string 4\",\r\n  \"LastModifiedBy\": \"sample string 5\",\r\n  \"LastModifiedOn\": \"2026-03-25T07:30:08.0429929+00:00\",\r\n  \"AttachmentFilesList\": [\r\n    {\r\n      \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n      \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n      \"<FileName>k__BackingField\": \"sample string 3\",\r\n      \"<FileContent>k__BackingField\": \"sample string 4\",\r\n      \"<ContentType>k__BackingField\": \"sample string 5\",\r\n      \"<FileSize>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 1,\r\n      \"<HasContent>k__BackingField\": true\r\n    },\r\n    {\r\n      \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n      \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n      \"<FileName>k__BackingField\": \"sample string 3\",\r\n      \"<FileContent>k__BackingField\": \"sample string 4\",\r\n      \"<ContentType>k__BackingField\": \"sample string 5\",\r\n      \"<FileSize>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 1,\r\n      \"<HasContent>k__BackingField\": true\r\n    }\r\n  ],\r\n  \"AttachmentFilesListString\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"},"url":"https://{{Host}}/api/Company/AddComment","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr></table>","urlObject":{"protocol":"https","path":["api","Company","AddComment"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"69bedc7f-2457-442d-899c-37bc854fa394","name":"api/Company/AddComment Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcCpyID\": 1,\r\n  \"NoteUserID\": 2,\r\n  \"SourceNote\": 3,\r\n  \"Comment\": \"sample string 4\",\r\n  \"LastModifiedBy\": \"sample string 5\",\r\n  \"LastModifiedOn\": \"2026-03-25T07:30:08.0429929+00:00\",\r\n  \"AttachmentFilesList\": [\r\n    {\r\n      \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n      \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n      \"<FileName>k__BackingField\": \"sample string 3\",\r\n      \"<FileContent>k__BackingField\": \"sample string 4\",\r\n      \"<ContentType>k__BackingField\": \"sample string 5\",\r\n      \"<FileSize>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 1,\r\n      \"<HasContent>k__BackingField\": true\r\n    },\r\n    {\r\n      \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n      \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n      \"<FileName>k__BackingField\": \"sample string 3\",\r\n      \"<FileContent>k__BackingField\": \"sample string 4\",\r\n      \"<ContentType>k__BackingField\": \"sample string 5\",\r\n      \"<FileSize>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 1,\r\n      \"<HasContent>k__BackingField\": true\r\n    }\r\n  ],\r\n  \"AttachmentFilesListString\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"},"url":"https://{{Host}}/api/Company/AddComment","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c8871763-df91-49f6-8db6-aed1bd6658e5"},{"name":"DeleteCompany","id":"3811d0f5-6cb2-447a-ab31-abb578661f0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Company/DeleteCompany/:id","description":" <p>\n            Delete an existing Household/Company by its CpyID\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Company","DeleteCompany",":id"],"host":["{{Host}}"],"query":[],"variable":[{"id":"2f42f56f-f2b1-43dc-b3a1-b3faf10db81d","type":"any","key":"id"}]}},"response":[{"id":"2f0cc9ea-7f27-4a0a-8cf5-a8f69ae978bc","name":"api/Company/DeleteCompany/{id} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/Company/DeleteCompany/:id","protocol":"https","host":["{{Host}}"],"path":["api","Company","DeleteCompany",":id"],"variable":[{"key":"id"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Delete an existing Household/Company by its CpyID\r\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CpyID\": 1,\r\n  \"Name\": \"sample string 2\",\r\n  \"Building\": \"sample string 4\",\r\n  \"Street\": \"sample string 5\",\r\n  \"Zone\": \"sample string 6\",\r\n  \"City\": \"sample string 7\",\r\n  \"PostCode\": \"sample string 8\",\r\n  \"StateCode\": \"sample string 9\",\r\n  \"StateName\": \"sample string 10\",\r\n  \"CountryCode\": \"sample string 13\",\r\n  \"CountryName\": \"sample string 14\",\r\n  \"Phone\": \"sample string 15\",\r\n  \"Fax\": \"sample string 16\",\r\n  \"Web\": \"sample string 17\",\r\n  \"Email\": \"sample string 18\",\r\n  \"NationalID\": \"sample string 20\",\r\n  \"SourceID\": \"sample string 21\",\r\n  \"OriginID\": \"sample string 22\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.0586097+00:00\",\r\n  \"LastModifDate\": \"2026-03-25T07:30:08.0586097+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"CpyNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.0586097+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"3811d0f5-6cb2-447a-ab31-abb578661f0b"},{"name":"Get","id":"92823847-b14f-411a-90e8-1d9ea2beb30f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Company/Get/:id","description":" <p>\n            Search the database for one Household/Company using its CpyID \n            \n</p><h4>Response Payload</h4><table><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Company","Get",":id"],"host":["{{Host}}"],"query":[],"variable":[{"id":"9bc98480-e6c0-4e0f-8489-02d39289e32b","type":"any","key":"id"}]}},"response":[{"id":"6deb10b9-e5e9-4183-9bbd-b5a2d9421c27","name":"api/Company/Get/{id} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Company/Get/:id","protocol":"https","host":["{{Host}}"],"path":["api","Company","Get",":id"],"variable":[{"key":"id"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Search the database for one Household/Company using its CpyID \r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CpyID\": 1,\r\n  \"Name\": \"sample string 2\",\r\n  \"Building\": \"sample string 4\",\r\n  \"Street\": \"sample string 5\",\r\n  \"Zone\": \"sample string 6\",\r\n  \"City\": \"sample string 7\",\r\n  \"PostCode\": \"sample string 8\",\r\n  \"StateCode\": \"sample string 9\",\r\n  \"StateName\": \"sample string 10\",\r\n  \"CountryCode\": \"sample string 13\",\r\n  \"CountryName\": \"sample string 14\",\r\n  \"Phone\": \"sample string 15\",\r\n  \"Fax\": \"sample string 16\",\r\n  \"Web\": \"sample string 17\",\r\n  \"Email\": \"sample string 18\",\r\n  \"NationalID\": \"sample string 20\",\r\n  \"SourceID\": \"sample string 21\",\r\n  \"OriginID\": \"sample string 22\",\r\n  \"CreateDate\": \"2026-03-25T07:30:07.9961167+00:00\",\r\n  \"LastModifDate\": \"2026-03-25T07:30:07.9961167+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"CpyNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:07.9961167+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"92823847-b14f-411a-90e8-1d9ea2beb30f"},{"name":"GetCompanies","id":"d60dc872-e642-47d1-99e1-c2fb8ef71d46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Company/GetCompanies?criteria=criteria-value","description":" <p>\n            Search the database for Households/Companies using the Full Text Search engine \n            \n</p>","urlObject":{"protocol":"https","path":["api","Company","GetCompanies"],"host":["{{Host}}"],"query":[{"key":"criteria","value":"criteria-value"}],"variable":[]}},"response":[{"id":"a67a1531-5900-4326-acf9-a98c3ed654a8","name":"api/Company/GetCompanies?criteria={criteria} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Company/GetCompanies?criteria=criteria-value","protocol":"https","host":["{{Host}}"],"path":["api","Company","GetCompanies"],"query":[{"key":"criteria","value":"criteria-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Search the database for Households/Companies using the Full Text Search engine \r\n            \n</p></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"CpyID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Building\": \"sample string 4\",\r\n    \"Street\": \"sample string 5\",\r\n    \"Zone\": \"sample string 6\",\r\n    \"City\": \"sample string 7\",\r\n    \"PostCode\": \"sample string 8\",\r\n    \"StateCode\": \"sample string 9\",\r\n    \"StateName\": \"sample string 10\",\r\n    \"CountryCode\": \"sample string 13\",\r\n    \"CountryName\": \"sample string 14\",\r\n    \"Phone\": \"sample string 15\",\r\n    \"Fax\": \"sample string 16\",\r\n    \"Web\": \"sample string 17\",\r\n    \"Email\": \"sample string 18\",\r\n    \"NationalID\": \"sample string 20\",\r\n    \"SourceID\": \"sample string 21\",\r\n    \"OriginID\": \"sample string 22\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.0273653+00:00\",\r\n    \"LastModifDate\": \"2026-03-25T07:30:08.0273653+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"CpyNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.0273653+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ]\r\n  },\r\n  {\r\n    \"CpyID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Building\": \"sample string 4\",\r\n    \"Street\": \"sample string 5\",\r\n    \"Zone\": \"sample string 6\",\r\n    \"City\": \"sample string 7\",\r\n    \"PostCode\": \"sample string 8\",\r\n    \"StateCode\": \"sample string 9\",\r\n    \"StateName\": \"sample string 10\",\r\n    \"CountryCode\": \"sample string 13\",\r\n    \"CountryName\": \"sample string 14\",\r\n    \"Phone\": \"sample string 15\",\r\n    \"Fax\": \"sample string 16\",\r\n    \"Web\": \"sample string 17\",\r\n    \"Email\": \"sample string 18\",\r\n    \"NationalID\": \"sample string 20\",\r\n    \"SourceID\": \"sample string 21\",\r\n    \"OriginID\": \"sample string 22\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.0273653+00:00\",\r\n    \"LastModifDate\": \"2026-03-25T07:30:08.0273653+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"CpyNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.0273653+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ]\r\n  }\r\n]"}],"_postman_id":"d60dc872-e642-47d1-99e1-c2fb8ef71d46"},{"name":"PostCompany","id":"4e8ec395-c066-4940-8833-11568b78ad68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CpyID\": 1,\r\n  \"Name\": \"sample string 2\",\r\n  \"Building\": \"sample string 4\",\r\n  \"Street\": \"sample string 5\",\r\n  \"Zone\": \"sample string 6\",\r\n  \"City\": \"sample string 7\",\r\n  \"PostCode\": \"sample string 8\",\r\n  \"StateCode\": \"sample string 9\",\r\n  \"StateName\": \"sample string 10\",\r\n  \"CountryCode\": \"sample string 13\",\r\n  \"CountryName\": \"sample string 14\",\r\n  \"Phone\": \"sample string 15\",\r\n  \"Fax\": \"sample string 16\",\r\n  \"Web\": \"sample string 17\",\r\n  \"Email\": \"sample string 18\",\r\n  \"NationalID\": \"sample string 20\",\r\n  \"SourceID\": \"sample string 21\",\r\n  \"OriginID\": \"sample string 22\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.0429929+00:00\",\r\n  \"LastModifDate\": \"2026-03-25T07:30:08.0429929+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"CpyNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.0429929+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/Company/PostCompany","description":" <p>\n            Add a new Household/Company\n            The Household/Company will not be added if it matches an existing one.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Company","PostCompany"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"c4e0dd6b-0cd0-4eb8-9da5-e76d45319a3b","name":"api/Company/PostCompany Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CpyID\": 1,\r\n  \"Name\": \"sample string 2\",\r\n  \"Building\": \"sample string 4\",\r\n  \"Street\": \"sample string 5\",\r\n  \"Zone\": \"sample string 6\",\r\n  \"City\": \"sample string 7\",\r\n  \"PostCode\": \"sample string 8\",\r\n  \"StateCode\": \"sample string 9\",\r\n  \"StateName\": \"sample string 10\",\r\n  \"CountryCode\": \"sample string 13\",\r\n  \"CountryName\": \"sample string 14\",\r\n  \"Phone\": \"sample string 15\",\r\n  \"Fax\": \"sample string 16\",\r\n  \"Web\": \"sample string 17\",\r\n  \"Email\": \"sample string 18\",\r\n  \"NationalID\": \"sample string 20\",\r\n  \"SourceID\": \"sample string 21\",\r\n  \"OriginID\": \"sample string 22\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.0429929+00:00\",\r\n  \"LastModifDate\": \"2026-03-25T07:30:08.0429929+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"CpyNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.0429929+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/Company/PostCompany","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add a new Household/Company\r\n            The Household/Company will not be added if it matches an existing one.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CpyID\": 1,\r\n  \"Name\": \"sample string 2\",\r\n  \"Building\": \"sample string 4\",\r\n  \"Street\": \"sample string 5\",\r\n  \"Zone\": \"sample string 6\",\r\n  \"City\": \"sample string 7\",\r\n  \"PostCode\": \"sample string 8\",\r\n  \"StateCode\": \"sample string 9\",\r\n  \"StateName\": \"sample string 10\",\r\n  \"CountryCode\": \"sample string 13\",\r\n  \"CountryName\": \"sample string 14\",\r\n  \"Phone\": \"sample string 15\",\r\n  \"Fax\": \"sample string 16\",\r\n  \"Web\": \"sample string 17\",\r\n  \"Email\": \"sample string 18\",\r\n  \"NationalID\": \"sample string 20\",\r\n  \"SourceID\": \"sample string 21\",\r\n  \"OriginID\": \"sample string 22\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.0429929+00:00\",\r\n  \"LastModifDate\": \"2026-03-25T07:30:08.0429929+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"CpyNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.0429929+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"4e8ec395-c066-4940-8833-11568b78ad68"},{"name":"PutCompany","id":"1adb3b78-557c-4491-83a1-305aeca44614","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CpyID\": 1,\r\n  \"Name\": \"sample string 2\",\r\n  \"Building\": \"sample string 4\",\r\n  \"Street\": \"sample string 5\",\r\n  \"Zone\": \"sample string 6\",\r\n  \"City\": \"sample string 7\",\r\n  \"PostCode\": \"sample string 8\",\r\n  \"StateCode\": \"sample string 9\",\r\n  \"StateName\": \"sample string 10\",\r\n  \"CountryCode\": \"sample string 13\",\r\n  \"CountryName\": \"sample string 14\",\r\n  \"Phone\": \"sample string 15\",\r\n  \"Fax\": \"sample string 16\",\r\n  \"Web\": \"sample string 17\",\r\n  \"Email\": \"sample string 18\",\r\n  \"NationalID\": \"sample string 20\",\r\n  \"SourceID\": \"sample string 21\",\r\n  \"OriginID\": \"sample string 22\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.0586097+00:00\",\r\n  \"LastModifDate\": \"2026-03-25T07:30:08.0586097+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"CpyNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.0586097+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/Company/PutCompany","description":" <p>\n            Update an existing Household/Company\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Company","PutCompany"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"169491d2-6d9b-4d36-8652-4153ae5f551d","name":"api/Company/PutCompany Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CpyID\": 1,\r\n  \"Name\": \"sample string 2\",\r\n  \"Building\": \"sample string 4\",\r\n  \"Street\": \"sample string 5\",\r\n  \"Zone\": \"sample string 6\",\r\n  \"City\": \"sample string 7\",\r\n  \"PostCode\": \"sample string 8\",\r\n  \"StateCode\": \"sample string 9\",\r\n  \"StateName\": \"sample string 10\",\r\n  \"CountryCode\": \"sample string 13\",\r\n  \"CountryName\": \"sample string 14\",\r\n  \"Phone\": \"sample string 15\",\r\n  \"Fax\": \"sample string 16\",\r\n  \"Web\": \"sample string 17\",\r\n  \"Email\": \"sample string 18\",\r\n  \"NationalID\": \"sample string 20\",\r\n  \"SourceID\": \"sample string 21\",\r\n  \"OriginID\": \"sample string 22\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.0586097+00:00\",\r\n  \"LastModifDate\": \"2026-03-25T07:30:08.0586097+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"CpyNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.0586097+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/Company/PutCompany","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Update an existing Household/Company\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CpyID\": 1,\r\n  \"Name\": \"sample string 2\",\r\n  \"Building\": \"sample string 4\",\r\n  \"Street\": \"sample string 5\",\r\n  \"Zone\": \"sample string 6\",\r\n  \"City\": \"sample string 7\",\r\n  \"PostCode\": \"sample string 8\",\r\n  \"StateCode\": \"sample string 9\",\r\n  \"StateName\": \"sample string 10\",\r\n  \"CountryCode\": \"sample string 13\",\r\n  \"CountryName\": \"sample string 14\",\r\n  \"Phone\": \"sample string 15\",\r\n  \"Fax\": \"sample string 16\",\r\n  \"Web\": \"sample string 17\",\r\n  \"Email\": \"sample string 18\",\r\n  \"NationalID\": \"sample string 20\",\r\n  \"SourceID\": \"sample string 21\",\r\n  \"OriginID\": \"sample string 22\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.0586097+00:00\",\r\n  \"LastModifDate\": \"2026-03-25T07:30:08.0586097+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"CpyNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.0586097+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"1adb3b78-557c-4491-83a1-305aeca44614"}],"id":"86416d2a-114a-482a-a0fc-07d8cb500222","description":"<p>Api Methods for Company</p>\n","_postman_id":"86416d2a-114a-482a-a0fc-07d8cb500222"},{"name":"Contact(Deprecated)","item":[{"name":"AddCardToken","id":"6e40f9ea-a0f8-4211-a0a8-cb807b378cff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"CardToken\": \"sample string 1\"\r\n}"},"url":"https://{{Host}}/api/Contact/AddCardToken","description":" <p>\n            Add Card Token for a contact\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>CustomerCardTokenInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>CustomerCardTokenOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>IsValid</td><td>Boolean</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td>ValidationMsg</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","AddCardToken"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"f5eac432-87ab-4070-beea-c86a000961c2","name":"api/Contact/AddCardToken Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"CardToken\": \"sample string 1\"\r\n}"},"url":"https://{{Host}}/api/Contact/AddCardToken","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add Card Token for a contact\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CustomerCardTokenInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomerCardTokenOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>IsValid</td><td>Boolean</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td>ValidationMsg</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"IsValid\": true,\r\n  \"ValidationMsg\": \"sample string 2\",\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 4\"\r\n}"}],"_postman_id":"6e40f9ea-a0f8-4211-a0a8-cb807b378cff"},{"name":"AddComment","id":"7ae42f76-ba0e-459a-81ff-2920b75e9b41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcCpyID\": 1,\r\n  \"NoteUserID\": 2,\r\n  \"SourceNote\": 3,\r\n  \"Comment\": \"sample string 4\",\r\n  \"LastModifiedBy\": \"sample string 5\",\r\n  \"LastModifiedOn\": \"2026-03-25T07:30:08.2158377+00:00\",\r\n  \"AttachmentFilesList\": [\r\n    {\r\n      \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n      \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n      \"<FileName>k__BackingField\": \"sample string 3\",\r\n      \"<FileContent>k__BackingField\": \"sample string 4\",\r\n      \"<ContentType>k__BackingField\": \"sample string 5\",\r\n      \"<FileSize>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 1,\r\n      \"<HasContent>k__BackingField\": true\r\n    },\r\n    {\r\n      \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n      \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n      \"<FileName>k__BackingField\": \"sample string 3\",\r\n      \"<FileContent>k__BackingField\": \"sample string 4\",\r\n      \"<ContentType>k__BackingField\": \"sample string 5\",\r\n      \"<FileSize>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 1,\r\n      \"<HasContent>k__BackingField\": true\r\n    }\r\n  ],\r\n  \"AttachmentFilesListString\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"},"url":"https://{{Host}}/api/Contact/AddComment","description":" <p>\n            Add comment to the requested customer\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","AddComment"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"6fffd83d-49f3-4343-b691-949e6295f797","name":"api/Contact/AddComment Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcCpyID\": 1,\r\n  \"NoteUserID\": 2,\r\n  \"SourceNote\": 3,\r\n  \"Comment\": \"sample string 4\",\r\n  \"LastModifiedBy\": \"sample string 5\",\r\n  \"LastModifiedOn\": \"2026-03-25T07:30:08.2158377+00:00\",\r\n  \"AttachmentFilesList\": [\r\n    {\r\n      \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n      \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n      \"<FileName>k__BackingField\": \"sample string 3\",\r\n      \"<FileContent>k__BackingField\": \"sample string 4\",\r\n      \"<ContentType>k__BackingField\": \"sample string 5\",\r\n      \"<FileSize>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 1,\r\n      \"<HasContent>k__BackingField\": true\r\n    },\r\n    {\r\n      \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n      \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n      \"<FileName>k__BackingField\": \"sample string 3\",\r\n      \"<FileContent>k__BackingField\": \"sample string 4\",\r\n      \"<ContentType>k__BackingField\": \"sample string 5\",\r\n      \"<FileSize>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 1,\r\n      \"<HasContent>k__BackingField\": true\r\n    }\r\n  ],\r\n  \"AttachmentFilesListString\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"},"url":"https://{{Host}}/api/Contact/AddComment","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add comment to the requested customer\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7ae42f76-ba0e-459a-81ff-2920b75e9b41"},{"name":"AddMemberNumber","id":"073eb19d-aaec-4611-b13c-892913071441","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/AddMemberNumber?CtcID=CtcID-value","description":" <p>\n            Add member number for a contact\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>AddMemberNumberOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>MemberNumber</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","AddMemberNumber"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"}],"variable":[]}},"response":[{"id":"1ce5cd2a-6df6-44d9-becf-e871418dcaa8","name":"api/Contact/AddMemberNumber?CtcID={CtcID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/AddMemberNumber?CtcID=CtcID-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","AddMemberNumber"],"query":[{"key":"CtcID","value":"CtcID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add member number for a contact\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>AddMemberNumberOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>MemberNumber</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"MemberNumber\": \"sample string 2\",\r\n  \"Error\": \"sample string 3\"\r\n}"}],"_postman_id":"073eb19d-aaec-4611-b13c-892913071441"},{"name":"AuthenticateCustomer","id":"f720234a-dc0c-470e-98be-9683befa88e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Email\": \"sample string 1\",\r\n  \"Password\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Contact/AuthenticateCustomer","description":" <p>\n            Authenticate customer\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>ContactAuthenticationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Email</td><td>String</td><td>Customer Email</td><td>False</td></tr><tr><td>Password</td><td>String</td><td>Customer Password</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>AuthenticatedCustomerOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>IsAuthenticated</td><td>Boolean</td><td>The status of the authentication</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","AuthenticateCustomer"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"7d66601f-defd-421f-9b8b-92e28d8deea8","name":"api/Contact/AuthenticateCustomer Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Email\": \"sample string 1\",\r\n  \"Password\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Contact/AuthenticateCustomer","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Authenticate customer\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ContactAuthenticationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Email</td><td>String</td><td>Customer Email</td><td>False</td></tr><tr><td>Password</td><td>String</td><td>Customer Password</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>AuthenticatedCustomerOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>IsAuthenticated</td><td>Boolean</td><td>The status of the authentication</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"IsAuthenticated\": true,\r\n  \"Error\": \"sample string 3\"\r\n}"}],"_postman_id":"f720234a-dc0c-470e-98be-9683befa88e6"},{"name":"DeleteContact","id":"58156d67-1b7d-4ceb-a681-e5fb5ddce3a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Contact/DeleteContact/:id","description":" <p>\n            Delete an existing contact by its CtcID\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","DeleteContact",":id"],"host":["{{Host}}"],"query":[],"variable":[{"id":"74fb08fc-5aa4-42f5-b7d5-56ac9cc8da82","type":"any","key":"id"}]}},"response":[{"id":"677ab2e2-ae99-4556-98f1-b1626d31896b","name":"api/Contact/DeleteContact/{id} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/Contact/DeleteContact/:id","protocol":"https","host":["{{Host}}"],"path":["api","Contact","DeleteContact",":id"],"variable":[{"key":"id"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Delete an existing contact by its CtcID\r\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td colspan=3><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CtcID\": 1,\r\n  \"LastName\": \"sample string 2\",\r\n  \"CpyID\": 3,\r\n  \"PositionFreeText\": \"sample string 7\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n  \"ModifDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"SourceID\": \"sample string 10\",\r\n  \"OriginID\": \"sample string 11\",\r\n  \"DoNotExport\": true,\r\n  \"ParentEmailAddress\": \"sample string 14\",\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"Company\": {\r\n    \"CpyID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Building\": \"sample string 4\",\r\n    \"Street\": \"sample string 5\",\r\n    \"Zone\": \"sample string 6\",\r\n    \"City\": \"sample string 7\",\r\n    \"PostCode\": \"sample string 8\",\r\n    \"StateCode\": \"sample string 9\",\r\n    \"StateName\": \"sample string 10\",\r\n    \"CountryCode\": \"sample string 13\",\r\n    \"CountryName\": \"sample string 14\",\r\n    \"Phone\": \"sample string 15\",\r\n    \"Fax\": \"sample string 16\",\r\n    \"Web\": \"sample string 17\",\r\n    \"Email\": \"sample string 18\",\r\n    \"NationalID\": \"sample string 20\",\r\n    \"SourceID\": \"sample string 21\",\r\n    \"OriginID\": \"sample string 22\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n    \"LastModifDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"CpyNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ]\r\n  },\r\n  \"CtcNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Gender\": null,\r\n  \"PredefinedGender\": 0,\r\n  \"ProcessMydata\": true,\r\n  \"DeleteMyData\": true,\r\n  \"HomeSiteID\": \"sample string 20\",\r\n  \"BrandID\": 1,\r\n  \"MemberNumbersList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CurrentMemberNumber\": \"sample string 21\",\r\n  \"CardTokensList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CardToken\": \"sample string 22\",\r\n  \"CurrentReferrerCode\": \"sample string 23\",\r\n  \"ReferrerCodeList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"ReferredByCode\": \"sample string 24\",\r\n  \"ReferrerCode\": \"sample string 25\",\r\n  \"UpdateIfPopulated\": true,\r\n  \"IsLeadCtc\": true,\r\n  \"IsFinanceCtc\": true,\r\n  \"CorporateName\": \"sample string 29\",\r\n  \"CorporateJobTitle\": 30,\r\n  \"Picture\": \"QEA=\",\r\n  \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"ContactSpendInLast12Months\": \"sample string 31\",\r\n  \"_Title\": \"sample string 33\",\r\n  \"FirstName\": \"sample string 34\",\r\n  \"Phone\": \"sample string 35\",\r\n  \"MobilPhone\": \"sample string 36\",\r\n  \"Email\": \"sample string 37\",\r\n  \"BirthDate\": \"2026-03-25T07:30:08.3095921+00:00\"\r\n}"}],"_postman_id":"58156d67-1b7d-4ceb-a681-e5fb5ddce3a5"},{"name":"FindByOriginID","id":"f37474c4-9c59-44d5-a453-4e2fd08ac3ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/FindByOriginID?OriginID=OriginID-value","description":" <p>\n            Search customer by origin ID\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>FindByOriginIDOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>MD5</td><td>String</td><td></td></tr><tr><td>SourceID</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","FindByOriginID"],"host":["{{Host}}"],"query":[{"key":"OriginID","value":"OriginID-value"}],"variable":[]}},"response":[{"id":"c1cfc7d9-1a7b-4ef9-aee0-d0932ada9978","name":"api/Contact/FindByOriginID?OriginID={OriginID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/FindByOriginID?OriginID=OriginID-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","FindByOriginID"],"query":[{"key":"OriginID","value":"OriginID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Search customer by origin ID\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>FindByOriginIDOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>MD5</td><td>String</td><td></td></tr><tr><td>SourceID</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"CtcID\": 1,\r\n    \"MD5\": \"sample string 2\",\r\n    \"SourceID\": \"sample string 3\"\r\n  },\r\n  {\r\n    \"CtcID\": 1,\r\n    \"MD5\": \"sample string 2\",\r\n    \"SourceID\": \"sample string 3\"\r\n  }\r\n]"}],"_postman_id":"f37474c4-9c59-44d5-a453-4e2fd08ac3ee"},{"name":"FindByOriginIDAndSourceID","id":"f40256de-fdc3-49ef-9927-b1b063c6ce11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OriginID\": \"sample string 1\",\r\n  \"SourceID\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Contact/FindByOriginIDAndSourceID","description":" <p>\n            Search customer by origin ID\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>SourceOriginID Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ContactExtendedOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Md5</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","FindByOriginIDAndSourceID"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"4b6b90a1-2245-4c63-b7a0-2bcb862de9f1","name":"api/Contact/FindByOriginIDAndSourceID Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OriginID\": \"sample string 1\",\r\n  \"SourceID\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Contact/FindByOriginIDAndSourceID","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Search customer by origin ID\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>SourceOriginID Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactExtendedOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Md5</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"CtcID\": 2,\r\n  \"Md5\": \"sample string 3\",\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"f40256de-fdc3-49ef-9927-b1b063c6ce11"},{"name":"FindByVoucherCode","id":"64b7981d-b993-432a-8f6b-be1b719619d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/FindByVoucherCode?VoucherCode=VoucherCode-value","description":" <p>\n            Search customer by voucher code\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ContactExtendedOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Md5</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","FindByVoucherCode"],"host":["{{Host}}"],"query":[{"key":"VoucherCode","value":"VoucherCode-value"}],"variable":[]}},"response":[{"id":"0ea84695-f3ee-4cb7-9375-dc8d2a6a8eb2","name":"api/Contact/FindByVoucherCode?VoucherCode={VoucherCode} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/FindByVoucherCode?VoucherCode=VoucherCode-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","FindByVoucherCode"],"query":[{"key":"VoucherCode","value":"VoucherCode-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Search customer by voucher code\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactExtendedOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Md5</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"CtcID\": 2,\r\n  \"Md5\": \"sample string 3\",\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"64b7981d-b993-432a-8f6b-be1b719619d9"},{"name":"FindContactByMemberNumber","id":"3e96e69a-09fe-4c31-916c-8638f17b71c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/FindContactByMemberNumber?MemberNumber=MemberNumber-value","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>FindContactByMemberNumberOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","FindContactByMemberNumber"],"host":["{{Host}}"],"query":[{"key":"MemberNumber","value":"MemberNumber-value"}],"variable":[]}},"response":[{"id":"aeb12432-e5da-49ca-9d59-0aa9454ce8cb","name":"api/Contact/FindContactByMemberNumber?MemberNumber={MemberNumber} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/FindContactByMemberNumber?MemberNumber=MemberNumber-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","FindContactByMemberNumber"],"query":[{"key":"MemberNumber","value":"MemberNumber-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>FindContactByMemberNumberOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"CtcID\": 2,\r\n  \"Error\": \"sample string 3\"\r\n}"}],"_postman_id":"3e96e69a-09fe-4c31-916c-8638f17b71c8"},{"name":"Get","id":"d191c9fd-3367-4fa7-a45c-a4410c9b5cde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/Get/:id","description":" <p>\n            Search the database for one Contact using its CtcID \n            \n</p><h4>Response Payload</h4><table><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","Get",":id"],"host":["{{Host}}"],"query":[],"variable":[{"id":"acb3b514-e18c-41c2-b7d8-77040475accf","type":"any","key":"id"}]}},"response":[{"id":"5d2489ab-3367-4ed3-b9fb-acec2f7eba79","name":"api/Contact/Get/{id} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/Get/:id","protocol":"https","host":["{{Host}}"],"path":["api","Contact","Get",":id"],"variable":[{"key":"id"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Search the database for one Contact using its CtcID \r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td colspan=3><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CtcID\": 1,\r\n  \"LastName\": \"sample string 2\",\r\n  \"CpyID\": 3,\r\n  \"PositionFreeText\": \"sample string 7\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.089856+00:00\",\r\n  \"ModifDate\": \"2026-03-25T07:30:08.089856+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"SourceID\": \"sample string 10\",\r\n  \"OriginID\": \"sample string 11\",\r\n  \"DoNotExport\": true,\r\n  \"ParentEmailAddress\": \"sample string 14\",\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"Company\": {\r\n    \"CpyID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Building\": \"sample string 4\",\r\n    \"Street\": \"sample string 5\",\r\n    \"Zone\": \"sample string 6\",\r\n    \"City\": \"sample string 7\",\r\n    \"PostCode\": \"sample string 8\",\r\n    \"StateCode\": \"sample string 9\",\r\n    \"StateName\": \"sample string 10\",\r\n    \"CountryCode\": \"sample string 13\",\r\n    \"CountryName\": \"sample string 14\",\r\n    \"Phone\": \"sample string 15\",\r\n    \"Fax\": \"sample string 16\",\r\n    \"Web\": \"sample string 17\",\r\n    \"Email\": \"sample string 18\",\r\n    \"NationalID\": \"sample string 20\",\r\n    \"SourceID\": \"sample string 21\",\r\n    \"OriginID\": \"sample string 22\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.1054828+00:00\",\r\n    \"LastModifDate\": \"2026-03-25T07:30:08.1054828+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"CpyNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.1054828+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ]\r\n  },\r\n  \"CtcNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.1054828+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Gender\": null,\r\n  \"PredefinedGender\": 0,\r\n  \"ProcessMydata\": true,\r\n  \"DeleteMyData\": true,\r\n  \"HomeSiteID\": \"sample string 20\",\r\n  \"BrandID\": 1,\r\n  \"MemberNumbersList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CurrentMemberNumber\": \"sample string 21\",\r\n  \"CardTokensList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CardToken\": \"sample string 22\",\r\n  \"CurrentReferrerCode\": \"sample string 23\",\r\n  \"ReferrerCodeList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"ReferredByCode\": \"sample string 24\",\r\n  \"ReferrerCode\": \"sample string 25\",\r\n  \"UpdateIfPopulated\": true,\r\n  \"IsLeadCtc\": true,\r\n  \"IsFinanceCtc\": true,\r\n  \"CorporateName\": \"sample string 29\",\r\n  \"CorporateJobTitle\": 30,\r\n  \"Picture\": \"QEA=\",\r\n  \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"ContactSpendInLast12Months\": \"sample string 31\",\r\n  \"_Title\": \"sample string 33\",\r\n  \"FirstName\": \"sample string 34\",\r\n  \"Phone\": \"sample string 35\",\r\n  \"MobilPhone\": \"sample string 36\",\r\n  \"Email\": \"sample string 37\",\r\n  \"BirthDate\": \"2026-03-25T07:30:08.1054828+00:00\"\r\n}"}],"_postman_id":"d191c9fd-3367-4fa7-a45c-a4410c9b5cde"},{"name":"GetContactIDsByEmail","id":"6a217d83-4c27-4a49-8095-a02d3d7c5316","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetContactIDsByEmail?Email=Email-value","description":" <p>\n            Get customer ID(CtcID) and MD5 by Email\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ContactIDsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcIDs</td><td>List&lt;ContactIDs&gt;</td><td>List of contact IDS</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td><h4>ContactIDs Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>MD5</td><td>String</td><td>The MD5</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","GetContactIDsByEmail"],"host":["{{Host}}"],"query":[{"key":"Email","value":"Email-value"}],"variable":[]}},"response":[{"id":"c792b5bb-0d9b-4ef8-bd2e-260a0ca9afe9","name":"api/Contact/GetContactIDsByEmail?Email={Email} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/GetContactIDsByEmail?Email=Email-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","GetContactIDsByEmail"],"query":[{"key":"Email","value":"Email-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get customer ID(CtcID) and MD5 by Email\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactIDsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcIDs</td><td>List&lt;ContactIDs&gt;</td><td>List of contact IDS</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td colspan=3><h4>ContactIDs Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>MD5</td><td>String</td><td>The MD5</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"CtcIDs\": [\r\n    {\r\n      \"CtcID\": 1,\r\n      \"MD5\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"CtcID\": 1,\r\n      \"MD5\": \"sample string 2\"\r\n    }\r\n  ],\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"6a217d83-4c27-4a49-8095-a02d3d7c5316"},{"name":"GetContactIDsByMobilePhone","id":"008c91e0-df6f-4cf5-b9f2-8036404b5b44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetContactIDsByMobilePhone?MobilePhone=MobilePhone-value","description":" <p>\n            Get list of customers (CtcID and MD5) sharing the same Mobile Phone\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ContactIDsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcIDs</td><td>List&lt;ContactIDs&gt;</td><td>List of contact IDS</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td><h4>ContactIDs Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>MD5</td><td>String</td><td>The MD5</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","GetContactIDsByMobilePhone"],"host":["{{Host}}"],"query":[{"key":"MobilePhone","value":"MobilePhone-value"}],"variable":[]}},"response":[{"id":"10dbc0e7-bc24-4ad0-9d69-7a55a730c6d5","name":"api/Contact/GetContactIDsByMobilePhone?MobilePhone={MobilePhone} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/GetContactIDsByMobilePhone?MobilePhone=MobilePhone-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","GetContactIDsByMobilePhone"],"query":[{"key":"MobilePhone","value":"MobilePhone-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get list of customers (CtcID and MD5) sharing the same Mobile Phone\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactIDsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcIDs</td><td>List&lt;ContactIDs&gt;</td><td>List of contact IDS</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td colspan=3><h4>ContactIDs Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>MD5</td><td>String</td><td>The MD5</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"CtcIDs\": [\r\n    {\r\n      \"CtcID\": 1,\r\n      \"MD5\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"CtcID\": 1,\r\n      \"MD5\": \"sample string 2\"\r\n    }\r\n  ],\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"008c91e0-df6f-4cf5-b9f2-8036404b5b44"},{"name":"GetContactIDsBySupInfo","id":"637a9e92-df39-4bc0-b329-649b7756c1ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetContactIDsBySupInfo?SupInfoField=SupInfoField-value&SupInfoValue=SupInfoValue-value","description":" <p>\n            Get list of customers (CtcID and MD5) sharing the same Sup Info field\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ContactIDsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcIDs</td><td>List&lt;ContactIDs&gt;</td><td>List of contact IDS</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td><h4>ContactIDs Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>MD5</td><td>String</td><td>The MD5</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","GetContactIDsBySupInfo"],"host":["{{Host}}"],"query":[{"key":"SupInfoField","value":"SupInfoField-value"},{"key":"SupInfoValue","value":"SupInfoValue-value"}],"variable":[]}},"response":[{"id":"30489550-834b-49ac-b270-1c20b10594b3","name":"api/Contact/GetContactIDsBySupInfo?SupInfoField={SupInfoField}&SupInfoValue={SupInfoValue} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/GetContactIDsBySupInfo?SupInfoField=SupInfoField-value&SupInfoValue=SupInfoValue-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","GetContactIDsBySupInfo"],"query":[{"key":"SupInfoField","value":"SupInfoField-value"},{"key":"SupInfoValue","value":"SupInfoValue-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get list of customers (CtcID and MD5) sharing the same Sup Info field\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactIDsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcIDs</td><td>List&lt;ContactIDs&gt;</td><td>List of contact IDS</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td colspan=3><h4>ContactIDs Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>MD5</td><td>String</td><td>The MD5</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"CtcIDs\": [\r\n    {\r\n      \"CtcID\": 1,\r\n      \"MD5\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"CtcID\": 1,\r\n      \"MD5\": \"sample string 2\"\r\n    }\r\n  ],\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"637a9e92-df39-4bc0-b329-649b7756c1ff"},{"name":"GetContactNodes","id":"f8bd439b-9638-410b-8ec6-f47d103faeff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetContactNodes/:ID?ParentNodeCode=ParentNodeCode-value","description":" <p>\n            Retrieves a contact’s nodes status for a specific parent node in the tree \n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ContactPreference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Name</td><td>String</td><td>Description of the node</td></tr><tr><td>NodeCode</td><td>Int32</td><td>The ID of the node</td></tr><tr><td>Status</td><td>Boolean</td><td>True if it's flagged ; False if not</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","GetContactNodes",":ID"],"host":["{{Host}}"],"query":[{"key":"ParentNodeCode","value":"ParentNodeCode-value"}],"variable":[{"id":"a42f95b9-a12d-4ca9-98cb-7702e9ca521f","type":"any","key":"ID"}]}},"response":[{"id":"7667802c-458a-4870-b0ab-1b677a560b9f","name":"api/Contact/GetContactNodes/{ID}?ParentNodeCode={ParentNodeCode} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/GetContactNodes/:ID?ParentNodeCode=ParentNodeCode-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","GetContactNodes",":ID"],"query":[{"key":"ParentNodeCode","value":"ParentNodeCode-value"}],"variable":[{"key":"ID"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Retrieves a contact’s nodes status for a specific parent node in the tree \r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactPreference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Name</td><td>String</td><td>Description of the node</td></tr><tr><td>NodeCode</td><td>Int32</td><td>The ID of the node</td></tr><tr><td>Status</td><td>Boolean</td><td>True if it's flagged ; False if not</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"NodeCode\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Status\": true\r\n  },\r\n  {\r\n    \"NodeCode\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Status\": true\r\n  }\r\n]"}],"_postman_id":"f8bd439b-9638-410b-8ec6-f47d103faeff"},{"name":"GetContactNodesHiddenExcluded","id":"95f36831-058b-4c5e-9352-7cbbfed4d9fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetContactNodesHiddenExcluded/:ID?ParentNodeCode=ParentNodeCode-value","description":" <p>\n            Retrieves a contact's nodes status for a specific parent node in the tree \n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ContactPreferenceHiddenExcluded Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsHiddenInAPI</td><td>Boolean</td><td>True if it's flagged as Hidden in API</td></tr><tr><td>Name</td><td>String</td><td>Description of the node</td></tr><tr><td>NodeCode</td><td>Int32</td><td>The ID of the node</td></tr><tr><td>Status</td><td>Boolean</td><td>True if it's flagged ; False if not</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","GetContactNodesHiddenExcluded",":ID"],"host":["{{Host}}"],"query":[{"key":"ParentNodeCode","value":"ParentNodeCode-value"}],"variable":[{"id":"b935b169-b6c2-4934-9e22-0a5088274828","type":"any","key":"ID"}]}},"response":[{"id":"f512eb0a-3e64-4f6f-a7c6-64cdb4cf709a","name":"api/Contact/GetContactNodesHiddenExcluded/{ID}?ParentNodeCode={ParentNodeCode} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/GetContactNodesHiddenExcluded/:ID?ParentNodeCode=ParentNodeCode-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","GetContactNodesHiddenExcluded",":ID"],"query":[{"key":"ParentNodeCode","value":"ParentNodeCode-value"}],"variable":[{"key":"ID"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Retrieves a contact's nodes status for a specific parent node in the tree \r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactPreferenceHiddenExcluded Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsHiddenInAPI</td><td>Boolean</td><td>True if it's flagged as Hidden in API</td></tr><tr><td>Name</td><td>String</td><td>Description of the node</td></tr><tr><td>NodeCode</td><td>Int32</td><td>The ID of the node</td></tr><tr><td>Status</td><td>Boolean</td><td>True if it's flagged ; False if not</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"IsHiddenInAPI\": true,\r\n    \"NodeCode\": 2,\r\n    \"Name\": \"sample string 3\",\r\n    \"Status\": true\r\n  },\r\n  {\r\n    \"IsHiddenInAPI\": true,\r\n    \"NodeCode\": 2,\r\n    \"Name\": \"sample string 3\",\r\n    \"Status\": true\r\n  }\r\n]"}],"_postman_id":"95f36831-058b-4c5e-9352-7cbbfed4d9fe"},{"name":"GetContactPreferredSiteDetails","id":"3ae93f3f-a053-4bb8-976f-71ff7cae2786","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetContactPreferredSiteDetails?CtcID=CtcID-value","description":" <p>\n            Get Preferred site details by customer\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>Contact_PreferredSiteDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Address</td><td>String</td><td>The Preferred Site Address</td></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>ImageURL</td><td>String</td><td>The Preferred Site Image URL</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>SiteID</td><td>Int32 (nullable)</td><td>The Preferred SiteID</td></tr><tr><td>SiteName</td><td>String</td><td>The Preferred Site Name</td></tr><tr><td>Telephone</td><td>String</td><td>The Preferred Site Telephone</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","GetContactPreferredSiteDetails"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"}],"variable":[]}},"response":[{"id":"839791b1-68aa-462c-90bd-e7effa171127","name":"api/Contact/GetContactPreferredSiteDetails?CtcID={CtcID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/GetContactPreferredSiteDetails?CtcID=CtcID-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","GetContactPreferredSiteDetails"],"query":[{"key":"CtcID","value":"CtcID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Preferred site details by customer\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>Contact_PreferredSiteDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Address</td><td>String</td><td>The Preferred Site Address</td></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>ImageURL</td><td>String</td><td>The Preferred Site Image URL</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>SiteID</td><td>Int32 (nullable)</td><td>The Preferred SiteID</td></tr><tr><td>SiteName</td><td>String</td><td>The Preferred Site Name</td></tr><tr><td>Telephone</td><td>String</td><td>The Preferred Site Telephone</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\",\r\n  \"CtcID\": 3,\r\n  \"SiteID\": 1,\r\n  \"SiteName\": \"sample string 4\",\r\n  \"ImageURL\": \"sample string 5\",\r\n  \"Address\": \"sample string 6\",\r\n  \"Telephone\": \"sample string 7\"\r\n}"}],"_postman_id":"3ae93f3f-a053-4bb8-976f-71ff7cae2786"},{"name":"GetContacts","id":"83ab09fd-bc9e-4bfa-a0e8-d1cd7f6b49eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetContacts?criteria=criteria-value","description":" <p>\n            Search the database for Contacts using the Full Text Search engine \n            \n</p>","urlObject":{"protocol":"https","path":["api","Contact","GetContacts"],"host":["{{Host}}"],"query":[{"key":"criteria","value":"criteria-value"}],"variable":[]}},"response":[{"id":"ea7ec6ba-054b-421b-887b-f9cbc80d9449","name":"api/Contact/GetContacts?criteria={criteria} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/GetContacts?criteria=criteria-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","GetContacts"],"query":[{"key":"criteria","value":"criteria-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Search the database for Contacts using the Full Text Search engine \r\n            \n</p></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.1689688+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:08.1689688+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.1689688+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:08.1689688+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:08.1689688+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.1689688+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.1689688+00:00\"\r\n  },\r\n  {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.1689688+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:08.1689688+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.1689688+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:08.1689688+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:08.1689688+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.1689688+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.1689688+00:00\"\r\n  }\r\n]"}],"_postman_id":"83ab09fd-bc9e-4bfa-a0e8-d1cd7f6b49eb"},{"name":"GetCtcIDByMD5","id":"3418dddf-d028-4e37-aaec-98905804fd73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetCtcIDByMD5?MD5=MD5-value","description":" <p>\n            Get Unique CtcID by MD5\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>CtcIDMd5Output Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>MD5</td><td>String</td><td>The MD5</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","GetCtcIDByMD5"],"host":["{{Host}}"],"query":[{"key":"MD5","value":"MD5-value"}],"variable":[]}},"response":[{"id":"6be4dc63-8d12-4236-b367-c55ceb9337f9","name":"api/Contact/GetCtcIDByMD5?MD5={MD5} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/GetCtcIDByMD5?MD5=MD5-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","GetCtcIDByMD5"],"query":[{"key":"MD5","value":"MD5-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Unique CtcID by MD5\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>CtcIDMd5Output Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>MD5</td><td>String</td><td>The MD5</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"CtcID\": 2,\r\n  \"MD5\": \"sample string 3\",\r\n  \"Error\": \"sample string 4\"\r\n}"}],"_postman_id":"3418dddf-d028-4e37-aaec-98905804fd73"},{"name":"GetCustomerIDByCardToken","id":"01944132-39e5-4b10-882e-5f78a6baae95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetCustomerIDByCardToken?CardToken=CardToken-value","description":" <p>\n            Get Contact CustomerID by Card Token\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>CustomerCardTokenOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>IsValid</td><td>Boolean</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td>ValidationMsg</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","GetCustomerIDByCardToken"],"host":["{{Host}}"],"query":[{"key":"CardToken","value":"CardToken-value"}],"variable":[]}},"response":[{"id":"9fdf89a6-ff10-4915-92e7-9f0a7044345e","name":"api/Contact/GetCustomerIDByCardToken?CardToken={CardToken} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/GetCustomerIDByCardToken?CardToken=CardToken-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","GetCustomerIDByCardToken"],"query":[{"key":"CardToken","value":"CardToken-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Contact CustomerID by Card Token\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomerCardTokenOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>IsValid</td><td>Boolean</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td>ValidationMsg</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"IsValid\": true,\r\n  \"ValidationMsg\": \"sample string 2\",\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 4\"\r\n}"}],"_postman_id":"01944132-39e5-4b10-882e-5f78a6baae95"},{"name":"GetErasedContacts","id":"94872b5c-cc54-4184-ad45-8443dccf0b88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetErasedContacts","description":" <p>\n            Get erased customer IDs\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ErasedContacts Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErasedCustomers</td><td>List&lt;ErasedContact&gt;</td><td>List of contact IDS</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td><h4>ErasedContact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>HashedEmail</td><td>String</td><td>Hashed Email Address</td></tr><tr><td>HashedMobile</td><td>String</td><td>Hashed Mobile Phone</td></tr><tr><td>OriginID</td><td>String</td><td>Origin ID</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","GetErasedContacts"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"22b75238-3089-4fb3-8c3d-daeac23a4796","name":"api/Contact/GetErasedContacts Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetErasedContacts","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get erased customer IDs\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ErasedContacts Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErasedCustomers</td><td>List&lt;ErasedContact&gt;</td><td>List of contact IDS</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td colspan=3><h4>ErasedContact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>HashedEmail</td><td>String</td><td>Hashed Email Address</td></tr><tr><td>HashedMobile</td><td>String</td><td>Hashed Mobile Phone</td></tr><tr><td>OriginID</td><td>String</td><td>Origin ID</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"ErasedCustomers\": [\r\n    {\r\n      \"CtcID\": 1,\r\n      \"OriginID\": \"sample string 2\",\r\n      \"HashedEmail\": \"sample string 3\",\r\n      \"HashedMobile\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"CtcID\": 1,\r\n      \"OriginID\": \"sample string 2\",\r\n      \"HashedEmail\": \"sample string 3\",\r\n      \"HashedMobile\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"94872b5c-cc54-4184-ad45-8443dccf0b88"},{"name":"GetErasedContactsByLastBatch","id":"ccc1b625-0300-45f4-a7ee-619e2cc250a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetErasedContactsByLastBatch?LastBatchID=LastBatchID-value&BatchSize=BatchSize-value","description":" <p>\n            Get erased customer IDs by last received batch\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ExtendedErasedContacts Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BatchCount</td><td>Int32</td><td>The remaining contacts</td></tr><tr><td>BatchID</td><td>Int32</td><td>The BatchID</td></tr><tr><td>BatchSize</td><td>Int32</td><td>The total number of batches</td></tr><tr><td>ErasedCustomers</td><td>List&lt;ErasedContact&gt;</td><td>List of contact IDS</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td><h4>ErasedContact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>HashedEmail</td><td>String</td><td>Hashed Email Address</td></tr><tr><td>HashedMobile</td><td>String</td><td>Hashed Mobile Phone</td></tr><tr><td>OriginID</td><td>String</td><td>Origin ID</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","GetErasedContactsByLastBatch"],"host":["{{Host}}"],"query":[{"key":"LastBatchID","value":"LastBatchID-value"},{"key":"BatchSize","value":"BatchSize-value"}],"variable":[]}},"response":[{"id":"315c85a0-ec3f-4cd4-ac01-347ef97468f2","name":"api/Contact/GetErasedContactsByLastBatch?LastBatchID={LastBatchID}&BatchSize={BatchSize} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/GetErasedContactsByLastBatch?LastBatchID=LastBatchID-value&BatchSize=BatchSize-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","GetErasedContactsByLastBatch"],"query":[{"key":"LastBatchID","value":"LastBatchID-value"},{"key":"BatchSize","value":"BatchSize-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get erased customer IDs by last received batch\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ExtendedErasedContacts Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BatchCount</td><td>Int32</td><td>The remaining contacts</td></tr><tr><td>BatchID</td><td>Int32</td><td>The BatchID</td></tr><tr><td>BatchSize</td><td>Int32</td><td>The total number of batches</td></tr><tr><td>ErasedCustomers</td><td>List&lt;ErasedContact&gt;</td><td>List of contact IDS</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td colspan=3><h4>ErasedContact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID</td></tr><tr><td>HashedEmail</td><td>String</td><td>Hashed Email Address</td></tr><tr><td>HashedMobile</td><td>String</td><td>Hashed Mobile Phone</td></tr><tr><td>OriginID</td><td>String</td><td>Origin ID</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"BatchID\": 2,\r\n  \"BatchCount\": 3,\r\n  \"BatchSize\": 4,\r\n  \"ErasedCustomers\": [\r\n    {\r\n      \"CtcID\": 1,\r\n      \"OriginID\": \"sample string 2\",\r\n      \"HashedEmail\": \"sample string 3\",\r\n      \"HashedMobile\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"CtcID\": 1,\r\n      \"OriginID\": \"sample string 2\",\r\n      \"HashedEmail\": \"sample string 3\",\r\n      \"HashedMobile\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"Error\": \"sample string 5\"\r\n}"}],"_postman_id":"ccc1b625-0300-45f4-a7ee-619e2cc250a9"},{"name":"GetPreferences","id":"de4cba4c-2c8a-4041-87d6-efcb091c6799","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Contact/GetPreferences/:ID?Brand=Brand-value","description":" <p>\n            Get list of preferences by customer ID and brand\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ContactPreference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Name</td><td>String</td><td>Description of the node</td></tr><tr><td>NodeCode</td><td>Int32</td><td>The ID of the node</td></tr><tr><td>Status</td><td>Boolean</td><td>True if it's flagged ; False if not</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","GetPreferences",":ID"],"host":["{{Host}}"],"query":[{"key":"Brand","value":"Brand-value"}],"variable":[{"id":"50ecaeef-9bb0-4a49-9478-d43da5bbe28a","type":"any","key":"ID"}]}},"response":[{"id":"da067c17-a1d5-4e09-8000-77da31f285da","name":"api/Contact/GetPreferences/{ID}?Brand={Brand} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Contact/GetPreferences/:ID?Brand=Brand-value","protocol":"https","host":["{{Host}}"],"path":["api","Contact","GetPreferences",":ID"],"query":[{"key":"Brand","value":"Brand-value"}],"variable":[{"key":"ID"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get list of preferences by customer ID and brand\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactPreference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Name</td><td>String</td><td>Description of the node</td></tr><tr><td>NodeCode</td><td>Int32</td><td>The ID of the node</td></tr><tr><td>Status</td><td>Boolean</td><td>True if it's flagged ; False if not</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"NodeCode\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Status\": true\r\n  },\r\n  {\r\n    \"NodeCode\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Status\": true\r\n  }\r\n]"}],"_postman_id":"de4cba4c-2c8a-4041-87d6-efcb091c6799"},{"name":"PostContact","id":"357887cb-160c-44b5-8ce5-315ccdcb703d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"LastName\": \"sample string 2\",\r\n  \"CpyID\": 3,\r\n  \"PositionFreeText\": \"sample string 7\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n  \"ModifDate\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"SourceID\": \"sample string 10\",\r\n  \"OriginID\": \"sample string 11\",\r\n  \"DoNotExport\": true,\r\n  \"ParentEmailAddress\": \"sample string 14\",\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"Company\": {\r\n    \"CpyID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Building\": \"sample string 4\",\r\n    \"Street\": \"sample string 5\",\r\n    \"Zone\": \"sample string 6\",\r\n    \"City\": \"sample string 7\",\r\n    \"PostCode\": \"sample string 8\",\r\n    \"StateCode\": \"sample string 9\",\r\n    \"StateName\": \"sample string 10\",\r\n    \"CountryCode\": \"sample string 13\",\r\n    \"CountryName\": \"sample string 14\",\r\n    \"Phone\": \"sample string 15\",\r\n    \"Fax\": \"sample string 16\",\r\n    \"Web\": \"sample string 17\",\r\n    \"Email\": \"sample string 18\",\r\n    \"NationalID\": \"sample string 20\",\r\n    \"SourceID\": \"sample string 21\",\r\n    \"OriginID\": \"sample string 22\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n    \"LastModifDate\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"CpyNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ]\r\n  },\r\n  \"CtcNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Gender\": null,\r\n  \"PredefinedGender\": 0,\r\n  \"ProcessMydata\": true,\r\n  \"DeleteMyData\": true,\r\n  \"HomeSiteID\": \"sample string 20\",\r\n  \"BrandID\": 1,\r\n  \"MemberNumbersList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CurrentMemberNumber\": \"sample string 21\",\r\n  \"CardTokensList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CardToken\": \"sample string 22\",\r\n  \"CurrentReferrerCode\": \"sample string 23\",\r\n  \"ReferrerCodeList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"ReferredByCode\": \"sample string 24\",\r\n  \"ReferrerCode\": \"sample string 25\",\r\n  \"UpdateIfPopulated\": true,\r\n  \"IsLeadCtc\": true,\r\n  \"IsFinanceCtc\": true,\r\n  \"CorporateName\": \"sample string 29\",\r\n  \"CorporateJobTitle\": 30,\r\n  \"Picture\": \"QEA=\",\r\n  \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"ContactSpendInLast12Months\": \"sample string 31\",\r\n  \"_Title\": \"sample string 33\",\r\n  \"FirstName\": \"sample string 34\",\r\n  \"Phone\": \"sample string 35\",\r\n  \"MobilPhone\": \"sample string 36\",\r\n  \"Email\": \"sample string 37\",\r\n  \"BirthDate\": \"2026-03-25T07:30:08.2314765+00:00\"\r\n}"},"url":"https://{{Host}}/api/Contact/PostContact","description":" <p>\n            Add a new contact\n            The contact will not be added if it matches an existing one.\n            The object contact should contain at least email or mobile or birthdate or firstname and lastname\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","PostContact"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"10bf8ed8-ce40-461a-89e4-2cb840676409","name":"api/Contact/PostContact Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"LastName\": \"sample string 2\",\r\n  \"CpyID\": 3,\r\n  \"PositionFreeText\": \"sample string 7\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n  \"ModifDate\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"SourceID\": \"sample string 10\",\r\n  \"OriginID\": \"sample string 11\",\r\n  \"DoNotExport\": true,\r\n  \"ParentEmailAddress\": \"sample string 14\",\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"Company\": {\r\n    \"CpyID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Building\": \"sample string 4\",\r\n    \"Street\": \"sample string 5\",\r\n    \"Zone\": \"sample string 6\",\r\n    \"City\": \"sample string 7\",\r\n    \"PostCode\": \"sample string 8\",\r\n    \"StateCode\": \"sample string 9\",\r\n    \"StateName\": \"sample string 10\",\r\n    \"CountryCode\": \"sample string 13\",\r\n    \"CountryName\": \"sample string 14\",\r\n    \"Phone\": \"sample string 15\",\r\n    \"Fax\": \"sample string 16\",\r\n    \"Web\": \"sample string 17\",\r\n    \"Email\": \"sample string 18\",\r\n    \"NationalID\": \"sample string 20\",\r\n    \"SourceID\": \"sample string 21\",\r\n    \"OriginID\": \"sample string 22\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n    \"LastModifDate\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"CpyNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ]\r\n  },\r\n  \"CtcNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Gender\": null,\r\n  \"PredefinedGender\": 0,\r\n  \"ProcessMydata\": true,\r\n  \"DeleteMyData\": true,\r\n  \"HomeSiteID\": \"sample string 20\",\r\n  \"BrandID\": 1,\r\n  \"MemberNumbersList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CurrentMemberNumber\": \"sample string 21\",\r\n  \"CardTokensList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CardToken\": \"sample string 22\",\r\n  \"CurrentReferrerCode\": \"sample string 23\",\r\n  \"ReferrerCodeList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"ReferredByCode\": \"sample string 24\",\r\n  \"ReferrerCode\": \"sample string 25\",\r\n  \"UpdateIfPopulated\": true,\r\n  \"IsLeadCtc\": true,\r\n  \"IsFinanceCtc\": true,\r\n  \"CorporateName\": \"sample string 29\",\r\n  \"CorporateJobTitle\": 30,\r\n  \"Picture\": \"QEA=\",\r\n  \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"ContactSpendInLast12Months\": \"sample string 31\",\r\n  \"_Title\": \"sample string 33\",\r\n  \"FirstName\": \"sample string 34\",\r\n  \"Phone\": \"sample string 35\",\r\n  \"MobilPhone\": \"sample string 36\",\r\n  \"Email\": \"sample string 37\",\r\n  \"BirthDate\": \"2026-03-25T07:30:08.2314765+00:00\"\r\n}"},"url":"https://{{Host}}/api/Contact/PostContact","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add a new contact\r\n            The contact will not be added if it matches an existing one.\r\n            The object contact should contain at least email or mobile or birthdate or firstname and lastname\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td colspan=4><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td colspan=3><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CtcID\": 1,\r\n  \"LastName\": \"sample string 2\",\r\n  \"CpyID\": 3,\r\n  \"PositionFreeText\": \"sample string 7\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n  \"ModifDate\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"SourceID\": \"sample string 10\",\r\n  \"OriginID\": \"sample string 11\",\r\n  \"DoNotExport\": true,\r\n  \"ParentEmailAddress\": \"sample string 14\",\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"Company\": {\r\n    \"CpyID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Building\": \"sample string 4\",\r\n    \"Street\": \"sample string 5\",\r\n    \"Zone\": \"sample string 6\",\r\n    \"City\": \"sample string 7\",\r\n    \"PostCode\": \"sample string 8\",\r\n    \"StateCode\": \"sample string 9\",\r\n    \"StateName\": \"sample string 10\",\r\n    \"CountryCode\": \"sample string 13\",\r\n    \"CountryName\": \"sample string 14\",\r\n    \"Phone\": \"sample string 15\",\r\n    \"Fax\": \"sample string 16\",\r\n    \"Web\": \"sample string 17\",\r\n    \"Email\": \"sample string 18\",\r\n    \"NationalID\": \"sample string 20\",\r\n    \"SourceID\": \"sample string 21\",\r\n    \"OriginID\": \"sample string 22\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n    \"LastModifDate\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"CpyNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ]\r\n  },\r\n  \"CtcNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.2314765+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Gender\": null,\r\n  \"PredefinedGender\": 0,\r\n  \"ProcessMydata\": true,\r\n  \"DeleteMyData\": true,\r\n  \"HomeSiteID\": \"sample string 20\",\r\n  \"BrandID\": 1,\r\n  \"MemberNumbersList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CurrentMemberNumber\": \"sample string 21\",\r\n  \"CardTokensList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CardToken\": \"sample string 22\",\r\n  \"CurrentReferrerCode\": \"sample string 23\",\r\n  \"ReferrerCodeList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"ReferredByCode\": \"sample string 24\",\r\n  \"ReferrerCode\": \"sample string 25\",\r\n  \"UpdateIfPopulated\": true,\r\n  \"IsLeadCtc\": true,\r\n  \"IsFinanceCtc\": true,\r\n  \"CorporateName\": \"sample string 29\",\r\n  \"CorporateJobTitle\": 30,\r\n  \"Picture\": \"QEA=\",\r\n  \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"ContactSpendInLast12Months\": \"sample string 31\",\r\n  \"_Title\": \"sample string 33\",\r\n  \"FirstName\": \"sample string 34\",\r\n  \"Phone\": \"sample string 35\",\r\n  \"MobilPhone\": \"sample string 36\",\r\n  \"Email\": \"sample string 37\",\r\n  \"BirthDate\": \"2026-03-25T07:30:08.2314765+00:00\"\r\n}"}],"_postman_id":"357887cb-160c-44b5-8ce5-315ccdcb703d"},{"name":"PostContactLikedPages","id":"0c765740-8d2f-4ed6-aee3-43dc37588e21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"CtcID\": 1,\r\n    \"OriginID\": \"sample string 2\",\r\n    \"SourceID\": \"sample string 3\",\r\n    \"ContactFacebookID\": \"sample string 4\",\r\n    \"FacebookPageID\": \"sample string 5\"\r\n  },\r\n  {\r\n    \"CtcID\": 1,\r\n    \"OriginID\": \"sample string 2\",\r\n    \"SourceID\": \"sample string 3\",\r\n    \"ContactFacebookID\": \"sample string 4\",\r\n    \"FacebookPageID\": \"sample string 5\"\r\n  }\r\n]"},"url":"https://{{Host}}/api/Contact/PostContactLikedPages","description":" <p>\n            Store contact liked pages in SCV DB\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>FacebookDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ContactFacebookID</td><td>String</td><td>Contact Facebook ID</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>SCV unique identifier</td><td>False</td></tr><tr><td>FacebookPageID</td><td>String</td><td>Facebook ID of the page liked by the contact</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>External ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>FacebookDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","PostContactLikedPages"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"d4ed0970-bac7-4192-a908-f5dc41091694","name":"api/Contact/PostContactLikedPages Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"CtcID\": 1,\r\n    \"OriginID\": \"sample string 2\",\r\n    \"SourceID\": \"sample string 3\",\r\n    \"ContactFacebookID\": \"sample string 4\",\r\n    \"FacebookPageID\": \"sample string 5\"\r\n  },\r\n  {\r\n    \"CtcID\": 1,\r\n    \"OriginID\": \"sample string 2\",\r\n    \"SourceID\": \"sample string 3\",\r\n    \"ContactFacebookID\": \"sample string 4\",\r\n    \"FacebookPageID\": \"sample string 5\"\r\n  }\r\n]"},"url":"https://{{Host}}/api/Contact/PostContactLikedPages","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Store contact liked pages in SCV DB\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>FacebookDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ContactFacebookID</td><td>String</td><td>Contact Facebook ID</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>SCV unique identifier</td><td>False</td></tr><tr><td>FacebookPageID</td><td>String</td><td>Facebook ID of the page liked by the contact</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>External ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>FacebookDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"0c765740-8d2f-4ed6-aee3-43dc37588e21"},{"name":"PostPreferences","id":"28ce88db-adc2-4b5d-b07a-16269267ea26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ID\": 1,\r\n  \"ChangeDate\": \"2026-03-25T07:30:08.247092+00:00\",\r\n  \"SourceID\": \"sample string 2\",\r\n  \"ContactPreferences\": [\r\n    {\r\n      \"NodeCode\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Status\": true\r\n    },\r\n    {\r\n      \"NodeCode\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Status\": true\r\n    }\r\n  ],\r\n  \"BrandName\": \"sample string 3\"\r\n}"},"url":"https://{{Host}}/api/Contact/PostPreferences","description":" <p>\n            Update existing contact preferences \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>PostContactPreference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandName</td><td>String</td><td>Brand Name</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change Date</td><td>False</td></tr><tr><td>ContactPreferences</td><td>List&lt;ContactPreference&gt;</td><td>List Of preferences: it contains all preferences with status of each one.</td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>SourceID</td><td>False</td></tr><tr><td><h4>ContactPreference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Name</td><td>String</td><td>Description of the node</td><td>False</td></tr><tr><td>NodeCode</td><td>Int32</td><td>The ID of the node</td><td>False</td></tr><tr><td>Status</td><td>Boolean</td><td>True if it's flagged ; False if not</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","PostPreferences"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"958feeee-4840-49c3-96cd-fd9daabf5ce0","name":"api/Contact/PostPreferences Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ID\": 1,\r\n  \"ChangeDate\": \"2026-03-25T07:30:08.247092+00:00\",\r\n  \"SourceID\": \"sample string 2\",\r\n  \"ContactPreferences\": [\r\n    {\r\n      \"NodeCode\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Status\": true\r\n    },\r\n    {\r\n      \"NodeCode\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Status\": true\r\n    }\r\n  ],\r\n  \"BrandName\": \"sample string 3\"\r\n}"},"url":"https://{{Host}}/api/Contact/PostPreferences","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Update existing contact preferences \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PostContactPreference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandName</td><td>String</td><td>Brand Name</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change Date</td><td>False</td></tr><tr><td>ContactPreferences</td><td>List&lt;ContactPreference&gt;</td><td>List Of preferences: it contains all preferences with status of each one.</td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>SourceID</td><td>False</td></tr><tr><td colspan=4><h4>ContactPreference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Name</td><td>String</td><td>Description of the node</td><td>False</td></tr><tr><td>NodeCode</td><td>Int32</td><td>The ID of the node</td><td>False</td></tr><tr><td>Status</td><td>Boolean</td><td>True if it's flagged ; False if not</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"28ce88db-adc2-4b5d-b07a-16269267ea26"},{"name":"PostPreferredSite","id":"d95a0b4f-4777-4df1-9280-f44fb44dfcfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"SiteID\": 2\r\n}"},"url":"https://{{Host}}/api/Contact/PostPreferredSite","description":" <p>\n            Add preferred site to the ctcid account\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>PreferredSiteInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td>the contact ID</td><td>False</td></tr><tr><td>SiteID</td><td>Int32</td><td>Atreemo site ID</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","PostPreferredSite"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"68f7fc5b-7182-4bb8-a354-ef1bc34255c0","name":"api/Contact/PostPreferredSite Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"SiteID\": 2\r\n}"},"url":"https://{{Host}}/api/Contact/PostPreferredSite","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add preferred site to the ctcid account\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PreferredSiteInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td>the contact ID</td><td>False</td></tr><tr><td>SiteID</td><td>Int32</td><td>Atreemo site ID</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"d95a0b4f-4777-4df1-9280-f44fb44dfcfb"},{"name":"PutContact","id":"a7b25cfc-93ba-4cb7-a441-bae9c719a477","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"LastName\": \"sample string 2\",\r\n  \"CpyID\": 3,\r\n  \"PositionFreeText\": \"sample string 7\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n  \"ModifDate\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"SourceID\": \"sample string 10\",\r\n  \"OriginID\": \"sample string 11\",\r\n  \"DoNotExport\": true,\r\n  \"ParentEmailAddress\": \"sample string 14\",\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"Company\": {\r\n    \"CpyID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Building\": \"sample string 4\",\r\n    \"Street\": \"sample string 5\",\r\n    \"Zone\": \"sample string 6\",\r\n    \"City\": \"sample string 7\",\r\n    \"PostCode\": \"sample string 8\",\r\n    \"StateCode\": \"sample string 9\",\r\n    \"StateName\": \"sample string 10\",\r\n    \"CountryCode\": \"sample string 13\",\r\n    \"CountryName\": \"sample string 14\",\r\n    \"Phone\": \"sample string 15\",\r\n    \"Fax\": \"sample string 16\",\r\n    \"Web\": \"sample string 17\",\r\n    \"Email\": \"sample string 18\",\r\n    \"NationalID\": \"sample string 20\",\r\n    \"SourceID\": \"sample string 21\",\r\n    \"OriginID\": \"sample string 22\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n    \"LastModifDate\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"CpyNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ]\r\n  },\r\n  \"CtcNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Gender\": null,\r\n  \"PredefinedGender\": 0,\r\n  \"ProcessMydata\": true,\r\n  \"DeleteMyData\": true,\r\n  \"HomeSiteID\": \"sample string 20\",\r\n  \"BrandID\": 1,\r\n  \"MemberNumbersList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CurrentMemberNumber\": \"sample string 21\",\r\n  \"CardTokensList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CardToken\": \"sample string 22\",\r\n  \"CurrentReferrerCode\": \"sample string 23\",\r\n  \"ReferrerCodeList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"ReferredByCode\": \"sample string 24\",\r\n  \"ReferrerCode\": \"sample string 25\",\r\n  \"UpdateIfPopulated\": true,\r\n  \"IsLeadCtc\": true,\r\n  \"IsFinanceCtc\": true,\r\n  \"CorporateName\": \"sample string 29\",\r\n  \"CorporateJobTitle\": 30,\r\n  \"Picture\": \"QEA=\",\r\n  \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"ContactSpendInLast12Months\": \"sample string 31\",\r\n  \"_Title\": \"sample string 33\",\r\n  \"FirstName\": \"sample string 34\",\r\n  \"Phone\": \"sample string 35\",\r\n  \"MobilPhone\": \"sample string 36\",\r\n  \"Email\": \"sample string 37\",\r\n  \"BirthDate\": \"2026-03-25T07:30:08.2940005+00:00\"\r\n}"},"url":"https://{{Host}}/api/Contact/PutContact","description":" <p>\n            Update an existing contact\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","PutContact"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"bbdcca30-7f04-480e-80ac-fb0957f7699f","name":"api/Contact/PutContact Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"LastName\": \"sample string 2\",\r\n  \"CpyID\": 3,\r\n  \"PositionFreeText\": \"sample string 7\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n  \"ModifDate\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"SourceID\": \"sample string 10\",\r\n  \"OriginID\": \"sample string 11\",\r\n  \"DoNotExport\": true,\r\n  \"ParentEmailAddress\": \"sample string 14\",\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"Company\": {\r\n    \"CpyID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Building\": \"sample string 4\",\r\n    \"Street\": \"sample string 5\",\r\n    \"Zone\": \"sample string 6\",\r\n    \"City\": \"sample string 7\",\r\n    \"PostCode\": \"sample string 8\",\r\n    \"StateCode\": \"sample string 9\",\r\n    \"StateName\": \"sample string 10\",\r\n    \"CountryCode\": \"sample string 13\",\r\n    \"CountryName\": \"sample string 14\",\r\n    \"Phone\": \"sample string 15\",\r\n    \"Fax\": \"sample string 16\",\r\n    \"Web\": \"sample string 17\",\r\n    \"Email\": \"sample string 18\",\r\n    \"NationalID\": \"sample string 20\",\r\n    \"SourceID\": \"sample string 21\",\r\n    \"OriginID\": \"sample string 22\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n    \"LastModifDate\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"CpyNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ]\r\n  },\r\n  \"CtcNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Gender\": null,\r\n  \"PredefinedGender\": 0,\r\n  \"ProcessMydata\": true,\r\n  \"DeleteMyData\": true,\r\n  \"HomeSiteID\": \"sample string 20\",\r\n  \"BrandID\": 1,\r\n  \"MemberNumbersList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CurrentMemberNumber\": \"sample string 21\",\r\n  \"CardTokensList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CardToken\": \"sample string 22\",\r\n  \"CurrentReferrerCode\": \"sample string 23\",\r\n  \"ReferrerCodeList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"ReferredByCode\": \"sample string 24\",\r\n  \"ReferrerCode\": \"sample string 25\",\r\n  \"UpdateIfPopulated\": true,\r\n  \"IsLeadCtc\": true,\r\n  \"IsFinanceCtc\": true,\r\n  \"CorporateName\": \"sample string 29\",\r\n  \"CorporateJobTitle\": 30,\r\n  \"Picture\": \"QEA=\",\r\n  \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"ContactSpendInLast12Months\": \"sample string 31\",\r\n  \"_Title\": \"sample string 33\",\r\n  \"FirstName\": \"sample string 34\",\r\n  \"Phone\": \"sample string 35\",\r\n  \"MobilPhone\": \"sample string 36\",\r\n  \"Email\": \"sample string 37\",\r\n  \"BirthDate\": \"2026-03-25T07:30:08.2940005+00:00\"\r\n}"},"url":"https://{{Host}}/api/Contact/PutContact","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Update an existing contact\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td colspan=4><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td colspan=3><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CtcID\": 1,\r\n  \"LastName\": \"sample string 2\",\r\n  \"CpyID\": 3,\r\n  \"PositionFreeText\": \"sample string 7\",\r\n  \"CreateDate\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n  \"ModifDate\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n  \"ModifiedBy\": 1,\r\n  \"SourceID\": \"sample string 10\",\r\n  \"OriginID\": \"sample string 11\",\r\n  \"DoNotExport\": true,\r\n  \"ParentEmailAddress\": \"sample string 14\",\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"Company\": {\r\n    \"CpyID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Building\": \"sample string 4\",\r\n    \"Street\": \"sample string 5\",\r\n    \"Zone\": \"sample string 6\",\r\n    \"City\": \"sample string 7\",\r\n    \"PostCode\": \"sample string 8\",\r\n    \"StateCode\": \"sample string 9\",\r\n    \"StateName\": \"sample string 10\",\r\n    \"CountryCode\": \"sample string 13\",\r\n    \"CountryName\": \"sample string 14\",\r\n    \"Phone\": \"sample string 15\",\r\n    \"Fax\": \"sample string 16\",\r\n    \"Web\": \"sample string 17\",\r\n    \"Email\": \"sample string 18\",\r\n    \"NationalID\": \"sample string 20\",\r\n    \"SourceID\": \"sample string 21\",\r\n    \"OriginID\": \"sample string 22\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n    \"LastModifDate\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"CpyNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ]\r\n  },\r\n  \"CtcNotes\": {\r\n    \"CtcCpyID\": 1,\r\n    \"NoteUserID\": 2,\r\n    \"SourceNote\": 3,\r\n    \"Comment\": \"sample string 4\",\r\n    \"LastModifiedBy\": \"sample string 5\",\r\n    \"LastModifiedOn\": \"2026-03-25T07:30:08.2940005+00:00\",\r\n    \"AttachmentFilesList\": [\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      },\r\n      {\r\n        \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n        \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n        \"<FileName>k__BackingField\": \"sample string 3\",\r\n        \"<FileContent>k__BackingField\": \"sample string 4\",\r\n        \"<ContentType>k__BackingField\": \"sample string 5\",\r\n        \"<FileSize>k__BackingField\": 1,\r\n        \"<ID>k__BackingField\": 1,\r\n        \"<HasContent>k__BackingField\": true\r\n      }\r\n    ],\r\n    \"AttachmentFilesListString\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Gender\": null,\r\n  \"PredefinedGender\": 0,\r\n  \"ProcessMydata\": true,\r\n  \"DeleteMyData\": true,\r\n  \"HomeSiteID\": \"sample string 20\",\r\n  \"BrandID\": 1,\r\n  \"MemberNumbersList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CurrentMemberNumber\": \"sample string 21\",\r\n  \"CardTokensList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CardToken\": \"sample string 22\",\r\n  \"CurrentReferrerCode\": \"sample string 23\",\r\n  \"ReferrerCodeList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"ReferredByCode\": \"sample string 24\",\r\n  \"ReferrerCode\": \"sample string 25\",\r\n  \"UpdateIfPopulated\": true,\r\n  \"IsLeadCtc\": true,\r\n  \"IsFinanceCtc\": true,\r\n  \"CorporateName\": \"sample string 29\",\r\n  \"CorporateJobTitle\": 30,\r\n  \"Picture\": \"QEA=\",\r\n  \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n  \"ContactSpendInLast12Months\": \"sample string 31\",\r\n  \"_Title\": \"sample string 33\",\r\n  \"FirstName\": \"sample string 34\",\r\n  \"Phone\": \"sample string 35\",\r\n  \"MobilPhone\": \"sample string 36\",\r\n  \"Email\": \"sample string 37\",\r\n  \"BirthDate\": \"2026-03-25T07:30:08.2940005+00:00\"\r\n}"}],"_postman_id":"a7b25cfc-93ba-4cb7-a441-bae9c719a477"},{"name":"SetContactNodes","id":"efa4a397-1c27-4926-8b8d-bde80ab6e7d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"ParentNodeCode\": 2,\r\n  \"ActiveNodeCode\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"SourceID\": \"sample string 3\"\r\n}"},"url":"https://{{Host}}/api/Contact/SetContactNodes","description":" <p>\n            Set a contact’s nodes status for a specific parent node in the tree \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>SetContactNodesInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActiveNodeCode</td><td>Int32[]</td><td>Collection of the active node IDs (nodes not specified in this collection will be deleted for this CtcID)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>ContactID</td><td>False</td></tr><tr><td>ParentNodeCode</td><td>Int32</td><td>Parent node id in the tree</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source of the update</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>SetContactNodesOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","SetContactNodes"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"feae7ee8-e79e-43d2-ba54-146130fe21a1","name":"api/Contact/SetContactNodes Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"ParentNodeCode\": 2,\r\n  \"ActiveNodeCode\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"SourceID\": \"sample string 3\"\r\n}"},"url":"https://{{Host}}/api/Contact/SetContactNodes","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Set a contact’s nodes status for a specific parent node in the tree \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>SetContactNodesInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActiveNodeCode</td><td>Int32[]</td><td>Collection of the active node IDs (nodes not specified in this collection will be deleted for this CtcID)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>ContactID</td><td>False</td></tr><tr><td>ParentNodeCode</td><td>Int32</td><td>Parent node id in the tree</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source of the update</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>SetContactNodesOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Success\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"efa4a397-1c27-4926-8b8d-bde80ab6e7d6"},{"name":"ValidateContactBySupInfo","id":"7ce33b6b-24cc-4bff-b1e1-fbb416fde1d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Mobile\": \"sample string 1\",\r\n  \"Email\": \"sample string 2\",\r\n  \"SupInfoField\": \"sample string 3\",\r\n  \"SupInfoValue\": \"sample string 4\"\r\n}"},"url":"https://{{Host}}/api/Contact/ValidateContactBySupInfo","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>ValidateContactSupInfoInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Mobile</td><td>String</td><td></td><td>False</td></tr><tr><td>SupInfoField</td><td>String</td><td></td><td>False</td></tr><tr><td>SupInfoValue</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ValidateContactSupInfoOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactFullName</td><td>String</td><td></td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>IsValid</td><td>Boolean</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td>ValidationMsg</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","ValidateContactBySupInfo"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"477bf8e4-dba9-4456-a1eb-26cdafcbf2ad","name":"api/Contact/ValidateContactBySupInfo Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Mobile\": \"sample string 1\",\r\n  \"Email\": \"sample string 2\",\r\n  \"SupInfoField\": \"sample string 3\",\r\n  \"SupInfoValue\": \"sample string 4\"\r\n}"},"url":"https://{{Host}}/api/Contact/ValidateContactBySupInfo","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ValidateContactSupInfoInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Mobile</td><td>String</td><td></td><td>False</td></tr><tr><td>SupInfoField</td><td>String</td><td></td><td>False</td></tr><tr><td>SupInfoValue</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ValidateContactSupInfoOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactFullName</td><td>String</td><td></td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>IsValid</td><td>Boolean</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td>ValidationMsg</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CtcID\": 1,\r\n  \"ContactFullName\": \"sample string 1\",\r\n  \"Response\": true,\r\n  \"IsValid\": true,\r\n  \"ValidationMsg\": \"sample string 4\",\r\n  \"Error\": \"sample string 5\"\r\n}"}],"_postman_id":"7ce33b6b-24cc-4bff-b1e1-fbb416fde1d0"},{"name":"ValidateContactMemberNumber","id":"f9f147fb-9030-4bc5-bf78-382f576ea168","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"MemberNumber\": \"sample string 1\",\r\n  \"Email\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Contact/ValidateContactMemberNumber","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>ContactMemberNumberInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ValidateContactMemberNumberOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactFullName</td><td>String</td><td></td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>IsValid</td><td>Boolean</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td>ValidationMsg</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Contact","ValidateContactMemberNumber"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"ed1a1969-d641-41bc-96c6-bced50cb4ca3","name":"api/Contact/ValidateContactMemberNumber Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"MemberNumber\": \"sample string 1\",\r\n  \"Email\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Contact/ValidateContactMemberNumber","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ContactMemberNumberInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ValidateContactMemberNumberOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactFullName</td><td>String</td><td></td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>IsValid</td><td>Boolean</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td>ValidationMsg</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CtcID\": 1,\r\n  \"ContactFullName\": \"sample string 1\",\r\n  \"Response\": true,\r\n  \"IsValid\": true,\r\n  \"ValidationMsg\": \"sample string 4\",\r\n  \"Error\": \"sample string 5\"\r\n}"}],"_postman_id":"f9f147fb-9030-4bc5-bf78-382f576ea168"}],"id":"22182349-b8ef-4fa6-9a8d-13ff6806984d","description":"<p>all <b>CONTACT</b> methods are deprecated , Please use the <b>CUSTOMER</b> methods</p>\n","_postman_id":"22182349-b8ef-4fa6-9a8d-13ff6806984d"},{"name":"Corporate","item":[{"name":"Get","id":"a8ecb4f9-c3ae-4bd7-be78-c97deae7f238","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Corporate/Get","description":" <p>\n            Get all corporates\n            \n</p>","urlObject":{"protocol":"https","path":["api","Corporate","Get"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"2dbd294b-57fb-4ef5-8041-9dd50d42a27a","name":"api/Corporate/Get Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Corporate/Get","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get all corporates\r\n            \n</p></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a8ecb4f9-c3ae-4bd7-be78-c97deae7f238"},{"name":"GetById","id":"c4f9ffd0-ec82-4f97-b6a2-374a832192e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Corporate/GetById/:Id?ReturnCtcIDs=ReturnCtcIDs-value","description":" <p>\n            Search Corporate by Id\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>PostCorporateData Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AccountManager</td><td>Int32</td><td>Account Manager</td></tr><tr><td>AnnualBudget</td><td>String</td><td>Annual Budget</td></tr><tr><td>AnnualValue</td><td>String</td><td>Annual Value</td></tr><tr><td>CommissionType</td><td>String</td><td>Commission type</td></tr><tr><td>CommissionTypeID</td><td>Int32</td><td></td></tr><tr><td>CommissionValue</td><td>String</td><td>Commission Value</td></tr><tr><td>CompanyAnniversaryDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>CompanyType</td><td>String</td><td>Company Type</td></tr><tr><td>ContractRenewalDate</td><td>DateTime (nullable)</td><td>Contract renewal date</td></tr><tr><td>CorporateName</td><td>String</td><td>CorporateName</td></tr><tr><td>CtcIDs</td><td>List&lt;Int32&gt;</td><td></td></tr><tr><td>Domains</td><td>List&lt;CorporateDomains&gt;</td><td></td></tr><tr><td>Email</td><td>String</td><td>Corporate Email</td></tr><tr><td>FinanceCtc</td><td>Contact</td><td>Finance contact</td></tr><tr><td>FormCompleted</td><td>Boolean</td><td>FormCompleted</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td>Corporate ID</td></tr><tr><td>IndustryID</td><td>Int32</td><td>IndustryID</td></tr><tr><td>IsActive</td><td>Boolean</td><td>IsActive</td></tr><tr><td>IsInvoiceInAdvance</td><td>Boolean</td><td>IsInvoiceInAdvance</td></tr><tr><td>Last12monthsvalue</td><td>Single</td><td></td></tr><tr><td>LeadCtc</td><td>Contact</td><td>Lead contact</td></tr><tr><td>LifetimeValue</td><td>Single</td><td></td></tr><tr><td>LoyalteScheme</td><td>String</td><td>Loyalty Scheme</td></tr><tr><td>LoyalteSchemeID</td><td>Int32</td><td></td></tr><tr><td>Notes</td><td>String</td><td>Notes</td></tr><tr><td>NumberEmployee</td><td>Int32</td><td>Number of employee</td></tr><tr><td>Phone</td><td>String</td><td>Corporate Phone</td></tr><tr><td>TypeID</td><td>Int32</td><td></td></tr><tr><td>Website</td><td>String</td><td>Corporate Website</td></tr><tr><td><h4>CorporateDomains Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CorporateID</td><td>Int32</td><td></td></tr><tr><td>Domain</td><td>String</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Corporate","GetById",":Id"],"host":["{{Host}}"],"query":[{"key":"ReturnCtcIDs","value":"ReturnCtcIDs-value"}],"variable":[{"id":"8cbb2280-fab0-4a07-a942-cda5994ec178","type":"any","key":"Id"}]}},"response":[{"id":"75116238-8f7d-460a-8b0d-84739b1617c7","name":"api/Corporate/GetById/{Id}?ReturnCtcIDs={ReturnCtcIDs} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Corporate/GetById/:Id?ReturnCtcIDs=ReturnCtcIDs-value","protocol":"https","host":["{{Host}}"],"path":["api","Corporate","GetById",":Id"],"query":[{"key":"ReturnCtcIDs","value":"ReturnCtcIDs-value"}],"variable":[{"key":"Id"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Search Corporate by Id\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostCorporateData Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AccountManager</td><td>Int32</td><td>Account Manager</td></tr><tr><td>AnnualBudget</td><td>String</td><td>Annual Budget</td></tr><tr><td>AnnualValue</td><td>String</td><td>Annual Value</td></tr><tr><td>CommissionType</td><td>String</td><td>Commission type</td></tr><tr><td>CommissionTypeID</td><td>Int32</td><td></td></tr><tr><td>CommissionValue</td><td>String</td><td>Commission Value</td></tr><tr><td>CompanyAnniversaryDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>CompanyType</td><td>String</td><td>Company Type</td></tr><tr><td>ContractRenewalDate</td><td>DateTime (nullable)</td><td>Contract renewal date</td></tr><tr><td>CorporateName</td><td>String</td><td>CorporateName</td></tr><tr><td>CtcIDs</td><td>List&lt;Int32&gt;</td><td></td></tr><tr><td>Domains</td><td>List&lt;CorporateDomains&gt;</td><td></td></tr><tr><td>Email</td><td>String</td><td>Corporate Email</td></tr><tr><td>FinanceCtc</td><td>Contact</td><td>Finance contact</td></tr><tr><td>FormCompleted</td><td>Boolean</td><td>FormCompleted</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td>Corporate ID</td></tr><tr><td>IndustryID</td><td>Int32</td><td>IndustryID</td></tr><tr><td>IsActive</td><td>Boolean</td><td>IsActive</td></tr><tr><td>IsInvoiceInAdvance</td><td>Boolean</td><td>IsInvoiceInAdvance</td></tr><tr><td>Last12monthsvalue</td><td>Single</td><td></td></tr><tr><td>LeadCtc</td><td>Contact</td><td>Lead contact</td></tr><tr><td>LifetimeValue</td><td>Single</td><td></td></tr><tr><td>LoyalteScheme</td><td>String</td><td>Loyalty Scheme</td></tr><tr><td>LoyalteSchemeID</td><td>Int32</td><td></td></tr><tr><td>Notes</td><td>String</td><td>Notes</td></tr><tr><td>NumberEmployee</td><td>Int32</td><td>Number of employee</td></tr><tr><td>Phone</td><td>String</td><td>Corporate Phone</td></tr><tr><td>TypeID</td><td>Int32</td><td></td></tr><tr><td>Website</td><td>String</td><td>Corporate Website</td></tr><tr><td colspan=3><h4>CorporateDomains Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CorporateID</td><td>Int32</td><td></td></tr><tr><td>Domain</td><td>String</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td colspan=3><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td colspan=3><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ID\": 1,\r\n  \"CorporateName\": \"sample string 1\",\r\n  \"IsActive\": true,\r\n  \"AccountManager\": 3,\r\n  \"Website\": \"sample string 4\",\r\n  \"Phone\": \"sample string 5\",\r\n  \"Email\": \"sample string 6\",\r\n  \"NumberEmployee\": 7,\r\n  \"IndustryID\": 8,\r\n  \"AnnualBudget\": \"sample string 9\",\r\n  \"LeadCtc\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.3095921+00:00\"\r\n  },\r\n  \"FinanceCtc\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.3095921+00:00\"\r\n  },\r\n  \"TypeID\": 10,\r\n  \"CommissionTypeID\": 11,\r\n  \"CommissionType\": \"sample string 12\",\r\n  \"CompanyType\": \"sample string 13\",\r\n  \"CommissionValue\": \"sample string 14\",\r\n  \"LoyalteSchemeID\": 15,\r\n  \"LoyalteScheme\": \"sample string 16\",\r\n  \"ContractRenewalDate\": \"2026-03-25T07:30:08.3095921+00:00\",\r\n  \"IsInvoiceInAdvance\": true,\r\n  \"FormCompleted\": true,\r\n  \"Notes\": \"sample string 19\",\r\n  \"AnnualValue\": \"sample string 20\",\r\n  \"Domains\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"CorporateID\": 2,\r\n      \"Domain\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"CorporateID\": 2,\r\n      \"Domain\": \"sample string 3\"\r\n    }\r\n  ],\r\n  \"LifetimeValue\": 21.1,\r\n  \"Last12monthsvalue\": 22.1,\r\n  \"CtcIDs\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"CompanyAnniversaryDate\": \"2026-03-25T07:30:08.3095921+00:00\"\r\n}"}],"_postman_id":"c4f9ffd0-ec82-4f97-b6a2-374a832192e6"},{"name":"Post","id":"5ad7e7a3-b407-475a-818b-e55e1f43a50e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ID\": 1,\r\n  \"CorporateName\": \"sample string 1\",\r\n  \"IsActive\": true,\r\n  \"AccountManager\": 3,\r\n  \"Website\": \"sample string 4\",\r\n  \"Phone\": \"sample string 5\",\r\n  \"Email\": \"sample string 6\",\r\n  \"NumberEmployee\": 7,\r\n  \"IndustryID\": 8,\r\n  \"AnnualBudget\": \"sample string 9\",\r\n  \"LeadCtc\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.3564712+00:00\"\r\n  },\r\n  \"FinanceCtc\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.3564712+00:00\"\r\n  },\r\n  \"TypeID\": 10,\r\n  \"CommissionTypeID\": 11,\r\n  \"CommissionType\": \"sample string 12\",\r\n  \"CompanyType\": \"sample string 13\",\r\n  \"CommissionValue\": \"sample string 14\",\r\n  \"LoyalteSchemeID\": 15,\r\n  \"LoyalteScheme\": \"sample string 16\",\r\n  \"ContractRenewalDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n  \"IsInvoiceInAdvance\": true,\r\n  \"FormCompleted\": true,\r\n  \"Notes\": \"sample string 19\",\r\n  \"AnnualValue\": \"sample string 20\",\r\n  \"Domains\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"CorporateID\": 2,\r\n      \"Domain\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"CorporateID\": 2,\r\n      \"Domain\": \"sample string 3\"\r\n    }\r\n  ],\r\n  \"LifetimeValue\": 21.1,\r\n  \"Last12monthsvalue\": 22.1,\r\n  \"CtcIDs\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"CompanyAnniversaryDate\": \"2026-03-25T07:30:08.3564712+00:00\"\r\n}"},"url":"https://{{Host}}/api/Corporate/Post","description":" <p>\n            Create new Corporate\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>PostCorporateData Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AccountManager</td><td>Int32</td><td>Account Manager</td><td>False</td></tr><tr><td>AnnualBudget</td><td>String</td><td>Annual Budget</td><td>False</td></tr><tr><td>AnnualValue</td><td>String</td><td>Annual Value</td><td>False</td></tr><tr><td>CommissionType</td><td>String</td><td>Commission type</td><td>False</td></tr><tr><td>CommissionTypeID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CommissionValue</td><td>String</td><td>Commission Value</td><td>False</td></tr><tr><td>CompanyAnniversaryDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>CompanyType</td><td>String</td><td>Company Type</td><td>False</td></tr><tr><td>ContractRenewalDate</td><td>DateTime (nullable)</td><td>Contract renewal date</td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td>CorporateName</td><td>False</td></tr><tr><td>CtcIDs</td><td>List&lt;Int32&gt;</td><td></td><td>False</td></tr><tr><td>Domains</td><td>List&lt;CorporateDomains&gt;</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Corporate Email</td><td>False</td></tr><tr><td>FinanceCtc</td><td>Contact</td><td>Finance contact</td><td>False</td></tr><tr><td>FormCompleted</td><td>Boolean</td><td>FormCompleted</td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td>Corporate ID</td><td>False</td></tr><tr><td>IndustryID</td><td>Int32</td><td>IndustryID</td><td>False</td></tr><tr><td>IsActive</td><td>Boolean</td><td>IsActive</td><td>False</td></tr><tr><td>IsInvoiceInAdvance</td><td>Boolean</td><td>IsInvoiceInAdvance</td><td>False</td></tr><tr><td>Last12monthsvalue</td><td>Single</td><td></td><td>False</td></tr><tr><td>LeadCtc</td><td>Contact</td><td>Lead contact</td><td>False</td></tr><tr><td>LifetimeValue</td><td>Single</td><td></td><td>False</td></tr><tr><td>LoyalteScheme</td><td>String</td><td>Loyalty Scheme</td><td>False</td></tr><tr><td>LoyalteSchemeID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Notes</td><td>String</td><td>Notes</td><td>False</td></tr><tr><td>NumberEmployee</td><td>Int32</td><td>Number of employee</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Corporate Phone</td><td>False</td></tr><tr><td>TypeID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Website</td><td>String</td><td>Corporate Website</td><td>False</td></tr><tr><td><h4>CorporateDomains Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Domain</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostCorporateOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CorporateResponseData</td><td>PostCorporateResponseData</td><td></td></tr><tr><td>DomainResponseData</td><td>List&lt;PostDomainResponseData&gt;</td><td></td></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>PostCorporateResponseData Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CorporateID</td><td>Int32</td><td>Unique identifier of company</td></tr><tr><td>Message</td><td>String</td><td></td></tr><tr><td><h4>PostDomainResponseData Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Domain</td><td>String</td><td>Unique identifier of company</td></tr><tr><td>Message</td><td>String</td><td></td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","Corporate","Post"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"1bddf6f5-2844-4257-ba86-834ec4966547","name":"api/Corporate/Post Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ID\": 1,\r\n  \"CorporateName\": \"sample string 1\",\r\n  \"IsActive\": true,\r\n  \"AccountManager\": 3,\r\n  \"Website\": \"sample string 4\",\r\n  \"Phone\": \"sample string 5\",\r\n  \"Email\": \"sample string 6\",\r\n  \"NumberEmployee\": 7,\r\n  \"IndustryID\": 8,\r\n  \"AnnualBudget\": \"sample string 9\",\r\n  \"LeadCtc\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.3564712+00:00\"\r\n  },\r\n  \"FinanceCtc\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.3564712+00:00\"\r\n  },\r\n  \"TypeID\": 10,\r\n  \"CommissionTypeID\": 11,\r\n  \"CommissionType\": \"sample string 12\",\r\n  \"CompanyType\": \"sample string 13\",\r\n  \"CommissionValue\": \"sample string 14\",\r\n  \"LoyalteSchemeID\": 15,\r\n  \"LoyalteScheme\": \"sample string 16\",\r\n  \"ContractRenewalDate\": \"2026-03-25T07:30:08.3564712+00:00\",\r\n  \"IsInvoiceInAdvance\": true,\r\n  \"FormCompleted\": true,\r\n  \"Notes\": \"sample string 19\",\r\n  \"AnnualValue\": \"sample string 20\",\r\n  \"Domains\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"CorporateID\": 2,\r\n      \"Domain\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"CorporateID\": 2,\r\n      \"Domain\": \"sample string 3\"\r\n    }\r\n  ],\r\n  \"LifetimeValue\": 21.1,\r\n  \"Last12monthsvalue\": 22.1,\r\n  \"CtcIDs\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"CompanyAnniversaryDate\": \"2026-03-25T07:30:08.3564712+00:00\"\r\n}"},"url":"https://{{Host}}/api/Corporate/Post","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Create new Corporate\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PostCorporateData Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AccountManager</td><td>Int32</td><td>Account Manager</td><td>False</td></tr><tr><td>AnnualBudget</td><td>String</td><td>Annual Budget</td><td>False</td></tr><tr><td>AnnualValue</td><td>String</td><td>Annual Value</td><td>False</td></tr><tr><td>CommissionType</td><td>String</td><td>Commission type</td><td>False</td></tr><tr><td>CommissionTypeID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CommissionValue</td><td>String</td><td>Commission Value</td><td>False</td></tr><tr><td>CompanyAnniversaryDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>CompanyType</td><td>String</td><td>Company Type</td><td>False</td></tr><tr><td>ContractRenewalDate</td><td>DateTime (nullable)</td><td>Contract renewal date</td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td>CorporateName</td><td>False</td></tr><tr><td>CtcIDs</td><td>List&lt;Int32&gt;</td><td></td><td>False</td></tr><tr><td>Domains</td><td>List&lt;CorporateDomains&gt;</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Corporate Email</td><td>False</td></tr><tr><td>FinanceCtc</td><td>Contact</td><td>Finance contact</td><td>False</td></tr><tr><td>FormCompleted</td><td>Boolean</td><td>FormCompleted</td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td>Corporate ID</td><td>False</td></tr><tr><td>IndustryID</td><td>Int32</td><td>IndustryID</td><td>False</td></tr><tr><td>IsActive</td><td>Boolean</td><td>IsActive</td><td>False</td></tr><tr><td>IsInvoiceInAdvance</td><td>Boolean</td><td>IsInvoiceInAdvance</td><td>False</td></tr><tr><td>Last12monthsvalue</td><td>Single</td><td></td><td>False</td></tr><tr><td>LeadCtc</td><td>Contact</td><td>Lead contact</td><td>False</td></tr><tr><td>LifetimeValue</td><td>Single</td><td></td><td>False</td></tr><tr><td>LoyalteScheme</td><td>String</td><td>Loyalty Scheme</td><td>False</td></tr><tr><td>LoyalteSchemeID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Notes</td><td>String</td><td>Notes</td><td>False</td></tr><tr><td>NumberEmployee</td><td>Int32</td><td>Number of employee</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Corporate Phone</td><td>False</td></tr><tr><td>TypeID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Website</td><td>String</td><td>Corporate Website</td><td>False</td></tr><tr><td colspan=4><h4>CorporateDomains Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Domain</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td colspan=4><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td colspan=4><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostCorporateOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CorporateResponseData</td><td>PostCorporateResponseData</td><td></td></tr><tr><td>DomainResponseData</td><td>List&lt;PostDomainResponseData&gt;</td><td></td></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>PostCorporateResponseData Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CorporateID</td><td>Int32</td><td>Unique identifier of company</td></tr><tr><td>Message</td><td>String</td><td></td></tr><tr><td colspan=3><h4>PostDomainResponseData Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Domain</td><td>String</td><td>Unique identifier of company</td></tr><tr><td>Message</td><td>String</td><td></td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CorporateResponseData\": {\r\n    \"CorporateID\": 1,\r\n    \"Message\": \"sample string 2\"\r\n  },\r\n  \"DomainResponseData\": null,\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"5ad7e7a3-b407-475a-818b-e55e1f43a50e"},{"name":"RemoveContact","id":"5e601de7-97c8-4b49-96fc-ccbed6472507","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"CorporateID\": 1,\r\n  \"CorporateName\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Corporate/RemoveContact","description":" <p>\n            Remove Contact From Corporate\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>RemoveContactFromCorporateInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td>Unique identifier of company\n            from which the contact will be removed.</td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td>The name of the corporate associated with the contact.</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID of the contact to be removed</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>RemoveContactFromCorporateOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","Corporate","RemoveContact"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"deefb7e8-0594-4ded-a979-6465e4236457","name":"api/Corporate/RemoveContact Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"CorporateID\": 1,\r\n  \"CorporateName\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Corporate/RemoveContact","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Remove Contact From Corporate\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>RemoveContactFromCorporateInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td>Unique identifier of company\n            from which the contact will be removed.</td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td>The name of the corporate associated with the contact.</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The CtcID of the contact to be removed</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>RemoveContactFromCorporateOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5e601de7-97c8-4b49-96fc-ccbed6472507"}],"id":"55421808-e7fa-4c9c-805b-dc122256a76b","description":"<p>Api Methods for Corporate</p>\n","_postman_id":"55421808-e7fa-4c9c-805b-dc122256a76b"},{"name":"Customer","item":[{"name":"DeleteByCtcID","id":"8882d5af-f54c-4a5c-90a1-a7345798dfbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Customer/DeleteByCtcID?CtcID=CtcID-value","description":" <p>\n            Delete an existing contact by it CtcID\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","Customer","DeleteByCtcID"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"}],"variable":[]}},"response":[{"id":"a30c23d1-198c-44df-a925-f289894d879d","name":"api/Customer/DeleteByCtcID?CtcID={CtcID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/Customer/DeleteByCtcID?CtcID=CtcID-value","protocol":"https","host":["{{Host}}"],"path":["api","Customer","DeleteByCtcID"],"query":[{"key":"CtcID","value":"CtcID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Delete an existing contact by it CtcID\r\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"8882d5af-f54c-4a5c-90a1-a7345798dfbc"},{"name":"DeleteByExtenalIdentifier","id":"adb36c53-9020-4daf-9ae1-3919ff18d851","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Customer/DeleteByExtenalIdentifier?ExternalID=ExternalID-value&ExternalSource=ExternalSource-value","description":" <p>\n            Delete an existing contact by its extenal identifier\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","Customer","DeleteByExtenalIdentifier"],"host":["{{Host}}"],"query":[{"key":"ExternalID","value":"ExternalID-value"},{"key":"ExternalSource","value":"ExternalSource-value"}],"variable":[]}},"response":[{"id":"658a2c9a-9f1b-41cd-8b4b-e33c30bfe8d1","name":"api/Customer/DeleteByExtenalIdentifier?ExternalID={ExternalID}&ExternalSource={ExternalSource} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/Customer/DeleteByExtenalIdentifier?ExternalID=ExternalID-value&ExternalSource=ExternalSource-value","protocol":"https","host":["{{Host}}"],"path":["api","Customer","DeleteByExtenalIdentifier"],"query":[{"key":"ExternalID","value":"ExternalID-value"},{"key":"ExternalSource","value":"ExternalSource-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Delete an existing contact by its extenal identifier\r\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"adb36c53-9020-4daf-9ae1-3919ff18d851"},{"name":"FindCtcID","id":"91174b4d-b3c3-41f5-b1ae-a527a1fbe2a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SearchFilters\": {\r\n    \"CtcID\": 1,\r\n    \"FirstName\": \"sample string 1\",\r\n    \"LastName\": \"sample string 2\",\r\n    \"Email\": \"sample string 3\",\r\n    \"MobilePhone\": \"sample string 4\",\r\n    \"Phone\": \"sample string 5\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.4658348+00:00\",\r\n    \"MD5\": \"sample string 6\",\r\n    \"ExternalIdentifier\": {\r\n      \"ExternalID\": \"sample string 1\",\r\n      \"ExternalSource\": \"sample string 2\"\r\n    },\r\n    \"ReferredByCode\": \"sample string 7\",\r\n    \"ReferrerCode\": \"sample string 8\",\r\n    \"MemberNumber\": \"sample string 9\",\r\n    \"CardToken\": \"sample string 10\",\r\n    \"SupInfo\": {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    \"VoucherCode\": \"sample string 11\",\r\n    \"GiftCardCode\": \"sample string 12\",\r\n    \"ReservationReference\": {\r\n      \"ReservationReference\": \"sample string 1\",\r\n      \"SupplierCode\": 1,\r\n      \"BookingSector\": 1\r\n    },\r\n    \"DeviceToken\": \"sample string 13\",\r\n    \"Staff\": {\r\n      \"StaffID\": \"sample string 1\",\r\n      \"Location\": {\r\n        \"ActeolSiteID\": 1,\r\n        \"ExternalLocationID\": \"sample string 2\"\r\n      }\r\n    },\r\n    \"CustomerAuthentication\": {\r\n      \"Username\": \"sample string 1\",\r\n      \"HashedPassword\": \"sample string 2\",\r\n      \"ApplicationName\": \"sample string 3\"\r\n    }\r\n  },\r\n  \"BrandID\": 1\r\n}"},"url":"https://{{Host}}/api/Customer/FindCtcID","description":" <p>\n            Find CtcID and MD5 of a customer(s) based on the criteria sent in the payload: <br /><li>The operator between the different criteria is <b>AND</b></li><li>The maximum returned records is 100</li>\n</p><h4>Body Payload</h4><table><tr><td><h4>FindCtcIDPayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>It's applicable only for the multibrand instances and it's mandatory if the connected user belongs to master brand or higher level\n            You can find the brand(s) id(s) and name(s) by calling the method api/user/GetAllowedBrands</td><td>False</td></tr><tr><td>SearchFilters</td><td>FindCustomerSearchFilters</td><td>Filters to be used to search for customers</td><td>True</td></tr><tr><td><h4>FindCustomerSearchFilters Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td>The card token of the customer</td><td>False</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Ctcid of the Customer : this id shouldn't been saved as it can be merged with another customer</td><td>False</td></tr><tr><td>CustomerAuthentication</td><td>CustomerAuthentication</td><td>Customer Authentication</td><td>False</td></tr><tr><td>DeviceToken</td><td>String</td><td>Push notification device token</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used to find contact details</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>GiftCardCode</td><td>String</td><td>A gift card code</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>The member number of the customer</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>The referrer code of the friend who invited this customer</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>The referrer code of the customer</td><td>False</td></tr><tr><td>ReservationReference</td><td>BookingReference</td><td>A reservation details</td><td>False</td></tr><tr><td>Staff</td><td>Staff</td><td>A staff details</td><td>False</td></tr><tr><td>SupInfo</td><td>SupInfo</td><td>Customer supplementary information</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>A voucher code</td><td>False</td></tr><tr><td><h4>CustomerAuthentication Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplicationName</td><td>String</td><td></td><td>False</td></tr><tr><td>HashedPassword</td><td>String</td><td></td><td>False</td></tr><tr><td>Username</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td><h4>BookingReference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td><td>False</td></tr><tr><td>ReservationReference</td><td>String</td><td>Reservation Reference</td><td>False</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list\n            Mandatory with ReservationReference field</td><td>False</td></tr><tr><td><h4>Staff Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Location</td><td>ApiLocation</td><td>A Staff Location</td><td>False</td></tr><tr><td>StaffID</td><td>String</td><td>A Staff ID</td><td>False</td></tr><tr><td><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>FindCustomerCtcIDOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>List&lt;FindCustomerCtcIDResponse&gt;</td><td>search result</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>FindCustomerCtcIDResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id shouldn't been saved as it can be merged with another customer</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer</td></tr></table>","urlObject":{"protocol":"https","path":["api","Customer","FindCtcID"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"0a5eb92b-3fc1-4111-8f55-7068844b14d6","name":"api/Customer/FindCtcID Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SearchFilters\": {\r\n    \"CtcID\": 1,\r\n    \"FirstName\": \"sample string 1\",\r\n    \"LastName\": \"sample string 2\",\r\n    \"Email\": \"sample string 3\",\r\n    \"MobilePhone\": \"sample string 4\",\r\n    \"Phone\": \"sample string 5\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.4658348+00:00\",\r\n    \"MD5\": \"sample string 6\",\r\n    \"ExternalIdentifier\": {\r\n      \"ExternalID\": \"sample string 1\",\r\n      \"ExternalSource\": \"sample string 2\"\r\n    },\r\n    \"ReferredByCode\": \"sample string 7\",\r\n    \"ReferrerCode\": \"sample string 8\",\r\n    \"MemberNumber\": \"sample string 9\",\r\n    \"CardToken\": \"sample string 10\",\r\n    \"SupInfo\": {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    \"VoucherCode\": \"sample string 11\",\r\n    \"GiftCardCode\": \"sample string 12\",\r\n    \"ReservationReference\": {\r\n      \"ReservationReference\": \"sample string 1\",\r\n      \"SupplierCode\": 1,\r\n      \"BookingSector\": 1\r\n    },\r\n    \"DeviceToken\": \"sample string 13\",\r\n    \"Staff\": {\r\n      \"StaffID\": \"sample string 1\",\r\n      \"Location\": {\r\n        \"ActeolSiteID\": 1,\r\n        \"ExternalLocationID\": \"sample string 2\"\r\n      }\r\n    },\r\n    \"CustomerAuthentication\": {\r\n      \"Username\": \"sample string 1\",\r\n      \"HashedPassword\": \"sample string 2\",\r\n      \"ApplicationName\": \"sample string 3\"\r\n    }\r\n  },\r\n  \"BrandID\": 1\r\n}"},"url":"https://{{Host}}/api/Customer/FindCtcID","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Find CtcID and MD5 of a customer(s) based on the criteria sent in the payload: <br /><li>The operator between the different criteria is <b>AND</b></li><li>The maximum returned records is 100</li>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>FindCtcIDPayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>It's applicable only for the multibrand instances and it's mandatory if the connected user belongs to master brand or higher level\n            You can find the brand(s) id(s) and name(s) by calling the method api/user/GetAllowedBrands</td><td>False</td></tr><tr><td>SearchFilters</td><td>FindCustomerSearchFilters</td><td>Filters to be used to search for customers</td><td>True</td></tr><tr><td colspan=4><h4>FindCustomerSearchFilters Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td>The card token of the customer</td><td>False</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Ctcid of the Customer : this id shouldn't been saved as it can be merged with another customer</td><td>False</td></tr><tr><td>CustomerAuthentication</td><td>CustomerAuthentication</td><td>Customer Authentication</td><td>False</td></tr><tr><td>DeviceToken</td><td>String</td><td>Push notification device token</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used to find contact details</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>GiftCardCode</td><td>String</td><td>A gift card code</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>The member number of the customer</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>The referrer code of the friend who invited this customer</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>The referrer code of the customer</td><td>False</td></tr><tr><td>ReservationReference</td><td>BookingReference</td><td>A reservation details</td><td>False</td></tr><tr><td>Staff</td><td>Staff</td><td>A staff details</td><td>False</td></tr><tr><td>SupInfo</td><td>SupInfo</td><td>Customer supplementary information</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>A voucher code</td><td>False</td></tr><tr><td colspan=4><h4>CustomerAuthentication Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplicationName</td><td>String</td><td></td><td>False</td></tr><tr><td>HashedPassword</td><td>String</td><td></td><td>False</td></tr><tr><td>Username</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td colspan=4><h4>BookingReference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td><td>False</td></tr><tr><td>ReservationReference</td><td>String</td><td>Reservation Reference</td><td>False</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list\n            Mandatory with ReservationReference field</td><td>False</td></tr><tr><td colspan=4><h4>Staff Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Location</td><td>ApiLocation</td><td>A Staff Location</td><td>False</td></tr><tr><td>StaffID</td><td>String</td><td>A Staff ID</td><td>False</td></tr><tr><td colspan=4><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>FindCustomerCtcIDOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>List&lt;FindCustomerCtcIDResponse&gt;</td><td>search result</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>FindCustomerCtcIDResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id shouldn't been saved as it can be merged with another customer</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseData\": [\r\n    {\r\n      \"CtcID\": 1,\r\n      \"MD5\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"CtcID\": 1,\r\n      \"MD5\": \"sample string 2\"\r\n    }\r\n  ],\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"91174b4d-b3c3-41f5-b1ae-a527a1fbe2a4"},{"name":"FindCustomerDetails","id":"8983d3c9-8132-4ef0-9ccc-311bae6d17b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SearchFilters\": {\r\n    \"CtcID\": 1,\r\n    \"FirstName\": \"sample string 1\",\r\n    \"LastName\": \"sample string 2\",\r\n    \"Email\": \"sample string 3\",\r\n    \"MobilePhone\": \"sample string 4\",\r\n    \"Phone\": \"sample string 5\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.4970871+00:00\",\r\n    \"MD5\": \"sample string 6\",\r\n    \"ExternalIdentifier\": {\r\n      \"ExternalID\": \"sample string 1\",\r\n      \"ExternalSource\": \"sample string 2\"\r\n    },\r\n    \"ReferredByCode\": \"sample string 7\",\r\n    \"ReferrerCode\": \"sample string 8\",\r\n    \"MemberNumber\": \"sample string 9\",\r\n    \"CardToken\": \"sample string 10\",\r\n    \"SupInfo\": {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    \"VoucherCode\": \"sample string 11\",\r\n    \"GiftCardCode\": \"sample string 12\",\r\n    \"ReservationReference\": {\r\n      \"ReservationReference\": \"sample string 1\",\r\n      \"SupplierCode\": 1,\r\n      \"BookingSector\": 1\r\n    },\r\n    \"DeviceToken\": \"sample string 13\",\r\n    \"Staff\": {\r\n      \"StaffID\": \"sample string 1\",\r\n      \"Location\": {\r\n        \"ActeolSiteID\": 1,\r\n        \"ExternalLocationID\": \"sample string 2\"\r\n      }\r\n    },\r\n    \"CustomerAuthentication\": {\r\n      \"Username\": \"sample string 1\",\r\n      \"HashedPassword\": \"sample string 2\",\r\n      \"ApplicationName\": \"sample string 3\"\r\n    }\r\n  },\r\n  \"ResponseFilters\": {\r\n    \"ReferrerDetails\": true,\r\n    \"LoyaltyDetails\": true,\r\n    \"SupInfo\": true,\r\n    \"MarketingOptin\": true,\r\n    \"Preferences\": true,\r\n    \"Interests\": true,\r\n    \"InteractionsInfo\": true,\r\n    \"Tags\": true,\r\n    \"CorporateDetails\": true,\r\n    \"CustomerPicture\": true,\r\n    \"StaffDetails\": true,\r\n    \"CustomerNotes\": true,\r\n    \"CustomerAuthentication\": true\r\n  },\r\n  \"BrandID\": 1\r\n}"},"url":"https://{{Host}}/api/Customer/FindCustomerDetails","description":" <p>\n            Find customer(s) details based on the criteria sent in the payload: <br /><li>The operator between the different criterias is <b>AND</b></li><li>You can refine your response by using the the field 'ResponseFilters'. </li><li>The maximum returned records is 10 </li>\n</p><h4>Body Payload</h4><table><tr><td><h4>FindCustomerPayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>It's applicable only for the multibrand instances and it's mandatory if the connected user belongs to master brand or higher level<br />\n            You can find the brand(s) id(s) and name(s) by calling the method api/user/GetAllowedBrands</td><td>False</td></tr><tr><td>ResponseFilters</td><td>FindCustomerResponseFilters</td><td>Filters to be used to refine the call response .<br />\n            By default only personal details and atreemo IDs are included, if you need any other infomation, you should specify it here</td><td>False</td></tr><tr><td>SearchFilters</td><td>FindCustomerSearchFilters</td><td>Filters to be used to search for customers</td><td>True</td></tr><tr><td><h4>FindCustomerResponseFilters Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateDetails</td><td>Boolean</td><td>Include corporate details (Acteol corporate ID and name) to the response</td><td>False</td></tr><tr><td>CustomerAuthentication</td><td>Boolean</td><td>Include customer Authentication to the response</td><td>False</td></tr><tr><td>CustomerNotes</td><td>Boolean</td><td>Include customer notes to the response</td><td>False</td></tr><tr><td>CustomerPicture</td><td>Boolean</td><td>Include customer picture to the response</td><td>False</td></tr><tr><td>InteractionsInfo</td><td>Boolean</td><td>Include customer interactions info (Favourite location, first visit, last visit, preferred location, selected location) to the response</td><td>False</td></tr><tr><td>Interests</td><td>Boolean</td><td>Include customer Interests (Acteol interest ID , Name, status, change date) to the response</td><td>False</td></tr><tr><td>LoyaltyDetails</td><td>Boolean</td><td>Include the loyalty details (CardTokens, Tier ,Balance ,MemberNumbers) to the response</td><td>False</td></tr><tr><td>MarketingOptin</td><td>Boolean</td><td>Include marketing optin (Email, sms, mail, phone, push, webpush, watsapp) to the response</td><td>False</td></tr><tr><td>Preferences</td><td>Boolean</td><td>Include customer preferences (Acteol preference ID , Name, status, change date) to the response</td><td>False</td></tr><tr><td>ReferrerDetails</td><td>Boolean</td><td>Include referrer details (ReferredByCode, ReferrerCode) to the response</td><td>False</td></tr><tr><td>StaffDetails</td><td>Boolean</td><td>Include customer staff details to the response</td><td>False</td></tr><tr><td>SupInfo</td><td>Boolean</td><td>Include SupInfo to the response</td><td>False</td></tr><tr><td>Tags</td><td>Boolean</td><td>Include tags details (tag name , image tag url) to the response</td><td>False</td></tr><tr><td><h4>FindCustomerSearchFilters Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td>The card token of the customer</td><td>False</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Ctcid of the Customer : this id shouldn't been saved as it can be merged with another customer</td><td>False</td></tr><tr><td>CustomerAuthentication</td><td>CustomerAuthentication</td><td>Customer Authentication</td><td>False</td></tr><tr><td>DeviceToken</td><td>String</td><td>Push notification device token</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used to find contact details</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>GiftCardCode</td><td>String</td><td>A gift card code</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>The member number of the customer</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>The referrer code of the friend who invited this customer</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>The referrer code of the customer</td><td>False</td></tr><tr><td>ReservationReference</td><td>BookingReference</td><td>A reservation details</td><td>False</td></tr><tr><td>Staff</td><td>Staff</td><td>A staff details</td><td>False</td></tr><tr><td>SupInfo</td><td>SupInfo</td><td>Customer supplementary information</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>A voucher code</td><td>False</td></tr><tr><td><h4>CustomerAuthentication Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplicationName</td><td>String</td><td></td><td>False</td></tr><tr><td>HashedPassword</td><td>String</td><td></td><td>False</td></tr><tr><td>Username</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td><h4>BookingReference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td><td>False</td></tr><tr><td>ReservationReference</td><td>String</td><td>Reservation Reference</td><td>False</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list\n            Mandatory with ReservationReference field</td><td>False</td></tr><tr><td><h4>Staff Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Location</td><td>ApiLocation</td><td>A Staff Location</td><td>False</td></tr><tr><td>StaffID</td><td>String</td><td>A Staff ID</td><td>False</td></tr><tr><td><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>FindCustomerDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>List&lt;GetCustomerResponse&gt;</td><td>search result</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>GetCustomerResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>Brand ID</td></tr><tr><td>CorporateDetails</td><td>ContactCorporateDetails</td><td>the name and the acteol ID of the customer company</td></tr><tr><td>CpyID</td><td>Int32</td><td>Household id of the customer</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id shouldn't been saved as it can be merged with another customer</td></tr><tr><td>CustomerAuthenticationDetails</td><td>List&lt;CustomerAuthentication&gt;</td><td>the Authentication details of the customer</td></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>the picture of the customer</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>If true Delete all info of Customer</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td>Default False , If true customer will be suspended from all communications</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used to find contact details</td></tr><tr><td>InteractionsInfo</td><td>SitesAndInteractions</td><td>customer interaction info contains all information about sites and visits</td></tr><tr><td>Interests</td><td>List&lt;CustomerInterest&gt;</td><td>Customer Interests</td></tr><tr><td>IsSuspended</td><td>Boolean</td><td>Customer Suspended (Info Read only )</td></tr><tr><td>LastModifiedSource</td><td>String</td><td>Last Modified Source</td></tr><tr><td>LoyaltyDetails</td><td>GetCustomerLoyalty</td><td>Loyalty details</td></tr><tr><td>MarketingOptin</td><td>GetMarketingOptin</td><td>Marketing optin preferences</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer used for my preference site SSO</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>Last modified by user ID</td></tr><tr><td>ModifiedByName</td><td>String</td><td>Last modified by user name</td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td>Last modification date</td></tr><tr><td>PersonalDetails</td><td>CustomerPD</td><td>Personal details of the customer</td></tr><tr><td>Preferences</td><td>List&lt;CustomerPreference&gt;</td><td>Customer preferences</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td></td></tr><tr><td>PushNotificationDetails</td><td>List&lt;PushNotificationDetails&gt;</td><td>Details that will be used to send the push notification</td></tr><tr><td>ReferrerDetails</td><td>GetCustomerReferrer</td><td>Referrer details</td></tr><tr><td>Source</td><td>String</td><td>Source</td></tr><tr><td>StaffDetails</td><td>List&lt;StaffDetails&gt;</td><td>the staff details of the customer</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td></tr><tr><td>Tags</td><td>List&lt;CustomerTag&gt;</td><td>Customer tags</td></tr><tr><td><h4>ContactCorporateDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td>Corporate ID supplied by Acteol (you can GET/POSt corporate from the API Corporate/GET or Corporate/POST)</td></tr><tr><td>CorporateName</td><td>String</td><td>Company name</td></tr><tr><td>Domains</td><td>List&lt;CorporateDomains&gt;</td><td></td></tr><tr><td><h4>CorporateDomains Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CorporateID</td><td>Int32</td><td></td></tr><tr><td>Domain</td><td>String</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td><h4>CustomerAuthentication Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApplicationName</td><td>String</td><td></td></tr><tr><td>HashedPassword</td><td>String</td><td></td></tr><tr><td>Username</td><td>String</td><td></td></tr><tr><td><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td></tr><tr><td><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td></tr><tr><td><h4>SitesAndInteractions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FavouriteLocation</td><td>CustomerLocation</td><td>the customer favourite location details</td></tr><tr><td>FirstVisit</td><td>DateTime (nullable)</td><td>the date time of the first tracked visit</td></tr><tr><td>LastVisit</td><td>DateTime (nullable)</td><td>the date time of the last tracked visit</td></tr><tr><td>PreferredLocation</td><td>CustomerLocation</td><td>the customer preferred location details</td></tr><tr><td>SelectedLocation</td><td>List&lt;CustomerLocation&gt;</td><td>the customer selected locations details</td></tr><tr><td><h4>CustomerLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Latitude</td><td>Double</td><td></td></tr><tr><td>LocationAddress</td><td>String</td><td>The location address</td></tr><tr><td>LocationID</td><td>Int32</td><td>The ID of the Location</td></tr><tr><td>LocationImageURL</td><td>String</td><td>The location image URL</td></tr><tr><td>LocationName</td><td>String</td><td>The location name</td></tr><tr><td>LocationPhone</td><td>String</td><td>The location telephone</td></tr><tr><td>Longitude</td><td>Double</td><td></td></tr><tr><td><h4>CustomerLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Latitude</td><td>Double</td><td></td></tr><tr><td>LocationAddress</td><td>String</td><td>The location address</td></tr><tr><td>LocationID</td><td>Int32</td><td>The ID of the Location</td></tr><tr><td>LocationImageURL</td><td>String</td><td>The location image URL</td></tr><tr><td>LocationName</td><td>String</td><td>The location name</td></tr><tr><td>LocationPhone</td><td>String</td><td>The location telephone</td></tr><tr><td>Longitude</td><td>Double</td><td></td></tr><tr><td><h4>CustomerLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Latitude</td><td>Double</td><td></td></tr><tr><td>LocationAddress</td><td>String</td><td>The location address</td></tr><tr><td>LocationID</td><td>Int32</td><td>The ID of the Location</td></tr><tr><td>LocationImageURL</td><td>String</td><td>The location image URL</td></tr><tr><td>LocationName</td><td>String</td><td>The location name</td></tr><tr><td>LocationPhone</td><td>String</td><td>The location telephone</td></tr><tr><td>Longitude</td><td>Double</td><td></td></tr><tr><td><h4>CustomerInterest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td></tr><tr><td>InterestID</td><td>Int32</td><td>The ID of the Preference</td></tr><tr><td>Name</td><td>String</td><td>Name of the Preference</td></tr><tr><td>Status</td><td>Boolean</td><td>True if it's flagged ; False if not</td></tr><tr><td><h4>GetCustomerLoyalty Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CardsToken</td><td>List&lt;String&gt;</td><td>Collection of cards token linked to this customer</td></tr><tr><td>CurrentTiersName</td><td>String</td><td>the loyalty tiers name where the customer belongs to</td></tr><tr><td>CurrentYearPoints</td><td>Double</td><td></td></tr><tr><td>CyclePointsBalance</td><td>Double</td><td>The points/stamps balance of current cycle (this will used only if the loyalty program will contains multiple thresholds)</td></tr><tr><td>LifeTimePoints</td><td>Double</td><td>The sum of points/stamps earned all time (from the first day of being a loyal cutomer)</td></tr><tr><td>LoyaltyCashBalance</td><td>Double</td><td>Cash balance of the requested customer</td></tr><tr><td>LoyaltyPointsBalance</td><td>Double</td><td>Points/Stamps balance of the requested customer</td></tr><tr><td>MemberNumbers</td><td>List&lt;String&gt;</td><td>Collection of member numbers linked to this customer</td></tr><tr><td>NextTiersName</td><td>String</td><td>the loyalty tiers name that the customer can achieve</td></tr><tr><td>PARTokens</td><td>List&lt;String&gt;</td><td>Collection of PAR token linked to this customer</td></tr><tr><td>PointsNeededForNextRewards</td><td>Double</td><td>The number of points/stamps to be earned to get the next reward (this will used only if the loyalty program will contains a threshold)</td></tr><tr><td>TierLastUpdatedDate</td><td>DateTime (nullable)</td><td>The last update date of tier change</td></tr><tr><td>TiersExpirationDate</td><td>DateTime (nullable)</td><td>the date when the customer will be downgraded</td></tr><tr><td><h4>GetMarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td></tr><tr><td><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td></tr><tr><td>Title</td><td>String</td><td>Person title</td></tr><tr><td><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td><h4>CustomerPreference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td></tr><tr><td>Name</td><td>String</td><td>Name of the Preference</td></tr><tr><td>PreferenceID</td><td>Int32</td><td>The ID of the Preference</td></tr><tr><td>Status</td><td>Boolean</td><td>True if it's flagged ; False if not</td></tr><tr><td><h4>PushNotificationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AppID</td><td>Int32</td><td>Clients having more thant one Applications will need to add an App ID which will be supplied by Acteol</td></tr><tr><td>AppName</td><td>String</td><td>App Name which will be supplied by Acteol</td></tr><tr><td>DeviceToken</td><td>String</td><td>Device token that will be used to send the message. If multiple tokens are sent Acteol will use the latest token sent</td></tr><tr><td><h4>GetCustomerReferrer Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ReferredByCode</td><td>String</td><td>The referrer code of the friend who invited this customer</td></tr><tr><td>ReferrerCode</td><td>List&lt;String&gt;</td><td>Collection of referrer codes linked to this customer</td></tr><tr><td><h4>StaffDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CompanyName</td><td>String</td><td></td></tr><tr><td>ContinuousServiceDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Contract</td><td>String</td><td></td></tr><tr><td>ContractCode</td><td>String</td><td></td></tr><tr><td>CreateDate</td><td>DateTime</td><td></td></tr><tr><td>CustomField1</td><td>String</td><td></td></tr><tr><td>CustomField2</td><td>String</td><td></td></tr><tr><td>CustomField3</td><td>String</td><td></td></tr><tr><td>CustomField4</td><td>String</td><td></td></tr><tr><td>CustomField5</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>EndReason</td><td>String</td><td></td></tr><tr><td>JobTitle</td><td>String</td><td></td></tr><tr><td>Location</td><td>ApiLocation</td><td></td></tr><tr><td>Paybasis</td><td>String</td><td></td></tr><tr><td>StaffID</td><td>String</td><td></td></tr><tr><td>StartDate</td><td>DateTime</td><td></td></tr><tr><td>WorkEmail</td><td>String</td><td></td></tr><tr><td><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>CustomerTag Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>TagImageURL</td><td>String</td><td>The tag image URL</td></tr><tr><td>TagName</td><td>String</td><td>The tag  Name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Customer","FindCustomerDetails"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"4ac06427-1bf3-43cb-9c16-32ef89b9a8d0","name":"api/Customer/FindCustomerDetails Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SearchFilters\": {\r\n    \"CtcID\": 1,\r\n    \"FirstName\": \"sample string 1\",\r\n    \"LastName\": \"sample string 2\",\r\n    \"Email\": \"sample string 3\",\r\n    \"MobilePhone\": \"sample string 4\",\r\n    \"Phone\": \"sample string 5\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.4970871+00:00\",\r\n    \"MD5\": \"sample string 6\",\r\n    \"ExternalIdentifier\": {\r\n      \"ExternalID\": \"sample string 1\",\r\n      \"ExternalSource\": \"sample string 2\"\r\n    },\r\n    \"ReferredByCode\": \"sample string 7\",\r\n    \"ReferrerCode\": \"sample string 8\",\r\n    \"MemberNumber\": \"sample string 9\",\r\n    \"CardToken\": \"sample string 10\",\r\n    \"SupInfo\": {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    \"VoucherCode\": \"sample string 11\",\r\n    \"GiftCardCode\": \"sample string 12\",\r\n    \"ReservationReference\": {\r\n      \"ReservationReference\": \"sample string 1\",\r\n      \"SupplierCode\": 1,\r\n      \"BookingSector\": 1\r\n    },\r\n    \"DeviceToken\": \"sample string 13\",\r\n    \"Staff\": {\r\n      \"StaffID\": \"sample string 1\",\r\n      \"Location\": {\r\n        \"ActeolSiteID\": 1,\r\n        \"ExternalLocationID\": \"sample string 2\"\r\n      }\r\n    },\r\n    \"CustomerAuthentication\": {\r\n      \"Username\": \"sample string 1\",\r\n      \"HashedPassword\": \"sample string 2\",\r\n      \"ApplicationName\": \"sample string 3\"\r\n    }\r\n  },\r\n  \"ResponseFilters\": {\r\n    \"ReferrerDetails\": true,\r\n    \"LoyaltyDetails\": true,\r\n    \"SupInfo\": true,\r\n    \"MarketingOptin\": true,\r\n    \"Preferences\": true,\r\n    \"Interests\": true,\r\n    \"InteractionsInfo\": true,\r\n    \"Tags\": true,\r\n    \"CorporateDetails\": true,\r\n    \"CustomerPicture\": true,\r\n    \"StaffDetails\": true,\r\n    \"CustomerNotes\": true,\r\n    \"CustomerAuthentication\": true\r\n  },\r\n  \"BrandID\": 1\r\n}"},"url":"https://{{Host}}/api/Customer/FindCustomerDetails","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Find customer(s) details based on the criteria sent in the payload: <br /><li>The operator between the different criterias is <b>AND</b></li><li>You can refine your response by using the the field 'ResponseFilters'. </li><li>The maximum returned records is 10 </li>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>FindCustomerPayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>It's applicable only for the multibrand instances and it's mandatory if the connected user belongs to master brand or higher level<br />\n            You can find the brand(s) id(s) and name(s) by calling the method api/user/GetAllowedBrands</td><td>False</td></tr><tr><td>ResponseFilters</td><td>FindCustomerResponseFilters</td><td>Filters to be used to refine the call response .<br />\n            By default only personal details and atreemo IDs are included, if you need any other infomation, you should specify it here</td><td>False</td></tr><tr><td>SearchFilters</td><td>FindCustomerSearchFilters</td><td>Filters to be used to search for customers</td><td>True</td></tr><tr><td colspan=4><h4>FindCustomerResponseFilters Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateDetails</td><td>Boolean</td><td>Include corporate details (Acteol corporate ID and name) to the response</td><td>False</td></tr><tr><td>CustomerAuthentication</td><td>Boolean</td><td>Include customer Authentication to the response</td><td>False</td></tr><tr><td>CustomerNotes</td><td>Boolean</td><td>Include customer notes to the response</td><td>False</td></tr><tr><td>CustomerPicture</td><td>Boolean</td><td>Include customer picture to the response</td><td>False</td></tr><tr><td>InteractionsInfo</td><td>Boolean</td><td>Include customer interactions info (Favourite location, first visit, last visit, preferred location, selected location) to the response</td><td>False</td></tr><tr><td>Interests</td><td>Boolean</td><td>Include customer Interests (Acteol interest ID , Name, status, change date) to the response</td><td>False</td></tr><tr><td>LoyaltyDetails</td><td>Boolean</td><td>Include the loyalty details (CardTokens, Tier ,Balance ,MemberNumbers) to the response</td><td>False</td></tr><tr><td>MarketingOptin</td><td>Boolean</td><td>Include marketing optin (Email, sms, mail, phone, push, webpush, watsapp) to the response</td><td>False</td></tr><tr><td>Preferences</td><td>Boolean</td><td>Include customer preferences (Acteol preference ID , Name, status, change date) to the response</td><td>False</td></tr><tr><td>ReferrerDetails</td><td>Boolean</td><td>Include referrer details (ReferredByCode, ReferrerCode) to the response</td><td>False</td></tr><tr><td>StaffDetails</td><td>Boolean</td><td>Include customer staff details to the response</td><td>False</td></tr><tr><td>SupInfo</td><td>Boolean</td><td>Include SupInfo to the response</td><td>False</td></tr><tr><td>Tags</td><td>Boolean</td><td>Include tags details (tag name , image tag url) to the response</td><td>False</td></tr><tr><td colspan=4><h4>FindCustomerSearchFilters Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td>The card token of the customer</td><td>False</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Ctcid of the Customer : this id shouldn't been saved as it can be merged with another customer</td><td>False</td></tr><tr><td>CustomerAuthentication</td><td>CustomerAuthentication</td><td>Customer Authentication</td><td>False</td></tr><tr><td>DeviceToken</td><td>String</td><td>Push notification device token</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used to find contact details</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>GiftCardCode</td><td>String</td><td>A gift card code</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>The member number of the customer</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>The referrer code of the friend who invited this customer</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>The referrer code of the customer</td><td>False</td></tr><tr><td>ReservationReference</td><td>BookingReference</td><td>A reservation details</td><td>False</td></tr><tr><td>Staff</td><td>Staff</td><td>A staff details</td><td>False</td></tr><tr><td>SupInfo</td><td>SupInfo</td><td>Customer supplementary information</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>A voucher code</td><td>False</td></tr><tr><td colspan=4><h4>CustomerAuthentication Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplicationName</td><td>String</td><td></td><td>False</td></tr><tr><td>HashedPassword</td><td>String</td><td></td><td>False</td></tr><tr><td>Username</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td colspan=4><h4>BookingReference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td><td>False</td></tr><tr><td>ReservationReference</td><td>String</td><td>Reservation Reference</td><td>False</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list\n            Mandatory with ReservationReference field</td><td>False</td></tr><tr><td colspan=4><h4>Staff Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Location</td><td>ApiLocation</td><td>A Staff Location</td><td>False</td></tr><tr><td>StaffID</td><td>String</td><td>A Staff ID</td><td>False</td></tr><tr><td colspan=4><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>FindCustomerDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>List&lt;GetCustomerResponse&gt;</td><td>search result</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>GetCustomerResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>Brand ID</td></tr><tr><td>CorporateDetails</td><td>ContactCorporateDetails</td><td>the name and the acteol ID of the customer company</td></tr><tr><td>CpyID</td><td>Int32</td><td>Household id of the customer</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id shouldn't been saved as it can be merged with another customer</td></tr><tr><td>CustomerAuthenticationDetails</td><td>List&lt;CustomerAuthentication&gt;</td><td>the Authentication details of the customer</td></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>the picture of the customer</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>If true Delete all info of Customer</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td>Default False , If true customer will be suspended from all communications</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used to find contact details</td></tr><tr><td>InteractionsInfo</td><td>SitesAndInteractions</td><td>customer interaction info contains all information about sites and visits</td></tr><tr><td>Interests</td><td>List&lt;CustomerInterest&gt;</td><td>Customer Interests</td></tr><tr><td>IsSuspended</td><td>Boolean</td><td>Customer Suspended (Info Read only )</td></tr><tr><td>LastModifiedSource</td><td>String</td><td>Last Modified Source</td></tr><tr><td>LoyaltyDetails</td><td>GetCustomerLoyalty</td><td>Loyalty details</td></tr><tr><td>MarketingOptin</td><td>GetMarketingOptin</td><td>Marketing optin preferences</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer used for my preference site SSO</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>Last modified by user ID</td></tr><tr><td>ModifiedByName</td><td>String</td><td>Last modified by user name</td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td>Last modification date</td></tr><tr><td>PersonalDetails</td><td>CustomerPD</td><td>Personal details of the customer</td></tr><tr><td>Preferences</td><td>List&lt;CustomerPreference&gt;</td><td>Customer preferences</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td></td></tr><tr><td>PushNotificationDetails</td><td>List&lt;PushNotificationDetails&gt;</td><td>Details that will be used to send the push notification</td></tr><tr><td>ReferrerDetails</td><td>GetCustomerReferrer</td><td>Referrer details</td></tr><tr><td>Source</td><td>String</td><td>Source</td></tr><tr><td>StaffDetails</td><td>List&lt;StaffDetails&gt;</td><td>the staff details of the customer</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td></tr><tr><td>Tags</td><td>List&lt;CustomerTag&gt;</td><td>Customer tags</td></tr><tr><td colspan=3><h4>ContactCorporateDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td>Corporate ID supplied by Acteol (you can GET/POSt corporate from the API Corporate/GET or Corporate/POST)</td></tr><tr><td>CorporateName</td><td>String</td><td>Company name</td></tr><tr><td>Domains</td><td>List&lt;CorporateDomains&gt;</td><td></td></tr><tr><td colspan=3><h4>CorporateDomains Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CorporateID</td><td>Int32</td><td></td></tr><tr><td>Domain</td><td>String</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>CustomerAuthentication Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApplicationName</td><td>String</td><td></td></tr><tr><td>HashedPassword</td><td>String</td><td></td></tr><tr><td>Username</td><td>String</td><td></td></tr><tr><td colspan=3><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td></tr><tr><td colspan=3><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td></tr><tr><td colspan=3><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td></tr><tr><td colspan=3><h4>SitesAndInteractions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FavouriteLocation</td><td>CustomerLocation</td><td>the customer favourite location details</td></tr><tr><td>FirstVisit</td><td>DateTime (nullable)</td><td>the date time of the first tracked visit</td></tr><tr><td>LastVisit</td><td>DateTime (nullable)</td><td>the date time of the last tracked visit</td></tr><tr><td>PreferredLocation</td><td>CustomerLocation</td><td>the customer preferred location details</td></tr><tr><td>SelectedLocation</td><td>List&lt;CustomerLocation&gt;</td><td>the customer selected locations details</td></tr><tr><td colspan=3><h4>CustomerLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Latitude</td><td>Double</td><td></td></tr><tr><td>LocationAddress</td><td>String</td><td>The location address</td></tr><tr><td>LocationID</td><td>Int32</td><td>The ID of the Location</td></tr><tr><td>LocationImageURL</td><td>String</td><td>The location image URL</td></tr><tr><td>LocationName</td><td>String</td><td>The location name</td></tr><tr><td>LocationPhone</td><td>String</td><td>The location telephone</td></tr><tr><td>Longitude</td><td>Double</td><td></td></tr><tr><td colspan=3><h4>CustomerLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Latitude</td><td>Double</td><td></td></tr><tr><td>LocationAddress</td><td>String</td><td>The location address</td></tr><tr><td>LocationID</td><td>Int32</td><td>The ID of the Location</td></tr><tr><td>LocationImageURL</td><td>String</td><td>The location image URL</td></tr><tr><td>LocationName</td><td>String</td><td>The location name</td></tr><tr><td>LocationPhone</td><td>String</td><td>The location telephone</td></tr><tr><td>Longitude</td><td>Double</td><td></td></tr><tr><td colspan=3><h4>CustomerLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Latitude</td><td>Double</td><td></td></tr><tr><td>LocationAddress</td><td>String</td><td>The location address</td></tr><tr><td>LocationID</td><td>Int32</td><td>The ID of the Location</td></tr><tr><td>LocationImageURL</td><td>String</td><td>The location image URL</td></tr><tr><td>LocationName</td><td>String</td><td>The location name</td></tr><tr><td>LocationPhone</td><td>String</td><td>The location telephone</td></tr><tr><td>Longitude</td><td>Double</td><td></td></tr><tr><td colspan=3><h4>CustomerInterest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td></tr><tr><td>InterestID</td><td>Int32</td><td>The ID of the Preference</td></tr><tr><td>Name</td><td>String</td><td>Name of the Preference</td></tr><tr><td>Status</td><td>Boolean</td><td>True if it's flagged ; False if not</td></tr><tr><td colspan=3><h4>GetCustomerLoyalty Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CardsToken</td><td>List&lt;String&gt;</td><td>Collection of cards token linked to this customer</td></tr><tr><td>CurrentTiersName</td><td>String</td><td>the loyalty tiers name where the customer belongs to</td></tr><tr><td>CurrentYearPoints</td><td>Double</td><td></td></tr><tr><td>CyclePointsBalance</td><td>Double</td><td>The points/stamps balance of current cycle (this will used only if the loyalty program will contains multiple thresholds)</td></tr><tr><td>LifeTimePoints</td><td>Double</td><td>The sum of points/stamps earned all time (from the first day of being a loyal cutomer)</td></tr><tr><td>LoyaltyCashBalance</td><td>Double</td><td>Cash balance of the requested customer</td></tr><tr><td>LoyaltyPointsBalance</td><td>Double</td><td>Points/Stamps balance of the requested customer</td></tr><tr><td>MemberNumbers</td><td>List&lt;String&gt;</td><td>Collection of member numbers linked to this customer</td></tr><tr><td>NextTiersName</td><td>String</td><td>the loyalty tiers name that the customer can achieve</td></tr><tr><td>PARTokens</td><td>List&lt;String&gt;</td><td>Collection of PAR token linked to this customer</td></tr><tr><td>PointsNeededForNextRewards</td><td>Double</td><td>The number of points/stamps to be earned to get the next reward (this will used only if the loyalty program will contains a threshold)</td></tr><tr><td>TierLastUpdatedDate</td><td>DateTime (nullable)</td><td>The last update date of tier change</td></tr><tr><td>TiersExpirationDate</td><td>DateTime (nullable)</td><td>the date when the customer will be downgraded</td></tr><tr><td colspan=3><h4>GetMarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td></tr><tr><td colspan=3><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td></tr><tr><td>Title</td><td>String</td><td>Person title</td></tr><tr><td colspan=3><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td colspan=3><h4>CustomerPreference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td></tr><tr><td>Name</td><td>String</td><td>Name of the Preference</td></tr><tr><td>PreferenceID</td><td>Int32</td><td>The ID of the Preference</td></tr><tr><td>Status</td><td>Boolean</td><td>True if it's flagged ; False if not</td></tr><tr><td colspan=3><h4>PushNotificationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AppID</td><td>Int32</td><td>Clients having more thant one Applications will need to add an App ID which will be supplied by Acteol</td></tr><tr><td>AppName</td><td>String</td><td>App Name which will be supplied by Acteol</td></tr><tr><td>DeviceToken</td><td>String</td><td>Device token that will be used to send the message. If multiple tokens are sent Acteol will use the latest token sent</td></tr><tr><td colspan=3><h4>GetCustomerReferrer Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ReferredByCode</td><td>String</td><td>The referrer code of the friend who invited this customer</td></tr><tr><td>ReferrerCode</td><td>List&lt;String&gt;</td><td>Collection of referrer codes linked to this customer</td></tr><tr><td colspan=3><h4>StaffDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CompanyName</td><td>String</td><td></td></tr><tr><td>ContinuousServiceDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Contract</td><td>String</td><td></td></tr><tr><td>ContractCode</td><td>String</td><td></td></tr><tr><td>CreateDate</td><td>DateTime</td><td></td></tr><tr><td>CustomField1</td><td>String</td><td></td></tr><tr><td>CustomField2</td><td>String</td><td></td></tr><tr><td>CustomField3</td><td>String</td><td></td></tr><tr><td>CustomField4</td><td>String</td><td></td></tr><tr><td>CustomField5</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>EndReason</td><td>String</td><td></td></tr><tr><td>JobTitle</td><td>String</td><td></td></tr><tr><td>Location</td><td>ApiLocation</td><td></td></tr><tr><td>Paybasis</td><td>String</td><td></td></tr><tr><td>StaffID</td><td>String</td><td></td></tr><tr><td>StartDate</td><td>DateTime</td><td></td></tr><tr><td>WorkEmail</td><td>String</td><td></td></tr><tr><td colspan=3><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>CustomerTag Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>TagImageURL</td><td>String</td><td>The tag image URL</td></tr><tr><td>TagName</td><td>String</td><td>The tag  Name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseData\": [\r\n    {\r\n      \"CtcID\": 1,\r\n      \"CpyID\": 2,\r\n      \"CreateDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"ModifiedByName\": \"sample string 3\",\r\n      \"Source\": \"sample string 4\",\r\n      \"LastModifiedSource\": \"sample string 5\",\r\n      \"MD5\": \"sample string 6\",\r\n      \"ExternalIdentifier\": {\r\n        \"ExternalID\": \"sample string 1\",\r\n        \"ExternalSource\": \"sample string 2\"\r\n      },\r\n      \"PersonalDetails\": {\r\n        \"Title\": \"sample string 1\",\r\n        \"FirstName\": \"sample string 2\",\r\n        \"LastName\": \"sample string 3\",\r\n        \"Email\": \"sample string 4\",\r\n        \"MobilePhone\": \"sample string 5\",\r\n        \"Phone\": \"sample string 6\",\r\n        \"BirthDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n        \"JobTitle\": \"sample string 7\",\r\n        \"ParentEmailAddress\": \"sample string 8\",\r\n        \"Gender\": 0,\r\n        \"CustomerAddress\": {\r\n          \"Address1\": \"sample string 2\",\r\n          \"Address2\": \"sample string 3\",\r\n          \"Address3\": \"sample string 4\",\r\n          \"City\": \"sample string 5\",\r\n          \"PostCode\": \"sample string 6\",\r\n          \"StateName\": \"sample string 7\",\r\n          \"CountryCode\": \"sample string 8\",\r\n          \"Phone\": \"sample string 9\"\r\n        },\r\n        \"DoNotExport\": true\r\n      },\r\n      \"ReferrerDetails\": {\r\n        \"ReferredByCode\": \"sample string 1\",\r\n        \"ReferrerCode\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"LoyaltyDetails\": {\r\n        \"LoyaltyPointsBalance\": 1.1,\r\n        \"LoyaltyCashBalance\": 2.1,\r\n        \"LifeTimePoints\": 3.1,\r\n        \"CurrentYearPoints\": 4.1,\r\n        \"CyclePointsBalance\": 5.1,\r\n        \"PointsNeededForNextRewards\": 6.1,\r\n        \"CurrentTiersName\": \"sample string 7\",\r\n        \"TierLastUpdatedDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n        \"NextTiersName\": \"sample string 8\",\r\n        \"TiersExpirationDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n        \"MemberNumbers\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CardsToken\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"PARTokens\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"MarketingOptin\": {\r\n        \"EmailOptin\": true,\r\n        \"SmsOptin\": true,\r\n        \"MailOptin\": true,\r\n        \"PhoneOptin\": true,\r\n        \"PushNotificationOptin\": true,\r\n        \"WebPushNotificationOptin\": true,\r\n        \"WhatsAppOptin\": true,\r\n        \"AppOptin\": true\r\n      },\r\n      \"Preferences\": [\r\n        {\r\n          \"ChangeDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"PreferenceID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Status\": true\r\n        },\r\n        {\r\n          \"ChangeDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"PreferenceID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Status\": true\r\n        }\r\n      ],\r\n      \"Interests\": [\r\n        {\r\n          \"ChangeDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"InterestID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Status\": true\r\n        },\r\n        {\r\n          \"ChangeDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"InterestID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Status\": true\r\n        }\r\n      ],\r\n      \"Tags\": [\r\n        {\r\n          \"TagName\": \"sample string 1\",\r\n          \"TagImageURL\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"TagName\": \"sample string 1\",\r\n          \"TagImageURL\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"InteractionsInfo\": {\r\n        \"PreferredLocation\": {\r\n          \"LocationID\": 1,\r\n          \"LocationName\": \"sample string 2\",\r\n          \"LocationImageURL\": \"sample string 3\",\r\n          \"LocationAddress\": \"sample string 4\",\r\n          \"LocationPhone\": \"sample string 5\",\r\n          \"Latitude\": 6.1,\r\n          \"Longitude\": 7.1\r\n        },\r\n        \"SelectedLocation\": [\r\n          {\r\n            \"LocationID\": 1,\r\n            \"LocationName\": \"sample string 2\",\r\n            \"LocationImageURL\": \"sample string 3\",\r\n            \"LocationAddress\": \"sample string 4\",\r\n            \"LocationPhone\": \"sample string 5\",\r\n            \"Latitude\": 6.1,\r\n            \"Longitude\": 7.1\r\n          },\r\n          {\r\n            \"LocationID\": 1,\r\n            \"LocationName\": \"sample string 2\",\r\n            \"LocationImageURL\": \"sample string 3\",\r\n            \"LocationAddress\": \"sample string 4\",\r\n            \"LocationPhone\": \"sample string 5\",\r\n            \"Latitude\": 6.1,\r\n            \"Longitude\": 7.1\r\n          }\r\n        ],\r\n        \"FavouriteLocation\": {\r\n          \"LocationID\": 1,\r\n          \"LocationName\": \"sample string 2\",\r\n          \"LocationImageURL\": \"sample string 3\",\r\n          \"LocationAddress\": \"sample string 4\",\r\n          \"LocationPhone\": \"sample string 5\",\r\n          \"Latitude\": 6.1,\r\n          \"Longitude\": 7.1\r\n        },\r\n        \"FirstVisit\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n        \"LastVisit\": \"2026-03-25T07:30:08.5127253+00:00\"\r\n      },\r\n      \"ProcessMydata\": true,\r\n      \"IsSuspended\": true,\r\n      \"DeleteMyData\": true,\r\n      \"DoNotExport\": true,\r\n      \"BrandID\": 1,\r\n      \"CorporateDetails\": {\r\n        \"CorporateID\": 1,\r\n        \"CorporateName\": \"sample string 1\",\r\n        \"Domains\": [\r\n          {\r\n            \"ID\": 1,\r\n            \"CorporateID\": 2,\r\n            \"Domain\": \"sample string 3\"\r\n          },\r\n          {\r\n            \"ID\": 1,\r\n            \"CorporateID\": 2,\r\n            \"Domain\": \"sample string 3\"\r\n          }\r\n        ]\r\n      },\r\n      \"CustomerPicture\": {\r\n        \"PictureName\": \"sample string 1\",\r\n        \"PictureExtension\": \"sample string 2\",\r\n        \"PictureData\": \"sample string 3\"\r\n      },\r\n      \"StaffDetails\": [\r\n        {\r\n          \"StaffID\": \"sample string 1\",\r\n          \"WorkEmail\": \"sample string 2\",\r\n          \"StartDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"Contract\": \"sample string 4\",\r\n          \"ContractCode\": \"sample string 5\",\r\n          \"JobTitle\": \"sample string 6\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"EndDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"EndReason\": \"sample string 8\",\r\n          \"Location\": {\r\n            \"ActeolSiteID\": 1,\r\n            \"ExternalLocationID\": \"sample string 2\"\r\n          },\r\n          \"CompanyName\": \"sample string 9\",\r\n          \"Paybasis\": \"sample string 10\",\r\n          \"ContinuousServiceDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"CustomField1\": \"sample string 11\",\r\n          \"CustomField2\": \"sample string 12\",\r\n          \"CustomField3\": \"sample string 13\",\r\n          \"CustomField4\": \"sample string 14\",\r\n          \"CustomField5\": \"sample string 15\"\r\n        },\r\n        {\r\n          \"StaffID\": \"sample string 1\",\r\n          \"WorkEmail\": \"sample string 2\",\r\n          \"StartDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"Contract\": \"sample string 4\",\r\n          \"ContractCode\": \"sample string 5\",\r\n          \"JobTitle\": \"sample string 6\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"EndDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"EndReason\": \"sample string 8\",\r\n          \"Location\": {\r\n            \"ActeolSiteID\": 1,\r\n            \"ExternalLocationID\": \"sample string 2\"\r\n          },\r\n          \"CompanyName\": \"sample string 9\",\r\n          \"Paybasis\": \"sample string 10\",\r\n          \"ContinuousServiceDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"CustomField1\": \"sample string 11\",\r\n          \"CustomField2\": \"sample string 12\",\r\n          \"CustomField3\": \"sample string 13\",\r\n          \"CustomField4\": \"sample string 14\",\r\n          \"CustomField5\": \"sample string 15\"\r\n        }\r\n      ],\r\n      \"PushNotificationDetails\": [\r\n        {\r\n          \"DeviceToken\": \"sample string 1\",\r\n          \"AppID\": 2,\r\n          \"AppName\": \"sample string 3\"\r\n        },\r\n        {\r\n          \"DeviceToken\": \"sample string 1\",\r\n          \"AppID\": 2,\r\n          \"AppName\": \"sample string 3\"\r\n        }\r\n      ],\r\n      \"CustomerNotes\": [\r\n        {\r\n          \"Note\": \"sample string 1\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.5127253+00:00\"\r\n        },\r\n        {\r\n          \"Note\": \"sample string 1\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.5127253+00:00\"\r\n        }\r\n      ],\r\n      \"CustomerAuthenticationDetails\": [\r\n        {\r\n          \"Username\": \"sample string 1\",\r\n          \"HashedPassword\": \"sample string 2\",\r\n          \"ApplicationName\": \"sample string 3\"\r\n        },\r\n        {\r\n          \"Username\": \"sample string 1\",\r\n          \"HashedPassword\": \"sample string 2\",\r\n          \"ApplicationName\": \"sample string 3\"\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"CtcID\": 1,\r\n      \"CpyID\": 2,\r\n      \"CreateDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"ModifiedByName\": \"sample string 3\",\r\n      \"Source\": \"sample string 4\",\r\n      \"LastModifiedSource\": \"sample string 5\",\r\n      \"MD5\": \"sample string 6\",\r\n      \"ExternalIdentifier\": {\r\n        \"ExternalID\": \"sample string 1\",\r\n        \"ExternalSource\": \"sample string 2\"\r\n      },\r\n      \"PersonalDetails\": {\r\n        \"Title\": \"sample string 1\",\r\n        \"FirstName\": \"sample string 2\",\r\n        \"LastName\": \"sample string 3\",\r\n        \"Email\": \"sample string 4\",\r\n        \"MobilePhone\": \"sample string 5\",\r\n        \"Phone\": \"sample string 6\",\r\n        \"BirthDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n        \"JobTitle\": \"sample string 7\",\r\n        \"ParentEmailAddress\": \"sample string 8\",\r\n        \"Gender\": 0,\r\n        \"CustomerAddress\": {\r\n          \"Address1\": \"sample string 2\",\r\n          \"Address2\": \"sample string 3\",\r\n          \"Address3\": \"sample string 4\",\r\n          \"City\": \"sample string 5\",\r\n          \"PostCode\": \"sample string 6\",\r\n          \"StateName\": \"sample string 7\",\r\n          \"CountryCode\": \"sample string 8\",\r\n          \"Phone\": \"sample string 9\"\r\n        },\r\n        \"DoNotExport\": true\r\n      },\r\n      \"ReferrerDetails\": {\r\n        \"ReferredByCode\": \"sample string 1\",\r\n        \"ReferrerCode\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"LoyaltyDetails\": {\r\n        \"LoyaltyPointsBalance\": 1.1,\r\n        \"LoyaltyCashBalance\": 2.1,\r\n        \"LifeTimePoints\": 3.1,\r\n        \"CurrentYearPoints\": 4.1,\r\n        \"CyclePointsBalance\": 5.1,\r\n        \"PointsNeededForNextRewards\": 6.1,\r\n        \"CurrentTiersName\": \"sample string 7\",\r\n        \"TierLastUpdatedDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n        \"NextTiersName\": \"sample string 8\",\r\n        \"TiersExpirationDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n        \"MemberNumbers\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CardsToken\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"PARTokens\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"MarketingOptin\": {\r\n        \"EmailOptin\": true,\r\n        \"SmsOptin\": true,\r\n        \"MailOptin\": true,\r\n        \"PhoneOptin\": true,\r\n        \"PushNotificationOptin\": true,\r\n        \"WebPushNotificationOptin\": true,\r\n        \"WhatsAppOptin\": true,\r\n        \"AppOptin\": true\r\n      },\r\n      \"Preferences\": [\r\n        {\r\n          \"ChangeDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"PreferenceID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Status\": true\r\n        },\r\n        {\r\n          \"ChangeDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"PreferenceID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Status\": true\r\n        }\r\n      ],\r\n      \"Interests\": [\r\n        {\r\n          \"ChangeDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"InterestID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Status\": true\r\n        },\r\n        {\r\n          \"ChangeDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"InterestID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Status\": true\r\n        }\r\n      ],\r\n      \"Tags\": [\r\n        {\r\n          \"TagName\": \"sample string 1\",\r\n          \"TagImageURL\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"TagName\": \"sample string 1\",\r\n          \"TagImageURL\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"InteractionsInfo\": {\r\n        \"PreferredLocation\": {\r\n          \"LocationID\": 1,\r\n          \"LocationName\": \"sample string 2\",\r\n          \"LocationImageURL\": \"sample string 3\",\r\n          \"LocationAddress\": \"sample string 4\",\r\n          \"LocationPhone\": \"sample string 5\",\r\n          \"Latitude\": 6.1,\r\n          \"Longitude\": 7.1\r\n        },\r\n        \"SelectedLocation\": [\r\n          {\r\n            \"LocationID\": 1,\r\n            \"LocationName\": \"sample string 2\",\r\n            \"LocationImageURL\": \"sample string 3\",\r\n            \"LocationAddress\": \"sample string 4\",\r\n            \"LocationPhone\": \"sample string 5\",\r\n            \"Latitude\": 6.1,\r\n            \"Longitude\": 7.1\r\n          },\r\n          {\r\n            \"LocationID\": 1,\r\n            \"LocationName\": \"sample string 2\",\r\n            \"LocationImageURL\": \"sample string 3\",\r\n            \"LocationAddress\": \"sample string 4\",\r\n            \"LocationPhone\": \"sample string 5\",\r\n            \"Latitude\": 6.1,\r\n            \"Longitude\": 7.1\r\n          }\r\n        ],\r\n        \"FavouriteLocation\": {\r\n          \"LocationID\": 1,\r\n          \"LocationName\": \"sample string 2\",\r\n          \"LocationImageURL\": \"sample string 3\",\r\n          \"LocationAddress\": \"sample string 4\",\r\n          \"LocationPhone\": \"sample string 5\",\r\n          \"Latitude\": 6.1,\r\n          \"Longitude\": 7.1\r\n        },\r\n        \"FirstVisit\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n        \"LastVisit\": \"2026-03-25T07:30:08.5127253+00:00\"\r\n      },\r\n      \"ProcessMydata\": true,\r\n      \"IsSuspended\": true,\r\n      \"DeleteMyData\": true,\r\n      \"DoNotExport\": true,\r\n      \"BrandID\": 1,\r\n      \"CorporateDetails\": {\r\n        \"CorporateID\": 1,\r\n        \"CorporateName\": \"sample string 1\",\r\n        \"Domains\": [\r\n          {\r\n            \"ID\": 1,\r\n            \"CorporateID\": 2,\r\n            \"Domain\": \"sample string 3\"\r\n          },\r\n          {\r\n            \"ID\": 1,\r\n            \"CorporateID\": 2,\r\n            \"Domain\": \"sample string 3\"\r\n          }\r\n        ]\r\n      },\r\n      \"CustomerPicture\": {\r\n        \"PictureName\": \"sample string 1\",\r\n        \"PictureExtension\": \"sample string 2\",\r\n        \"PictureData\": \"sample string 3\"\r\n      },\r\n      \"StaffDetails\": [\r\n        {\r\n          \"StaffID\": \"sample string 1\",\r\n          \"WorkEmail\": \"sample string 2\",\r\n          \"StartDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"Contract\": \"sample string 4\",\r\n          \"ContractCode\": \"sample string 5\",\r\n          \"JobTitle\": \"sample string 6\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"EndDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"EndReason\": \"sample string 8\",\r\n          \"Location\": {\r\n            \"ActeolSiteID\": 1,\r\n            \"ExternalLocationID\": \"sample string 2\"\r\n          },\r\n          \"CompanyName\": \"sample string 9\",\r\n          \"Paybasis\": \"sample string 10\",\r\n          \"ContinuousServiceDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"CustomField1\": \"sample string 11\",\r\n          \"CustomField2\": \"sample string 12\",\r\n          \"CustomField3\": \"sample string 13\",\r\n          \"CustomField4\": \"sample string 14\",\r\n          \"CustomField5\": \"sample string 15\"\r\n        },\r\n        {\r\n          \"StaffID\": \"sample string 1\",\r\n          \"WorkEmail\": \"sample string 2\",\r\n          \"StartDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"Contract\": \"sample string 4\",\r\n          \"ContractCode\": \"sample string 5\",\r\n          \"JobTitle\": \"sample string 6\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"EndDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"EndReason\": \"sample string 8\",\r\n          \"Location\": {\r\n            \"ActeolSiteID\": 1,\r\n            \"ExternalLocationID\": \"sample string 2\"\r\n          },\r\n          \"CompanyName\": \"sample string 9\",\r\n          \"Paybasis\": \"sample string 10\",\r\n          \"ContinuousServiceDate\": \"2026-03-25T07:30:08.5127253+00:00\",\r\n          \"CustomField1\": \"sample string 11\",\r\n          \"CustomField2\": \"sample string 12\",\r\n          \"CustomField3\": \"sample string 13\",\r\n          \"CustomField4\": \"sample string 14\",\r\n          \"CustomField5\": \"sample string 15\"\r\n        }\r\n      ],\r\n      \"PushNotificationDetails\": [\r\n        {\r\n          \"DeviceToken\": \"sample string 1\",\r\n          \"AppID\": 2,\r\n          \"AppName\": \"sample string 3\"\r\n        },\r\n        {\r\n          \"DeviceToken\": \"sample string 1\",\r\n          \"AppID\": 2,\r\n          \"AppName\": \"sample string 3\"\r\n        }\r\n      ],\r\n      \"CustomerNotes\": [\r\n        {\r\n          \"Note\": \"sample string 1\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.5127253+00:00\"\r\n        },\r\n        {\r\n          \"Note\": \"sample string 1\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.5127253+00:00\"\r\n        }\r\n      ],\r\n      \"CustomerAuthenticationDetails\": [\r\n        {\r\n          \"Username\": \"sample string 1\",\r\n          \"HashedPassword\": \"sample string 2\",\r\n          \"ApplicationName\": \"sample string 3\"\r\n        },\r\n        {\r\n          \"Username\": \"sample string 1\",\r\n          \"HashedPassword\": \"sample string 2\",\r\n          \"ApplicationName\": \"sample string 3\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"8983d3c9-8132-4ef0-9ccc-311bae6d17b6"},{"name":"Patch","id":"55fa6572-6f53-49ae-a3e2-846df488d1b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"DataProcess\": {\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true\r\n  },\r\n  \"ModifiedDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n  \"PersonalInfo\": {\r\n    \"Title\": \"sample string 1\",\r\n    \"FirstName\": \"sample string 2\",\r\n    \"LastName\": \"sample string 3\",\r\n    \"Email\": \"sample string 4\",\r\n    \"MobilePhone\": \"sample string 5\",\r\n    \"Phone\": \"sample string 6\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n    \"JobTitle\": \"sample string 7\",\r\n    \"ParentEmailAddress\": \"sample string 8\",\r\n    \"Gender\": 0,\r\n    \"CustomerAddress\": {\r\n      \"Address1\": \"sample string 2\",\r\n      \"Address2\": \"sample string 3\",\r\n      \"Address3\": \"sample string 4\",\r\n      \"City\": \"sample string 5\",\r\n      \"PostCode\": \"sample string 6\",\r\n      \"StateName\": \"sample string 7\",\r\n      \"CountryCode\": \"sample string 8\",\r\n      \"Phone\": \"sample string 9\"\r\n    },\r\n    \"DoNotExport\": true\r\n  },\r\n  \"ExternalIdentifier\": {\r\n    \"ExternalID\": \"sample string 1\",\r\n    \"ExternalSource\": \"sample string 2\"\r\n  },\r\n  \"SelectedLocationID\": \"sample string 4\",\r\n  \"PreferredLocationID\": \"sample string 5\",\r\n  \"BrandID\": 1,\r\n  \"Referrer\": {\r\n    \"ReferredByCode\": \"sample string 1\",\r\n    \"ReferrerCode\": \"sample string 2\"\r\n  },\r\n  \"MarketingOptin\": {\r\n    \"ChangeDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n    \"EmailOptin\": true,\r\n    \"SmsOptin\": true,\r\n    \"MailOptin\": true,\r\n    \"PhoneOptin\": true,\r\n    \"PushNotificationOptin\": true,\r\n    \"WebPushNotificationOptin\": true,\r\n    \"WhatsAppOptin\": true,\r\n    \"AppOptin\": true\r\n  },\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"MemberNumber\": {\r\n    \"GenerateMemberNumber\": true,\r\n    \"MemberNumber\": \"sample string 2\"\r\n  },\r\n  \"CardToken\": \"sample string 6\",\r\n  \"CardsToken\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"PARTokens\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"PushNotificationDetails\": {\r\n    \"DeviceToken\": \"sample string 1\",\r\n    \"AppID\": 2,\r\n    \"AppName\": \"sample string 3\"\r\n  },\r\n  \"CorporateDetails\": {\r\n    \"CorporateID\": 1,\r\n    \"CorporateName\": \"sample string 1\",\r\n    \"Domains\": [\r\n      {\r\n        \"ID\": 1,\r\n        \"CorporateID\": 2,\r\n        \"Domain\": \"sample string 3\"\r\n      },\r\n      {\r\n        \"ID\": 1,\r\n        \"CorporateID\": 2,\r\n        \"Domain\": \"sample string 3\"\r\n      }\r\n    ]\r\n  },\r\n  \"StaffDetails\": {\r\n    \"StaffID\": \"sample string 1\",\r\n    \"WorkEmail\": \"sample string 2\",\r\n    \"StartDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n    \"Contract\": \"sample string 4\",\r\n    \"ContractCode\": \"sample string 5\",\r\n    \"JobTitle\": \"sample string 6\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n    \"EndDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n    \"EndReason\": \"sample string 8\",\r\n    \"Location\": {\r\n      \"ActeolSiteID\": 1,\r\n      \"ExternalLocationID\": \"sample string 2\"\r\n    },\r\n    \"CompanyName\": \"sample string 9\",\r\n    \"Paybasis\": \"sample string 10\",\r\n    \"ContinuousServiceDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n    \"CustomField1\": \"sample string 11\",\r\n    \"CustomField2\": \"sample string 12\",\r\n    \"CustomField3\": \"sample string 13\",\r\n    \"CustomField4\": \"sample string 14\",\r\n    \"CustomField5\": \"sample string 15\"\r\n  },\r\n  \"CustomerPicture\": {\r\n    \"PictureName\": \"sample string 1\",\r\n    \"PictureExtension\": \"sample string 2\",\r\n    \"PictureData\": \"sample string 3\"\r\n  },\r\n  \"CustomerNotes\": [\r\n    {\r\n      \"Note\": \"sample string 1\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.4345962+00:00\"\r\n    },\r\n    {\r\n      \"Note\": \"sample string 1\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.4345962+00:00\"\r\n    }\r\n  ],\r\n  \"CustomerAuthentication\": {\r\n    \"Username\": \"sample string 1\",\r\n    \"HashedPassword\": \"sample string 2\",\r\n    \"ApplicationName\": \"sample string 3\"\r\n  }\r\n}"},"url":"https://{{Host}}/api/Customer/Patch","description":" <p>\n            Update a partial part of the customer details (Only populated fields will be updated).<br />\n            this method allow you to just generate member number or add new note or add card token.<br />\n</p><h4>Body Payload</h4><table><tr><td><h4>CustomerUpdatePayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to (should be used only for multi brands instance)</td><td>False</td></tr><tr><td>CardsToken</td><td>List&lt;String&gt;</td><td>Collection of card tokens used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Use this field when you want to update token linked to this customer)</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td>The Card token used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Use this field when you want to Add one token)</td><td>False</td></tr><tr><td>CorporateDetails</td><td>ContactCorporateDetails</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id shouldn't been saved as it can be merged with another customer</td><td>True</td></tr><tr><td>CustomerAuthentication</td><td>CustomerAuthentication</td><td>The Authentication of the customer</td><td>False</td></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>DataProcess</td><td>DataProcess</td><td>Manage the processing of the customer Data. \n            Setting value to false will trigger the hashing of the customer record</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>MemberNumber</td><td>CustomerMemberNumber</td><td>Member number to be generated/saved with the customer account</td><td>False</td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td>Last modification date</td><td>False</td></tr><tr><td>PARTokens</td><td>List&lt;String&gt;</td><td>Collection of PAR tokens used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (PAR token allows us to link all versions of a linked card (physical card, digital card on phone, digital card on watch etc) and record all card transactions by any of these, whereas with the current \"Card Token\" only field each of these would have to be linked individually)</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>PreferredLocationID</td><td>String</td><td>The Location ID added will be used to flag the customer against a preferred Site. The Location IDs can be retrieved from the Location end point</td><td>False</td></tr><tr><td>PushNotificationDetails</td><td>PushNotificationDetails</td><td>Details that will be used to send the push notification</td><td>False</td></tr><tr><td>Referrer</td><td>CustomerReferrer</td><td>The Referrer ID entered when the customer signed up</td><td>False</td></tr><tr><td>SelectedLocationID</td><td>String</td><td>The Location ID added will be used to flag the customer against a selected Site. The Location IDs can be retrieved from the Location end point</td><td>False</td></tr><tr><td>StaffDetails</td><td>StaffDetails</td><td>Details of the Staff</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td><h4>ContactCorporateDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td>Corporate ID supplied by Acteol (you can GET/POSt corporate from the API Corporate/GET or Corporate/POST)</td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td>Company name</td><td>False</td></tr><tr><td>Domains</td><td>List&lt;CorporateDomains&gt;</td><td></td><td>False</td></tr><tr><td><h4>CorporateDomains Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Domain</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>CustomerAuthentication Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplicationName</td><td>String</td><td></td><td>False</td></tr><tr><td>HashedPassword</td><td>String</td><td></td><td>False</td></tr><tr><td>Username</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td><h4>DataProcess Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact</td><td>False</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td><h4>CustomerMemberNumber Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>GenerateMemberNumber</td><td>Boolean</td><td>The default value is false. \n            Setting the value to True will generate a member number for the contact</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member number of the customer ( if <b>GenerateMemberNumber</b> is true and <b>MemberNumber</b> is empty , we will auto-generate a random number for this customer</td><td>False</td></tr><tr><td><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td><h4>PushNotificationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppID</td><td>Int32</td><td>Clients having more thant one Applications will need to add an App ID which will be supplied by Acteol</td><td>False</td></tr><tr><td>AppName</td><td>String</td><td>App Name which will be supplied by Acteol</td><td>False</td></tr><tr><td>DeviceToken</td><td>String</td><td>Device token that will be used to send the message. If multiple tokens are sent Acteol will use the latest token sent</td><td>False</td></tr><tr><td><h4>CustomerReferrer Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ReferredByCode</td><td>String</td><td>The referrer code of the friend who invited this customer</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>The referrer code of the customer (if empty we will auto generate a code for this customer)</td><td>False</td></tr><tr><td><h4>StaffDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CompanyName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContinuousServiceDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Contract</td><td>String</td><td></td><td>False</td></tr><tr><td>ContractCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>CustomField1</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>EndReason</td><td>String</td><td></td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td></td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td></td><td>False</td></tr><tr><td>Paybasis</td><td>String</td><td></td><td>False</td></tr><tr><td>StaffID</td><td>String</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>WorkEmail</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>UpdateCustomerOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>CustomerResponse</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>CustomerResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CpyID</td><td>Int32</td><td>Household id of the customer</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id can be merged with another customer so you must not save it in your system.</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer used for my preference site SSO</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member Number generated for this customer<br /><br /></td></tr><tr><td>ReferrerCode</td><td>String</td><td>Referrer code for this customer</td></tr></table>","urlObject":{"protocol":"https","path":["api","Customer","Patch"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"9d78eaf0-a80a-4496-863f-8b5a3e27d807","name":"api/Customer/Patch Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"DataProcess\": {\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true\r\n  },\r\n  \"ModifiedDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n  \"PersonalInfo\": {\r\n    \"Title\": \"sample string 1\",\r\n    \"FirstName\": \"sample string 2\",\r\n    \"LastName\": \"sample string 3\",\r\n    \"Email\": \"sample string 4\",\r\n    \"MobilePhone\": \"sample string 5\",\r\n    \"Phone\": \"sample string 6\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n    \"JobTitle\": \"sample string 7\",\r\n    \"ParentEmailAddress\": \"sample string 8\",\r\n    \"Gender\": 0,\r\n    \"CustomerAddress\": {\r\n      \"Address1\": \"sample string 2\",\r\n      \"Address2\": \"sample string 3\",\r\n      \"Address3\": \"sample string 4\",\r\n      \"City\": \"sample string 5\",\r\n      \"PostCode\": \"sample string 6\",\r\n      \"StateName\": \"sample string 7\",\r\n      \"CountryCode\": \"sample string 8\",\r\n      \"Phone\": \"sample string 9\"\r\n    },\r\n    \"DoNotExport\": true\r\n  },\r\n  \"ExternalIdentifier\": {\r\n    \"ExternalID\": \"sample string 1\",\r\n    \"ExternalSource\": \"sample string 2\"\r\n  },\r\n  \"SelectedLocationID\": \"sample string 4\",\r\n  \"PreferredLocationID\": \"sample string 5\",\r\n  \"BrandID\": 1,\r\n  \"Referrer\": {\r\n    \"ReferredByCode\": \"sample string 1\",\r\n    \"ReferrerCode\": \"sample string 2\"\r\n  },\r\n  \"MarketingOptin\": {\r\n    \"ChangeDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n    \"EmailOptin\": true,\r\n    \"SmsOptin\": true,\r\n    \"MailOptin\": true,\r\n    \"PhoneOptin\": true,\r\n    \"PushNotificationOptin\": true,\r\n    \"WebPushNotificationOptin\": true,\r\n    \"WhatsAppOptin\": true,\r\n    \"AppOptin\": true\r\n  },\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"MemberNumber\": {\r\n    \"GenerateMemberNumber\": true,\r\n    \"MemberNumber\": \"sample string 2\"\r\n  },\r\n  \"CardToken\": \"sample string 6\",\r\n  \"CardsToken\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"PARTokens\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"PushNotificationDetails\": {\r\n    \"DeviceToken\": \"sample string 1\",\r\n    \"AppID\": 2,\r\n    \"AppName\": \"sample string 3\"\r\n  },\r\n  \"CorporateDetails\": {\r\n    \"CorporateID\": 1,\r\n    \"CorporateName\": \"sample string 1\",\r\n    \"Domains\": [\r\n      {\r\n        \"ID\": 1,\r\n        \"CorporateID\": 2,\r\n        \"Domain\": \"sample string 3\"\r\n      },\r\n      {\r\n        \"ID\": 1,\r\n        \"CorporateID\": 2,\r\n        \"Domain\": \"sample string 3\"\r\n      }\r\n    ]\r\n  },\r\n  \"StaffDetails\": {\r\n    \"StaffID\": \"sample string 1\",\r\n    \"WorkEmail\": \"sample string 2\",\r\n    \"StartDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n    \"Contract\": \"sample string 4\",\r\n    \"ContractCode\": \"sample string 5\",\r\n    \"JobTitle\": \"sample string 6\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n    \"EndDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n    \"EndReason\": \"sample string 8\",\r\n    \"Location\": {\r\n      \"ActeolSiteID\": 1,\r\n      \"ExternalLocationID\": \"sample string 2\"\r\n    },\r\n    \"CompanyName\": \"sample string 9\",\r\n    \"Paybasis\": \"sample string 10\",\r\n    \"ContinuousServiceDate\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n    \"CustomField1\": \"sample string 11\",\r\n    \"CustomField2\": \"sample string 12\",\r\n    \"CustomField3\": \"sample string 13\",\r\n    \"CustomField4\": \"sample string 14\",\r\n    \"CustomField5\": \"sample string 15\"\r\n  },\r\n  \"CustomerPicture\": {\r\n    \"PictureName\": \"sample string 1\",\r\n    \"PictureExtension\": \"sample string 2\",\r\n    \"PictureData\": \"sample string 3\"\r\n  },\r\n  \"CustomerNotes\": [\r\n    {\r\n      \"Note\": \"sample string 1\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.4345962+00:00\"\r\n    },\r\n    {\r\n      \"Note\": \"sample string 1\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.4345962+00:00\"\r\n    }\r\n  ],\r\n  \"CustomerAuthentication\": {\r\n    \"Username\": \"sample string 1\",\r\n    \"HashedPassword\": \"sample string 2\",\r\n    \"ApplicationName\": \"sample string 3\"\r\n  }\r\n}"},"url":"https://{{Host}}/api/Customer/Patch","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Update a partial part of the customer details (Only populated fields will be updated).<br />\r\n            this method allow you to just generate member number or add new note or add card token.<br />\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CustomerUpdatePayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to (should be used only for multi brands instance)</td><td>False</td></tr><tr><td>CardsToken</td><td>List&lt;String&gt;</td><td>Collection of card tokens used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Use this field when you want to update token linked to this customer)</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td>The Card token used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Use this field when you want to Add one token)</td><td>False</td></tr><tr><td>CorporateDetails</td><td>ContactCorporateDetails</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id shouldn't been saved as it can be merged with another customer</td><td>True</td></tr><tr><td>CustomerAuthentication</td><td>CustomerAuthentication</td><td>The Authentication of the customer</td><td>False</td></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>DataProcess</td><td>DataProcess</td><td>Manage the processing of the customer Data. \n            Setting value to false will trigger the hashing of the customer record</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>MemberNumber</td><td>CustomerMemberNumber</td><td>Member number to be generated/saved with the customer account</td><td>False</td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td>Last modification date</td><td>False</td></tr><tr><td>PARTokens</td><td>List&lt;String&gt;</td><td>Collection of PAR tokens used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (PAR token allows us to link all versions of a linked card (physical card, digital card on phone, digital card on watch etc) and record all card transactions by any of these, whereas with the current \"Card Token\" only field each of these would have to be linked individually)</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>PreferredLocationID</td><td>String</td><td>The Location ID added will be used to flag the customer against a preferred Site. The Location IDs can be retrieved from the Location end point</td><td>False</td></tr><tr><td>PushNotificationDetails</td><td>PushNotificationDetails</td><td>Details that will be used to send the push notification</td><td>False</td></tr><tr><td>Referrer</td><td>CustomerReferrer</td><td>The Referrer ID entered when the customer signed up</td><td>False</td></tr><tr><td>SelectedLocationID</td><td>String</td><td>The Location ID added will be used to flag the customer against a selected Site. The Location IDs can be retrieved from the Location end point</td><td>False</td></tr><tr><td>StaffDetails</td><td>StaffDetails</td><td>Details of the Staff</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td colspan=4><h4>ContactCorporateDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td>Corporate ID supplied by Acteol (you can GET/POSt corporate from the API Corporate/GET or Corporate/POST)</td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td>Company name</td><td>False</td></tr><tr><td>Domains</td><td>List&lt;CorporateDomains&gt;</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CorporateDomains Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Domain</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CustomerAuthentication Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplicationName</td><td>String</td><td></td><td>False</td></tr><tr><td>HashedPassword</td><td>String</td><td></td><td>False</td></tr><tr><td>Username</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td colspan=4><h4>DataProcess Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact</td><td>False</td></tr><tr><td colspan=4><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td colspan=4><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td colspan=4><h4>CustomerMemberNumber Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>GenerateMemberNumber</td><td>Boolean</td><td>The default value is false. \n            Setting the value to True will generate a member number for the contact</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member number of the customer ( if <b>GenerateMemberNumber</b> is true and <b>MemberNumber</b> is empty , we will auto-generate a random number for this customer</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td colspan=4><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td colspan=4><h4>PushNotificationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppID</td><td>Int32</td><td>Clients having more thant one Applications will need to add an App ID which will be supplied by Acteol</td><td>False</td></tr><tr><td>AppName</td><td>String</td><td>App Name which will be supplied by Acteol</td><td>False</td></tr><tr><td>DeviceToken</td><td>String</td><td>Device token that will be used to send the message. If multiple tokens are sent Acteol will use the latest token sent</td><td>False</td></tr><tr><td colspan=4><h4>CustomerReferrer Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ReferredByCode</td><td>String</td><td>The referrer code of the friend who invited this customer</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>The referrer code of the customer (if empty we will auto generate a code for this customer)</td><td>False</td></tr><tr><td colspan=4><h4>StaffDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CompanyName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContinuousServiceDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Contract</td><td>String</td><td></td><td>False</td></tr><tr><td>ContractCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>CustomField1</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>EndReason</td><td>String</td><td></td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td></td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td></td><td>False</td></tr><tr><td>Paybasis</td><td>String</td><td></td><td>False</td></tr><tr><td>StaffID</td><td>String</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>WorkEmail</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>UpdateCustomerOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>CustomerResponse</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>CustomerResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CpyID</td><td>Int32</td><td>Household id of the customer</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id can be merged with another customer so you must not save it in your system.</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer used for my preference site SSO</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member Number generated for this customer<br></br></td></tr><tr><td>ReferrerCode</td><td>String</td><td>Referrer code for this customer</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseData\": {\r\n    \"CtcID\": 1,\r\n    \"CpyID\": 2,\r\n    \"MD5\": \"sample string 3\",\r\n    \"ReferrerCode\": \"sample string 4\",\r\n    \"MemberNumber\": \"sample string 5\"\r\n  },\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"55fa6572-6f53-49ae-a3e2-846df488d1b6"},{"name":"Post","id":"d67d6112-0284-4a9b-a862-aec50a16e585","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"CreateDate\": \"2023-06-08T14:16:52.8493402+01:00\",\r\n\t\"ModifiedDate\": \"2023-06-08T14:16:52.8493402+01:00\",\r\n\t\"PersonalInfo\": {\r\n\t\t\"Title\": \"Mr\",\r\n\t\t\"FirstName\": \"FirstName\",\r\n\t\t\"LastName\": \"LastName\",\r\n\t\t\"Email\": \"tony@gmail.com\",\r\n\t\t\"MobilePhone\": \"00000000000\",\r\n\t\t\"Phone\": \"00000000000\",\r\n\t\t\"BirthDate\": \"1980-06-08T00:00:00.0000000+01:00\",\r\n\t\t\"JobTitle\": \"Graduated Head Chef\",\r\n\t\t\"ParentEmailAddress\": \"email@domain.com\",\r\n\t\t\"Gender\": 0,\r\n\t\t\"SupR_DDL_Gender\": 0,\r\n\t\t\"CustomerAddress\": {\r\n\t\t\t\"Address1\": \"Flat 1\",\r\n\t\t\t\"Address2\": \"128 Alcester Road South\",\r\n\t\t\t\"Address3\": \"\",\r\n\t\t\t\"City\": \"Birmingham\",\r\n\t\t\t\"PostCode\": \"XXX XXX\",\r\n\t\t\t\"StateName\": \"West Midlands\",\r\n\t\t\t\"CountryCode\": \"UK\",\r\n\t\t\t\"Phone\": \"00000000000\"\r\n\t\t}\r\n\t},\r\n\t\"ExternalIdentifier\": {\r\n\t\t\"ExternalID\": \"0000\",\r\n\t\t\"ExternalSource\": \"SourceName\"\r\n\t},\r\n\t\"SelectedLocationID\": \"8888\",\r\n\t\"PreferredLocationID\": \"7777\",\r\n\t\"BrandID\": 125,\r\n\t\"Referrer\": {\r\n\t\t\"ReferredByCode\": \"REFEEWC8W\",\r\n\t\t\"ReferrerCode\": \"RFDF4785\"\r\n\t},\r\n\t\"MarketingOptin\": {\r\n\t\t\"ChangeDate\": \"2023-06-08T14:16:52.8493402+01:00\",\r\n\t\t\"EmailOptin\": true,\r\n\t\t\"SmsOptin\": true,\r\n\t\t\"MailOptin\": false,\r\n\t\t\"PhoneOptin\": false,\r\n\t\t\"PushNotificationOptin\": true,\r\n\t\t\"WebPushNotificationOptin\": false,\r\n\t\t\"WhatsAppOptin\": false\r\n\t},\r\n\t\"SupInfo\": [\r\n\t\t{\r\n\t\t\t\"FieldName\": \"Restaurant\",\r\n\t\t\t\"FieldContent\": \"M Canary Wharf\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"FieldName\": \"Interests\",\r\n\t\t\t\"FieldContent\": \"Impact & Sustainability\"\r\n\t\t}\r\n\t],\r\n\t\"MemberNumber\": {\r\n\t\t\"GenerateMemberNumber\": true,\r\n\t\t\"MemberNumber\": \"8551291320\"\r\n\t},\r\n\t\"CardToken\": \"12468978410245\",\r\n\t\"PushNotificationDetails\": {\r\n\t\t\"DeviceToken\": \"e5b68b4a6197c40a5a17ee39f6c1a777\",\r\n\t\t\"AppID\": 2\r\n\t},\r\n\t\"CorporateDetails\": {\r\n\t\t\"CorporateID\": 1,\r\n\t\t\"CorporateName\": \"Access\"\r\n\t},\r\n\t\"StaffDetails\": {\r\n\t\t\"StaffID\": \"e5b68b4a6197c40\",\r\n\t\t\"WorkEmail\": \"sv@df.com\",\r\n\t\t\"StartDate\": \"2022-06-08T14:16:52.8493402+01:00\",\r\n\t\t\"Contract\": \"Contract\",\r\n\t\t\"ContractCode\": \"ContractCode\",\r\n\t\t\"EndReason\": \"EndReason Text\",\r\n\t\t\"JobTitle\": \"Developer\",\r\n\t\t\"CompanyName\": \"CompanyName\",\r\n\t\t\"CreateDate\": \"2022-06-08T14:16:52.8493402+01:00\",\r\n\t\t\"EndDate\": \"2023-01-08T14:16:52.8493402+01:00\",\r\n\t\t\"ContinuousServiceDate\": \"2022-07-08T14:16:52.8493402+01:00\",\r\n\t\t\"Paybasis\": \"Paybasis\",\r\n\t\t\"Location\": {\r\n\t\t\t\"ActeolSiteID\": 304,\r\n\t\t\t\"ExternalLocationID\": \"\"\r\n\t\t},\r\n\t\t\"CustomField1\": \"CustomField1\",\r\n\t\t\"CustomField2\": \"CustomField2\",\r\n\t\t\"CustomField3\": \"CustomField3\",\r\n\t\t\"CustomField4\": \"CustomField4\",\r\n\t\t\"CustomField5\": \"CustomField5\"\r\n\t},\r\n\t\"CustomerPicture\": {\r\n\t\t\"PictureName\": \"Download.jpg\",\r\n\t\t\"PictureExtension\": \"jpg\",\r\n\t\t\"PictureData\": \"iVBORw0KGgoAAAANSUhEUgAAA2sAAARFCAYAAAAgtFpYAAAABGdBTUEAALGPC/xhBQAA/8dJREFUeF5U/WW3LNe1JexmRu4tlmwfqNvKVYdty5YMYpbFzMzMzKytLWawjulUnaq36t72/s+4/ekxY3n7w2yZK1dmxIQBvY8x5ozN5p...\"\r\n\t},\r\n\t\"CustomerNotes\": [\r\n\t\t{\r\n\t\t\t\"Note\": \"First Note\",\r\n\t\t\t\"CreateDate\": \"2023-1110T12:14:06.2831549+01:00\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"Note\": \"Second Note\"\r\n\t\t}\r\n\t],\r\n\t\"CustomerAuthentication\": {\r\n\t\t\"Username\": \"Username\",\r\n\t\t\"HashedPassword\": \"HashedPassword\",\r\n\t\t\"ApplicationName\": \"ApplicationName\"\r\n\t}\r\n}"},"url":"https://{{Host}}/api/Customer/Post","description":" <p>\n            Post customer , a de-duplication algorithm will run to check if the customer already exist in the database<br />\n            If exist : we will update the existing details with the new data from this call<br />\n            if not exist : we will create a new customer<br />\n            Rule : one of the email, mobile phone, birthdate and customer name (firstname and lastname) shouldn't be empty<br />\n</p><h4>Body Payload</h4><table><tr><td><h4>PostCustomerPayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to (should be used only for multi brands instance)</td><td>False</td></tr><tr><td>CardsToken</td><td>List&lt;String&gt;</td><td>Collection of card tokens used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Use this field when you want to update token linked to this customer)</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td>The Card token used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Use this field when you want to Add one token)</td><td>False</td></tr><tr><td>CorporateDetails</td><td>ContactCorporateDetails</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date :if empty ,we will use the current datetime (Acceptance of privacy policy date)</td><td>False</td></tr><tr><td>CustomerAuthentication</td><td>CustomerAuthentication</td><td>The Authentication of the customer</td><td>False</td></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>MemberNumber</td><td>CustomerMemberNumber</td><td>Member number to be generated/saved with the customer account</td><td>False</td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td>Last modification date</td><td>False</td></tr><tr><td>PARTokens</td><td>List&lt;String&gt;</td><td>Collection of PAR tokens used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (PAR token allows us to link all versions of a linked card (physical card, digital card on phone, digital card on watch etc) and record all card transactions by any of these, whereas with the current \"Card Token\" only field each of these would have to be linked individually)</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>PreferredLocationID</td><td>String</td><td>The Location ID added will be used to flag the customer against a preferred Site. The Location IDs can be retrieved from the Location end point</td><td>False</td></tr><tr><td>PushNotificationDetails</td><td>PushNotificationDetails</td><td>Details that will be used to send the push notification</td><td>False</td></tr><tr><td>Referrer</td><td>CustomerReferrer</td><td>The Referrer ID entered when the customer signed up</td><td>False</td></tr><tr><td>SelectedLocationID</td><td>String</td><td>The Location ID added will be used to flag the customer against a selected Site. The Location IDs can be retrieved from the Location end point</td><td>False</td></tr><tr><td>StaffDetails</td><td>StaffDetails</td><td>Details of the Staff</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td><h4>ContactCorporateDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td>Corporate ID supplied by Acteol (you can GET/POSt corporate from the API Corporate/GET or Corporate/POST)</td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td>Company name</td><td>False</td></tr><tr><td>Domains</td><td>List&lt;CorporateDomains&gt;</td><td></td><td>False</td></tr><tr><td><h4>CorporateDomains Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Domain</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>CustomerAuthentication Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplicationName</td><td>String</td><td></td><td>False</td></tr><tr><td>HashedPassword</td><td>String</td><td></td><td>False</td></tr><tr><td>Username</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td><h4>CustomerMemberNumber Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>GenerateMemberNumber</td><td>Boolean</td><td>The default value is false. \n            Setting the value to True will generate a member number for the contact</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member number of the customer ( if <b>GenerateMemberNumber</b> is true and <b>MemberNumber</b> is empty , we will auto-generate a random number for this customer</td><td>False</td></tr><tr><td><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td><h4>PushNotificationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppID</td><td>Int32</td><td>Clients having more thant one Applications will need to add an App ID which will be supplied by Acteol</td><td>False</td></tr><tr><td>AppName</td><td>String</td><td>App Name which will be supplied by Acteol</td><td>False</td></tr><tr><td>DeviceToken</td><td>String</td><td>Device token that will be used to send the message. If multiple tokens are sent Acteol will use the latest token sent</td><td>False</td></tr><tr><td><h4>CustomerReferrer Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ReferredByCode</td><td>String</td><td>The referrer code of the friend who invited this customer</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>The referrer code of the customer (if empty we will auto generate a code for this customer)</td><td>False</td></tr><tr><td><h4>StaffDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CompanyName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContinuousServiceDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Contract</td><td>String</td><td></td><td>False</td></tr><tr><td>ContractCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>CustomField1</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>EndReason</td><td>String</td><td></td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td></td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td></td><td>False</td></tr><tr><td>Paybasis</td><td>String</td><td></td><td>False</td></tr><tr><td>StaffID</td><td>String</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>WorkEmail</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostCustomerOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>PostCustomerResponse</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>PostCustomerResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CpyID</td><td>Int32</td><td>Household id of the customer</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id can be merged with another customer so you must not save it in your system.</td></tr><tr><td>Duplicated</td><td>Boolean</td><td>Show if the customer already exist or not</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer used for my preference site SSO</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member Number generated for this customer<br /><br /></td></tr><tr><td>ReferrerCode</td><td>String</td><td>Referrer code for this customer</td></tr></table>","urlObject":{"protocol":"https","path":["api","Customer","Post"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"84c31e09-267b-495f-b24f-80aed13e9c80","name":"api/Customer/Post Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"CreateDate\": \"2023-06-08T14:16:52.8493402+01:00\",\r\n\t\"ModifiedDate\": \"2023-06-08T14:16:52.8493402+01:00\",\r\n\t\"PersonalInfo\": {\r\n\t\t\"Title\": \"Mr\",\r\n\t\t\"FirstName\": \"FirstName\",\r\n\t\t\"LastName\": \"LastName\",\r\n\t\t\"Email\": \"tony@gmail.com\",\r\n\t\t\"MobilePhone\": \"00000000000\",\r\n\t\t\"Phone\": \"00000000000\",\r\n\t\t\"BirthDate\": \"1980-06-08T00:00:00.0000000+01:00\",\r\n\t\t\"JobTitle\": \"Graduated Head Chef\",\r\n\t\t\"ParentEmailAddress\": \"email@domain.com\",\r\n\t\t\"Gender\": 0,\r\n\t\t\"SupR_DDL_Gender\": 0,\r\n\t\t\"CustomerAddress\": {\r\n\t\t\t\"Address1\": \"Flat 1\",\r\n\t\t\t\"Address2\": \"128 Alcester Road South\",\r\n\t\t\t\"Address3\": \"\",\r\n\t\t\t\"City\": \"Birmingham\",\r\n\t\t\t\"PostCode\": \"XXX XXX\",\r\n\t\t\t\"StateName\": \"West Midlands\",\r\n\t\t\t\"CountryCode\": \"UK\",\r\n\t\t\t\"Phone\": \"00000000000\"\r\n\t\t}\r\n\t},\r\n\t\"ExternalIdentifier\": {\r\n\t\t\"ExternalID\": \"0000\",\r\n\t\t\"ExternalSource\": \"SourceName\"\r\n\t},\r\n\t\"SelectedLocationID\": \"8888\",\r\n\t\"PreferredLocationID\": \"7777\",\r\n\t\"BrandID\": 125,\r\n\t\"Referrer\": {\r\n\t\t\"ReferredByCode\": \"REFEEWC8W\",\r\n\t\t\"ReferrerCode\": \"RFDF4785\"\r\n\t},\r\n\t\"MarketingOptin\": {\r\n\t\t\"ChangeDate\": \"2023-06-08T14:16:52.8493402+01:00\",\r\n\t\t\"EmailOptin\": true,\r\n\t\t\"SmsOptin\": true,\r\n\t\t\"MailOptin\": false,\r\n\t\t\"PhoneOptin\": false,\r\n\t\t\"PushNotificationOptin\": true,\r\n\t\t\"WebPushNotificationOptin\": false,\r\n\t\t\"WhatsAppOptin\": false\r\n\t},\r\n\t\"SupInfo\": [\r\n\t\t{\r\n\t\t\t\"FieldName\": \"Restaurant\",\r\n\t\t\t\"FieldContent\": \"M Canary Wharf\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"FieldName\": \"Interests\",\r\n\t\t\t\"FieldContent\": \"Impact & Sustainability\"\r\n\t\t}\r\n\t],\r\n\t\"MemberNumber\": {\r\n\t\t\"GenerateMemberNumber\": true,\r\n\t\t\"MemberNumber\": \"8551291320\"\r\n\t},\r\n\t\"CardToken\": \"12468978410245\",\r\n\t\"PushNotificationDetails\": {\r\n\t\t\"DeviceToken\": \"e5b68b4a6197c40a5a17ee39f6c1a777\",\r\n\t\t\"AppID\": 2\r\n\t},\r\n\t\"CorporateDetails\": {\r\n\t\t\"CorporateID\": 1,\r\n\t\t\"CorporateName\": \"Access\"\r\n\t},\r\n\t\"StaffDetails\": {\r\n\t\t\"StaffID\": \"e5b68b4a6197c40\",\r\n\t\t\"WorkEmail\": \"sv@df.com\",\r\n\t\t\"StartDate\": \"2022-06-08T14:16:52.8493402+01:00\",\r\n\t\t\"Contract\": \"Contract\",\r\n\t\t\"ContractCode\": \"ContractCode\",\r\n\t\t\"EndReason\": \"EndReason Text\",\r\n\t\t\"JobTitle\": \"Developer\",\r\n\t\t\"CompanyName\": \"CompanyName\",\r\n\t\t\"CreateDate\": \"2022-06-08T14:16:52.8493402+01:00\",\r\n\t\t\"EndDate\": \"2023-01-08T14:16:52.8493402+01:00\",\r\n\t\t\"ContinuousServiceDate\": \"2022-07-08T14:16:52.8493402+01:00\",\r\n\t\t\"Paybasis\": \"Paybasis\",\r\n\t\t\"Location\": {\r\n\t\t\t\"ActeolSiteID\": 304,\r\n\t\t\t\"ExternalLocationID\": \"\"\r\n\t\t},\r\n\t\t\"CustomField1\": \"CustomField1\",\r\n\t\t\"CustomField2\": \"CustomField2\",\r\n\t\t\"CustomField3\": \"CustomField3\",\r\n\t\t\"CustomField4\": \"CustomField4\",\r\n\t\t\"CustomField5\": \"CustomField5\"\r\n\t},\r\n\t\"CustomerPicture\": {\r\n\t\t\"PictureName\": \"Download.jpg\",\r\n\t\t\"PictureExtension\": \"jpg\",\r\n\t\t\"PictureData\": \"iVBORw0KGgoAAAANSUhEUgAAA2sAAARFCAYAAAAgtFpYAAAABGdBTUEAALGPC/xhBQAA/8dJREFUeF5U/WW3LNe1JexmRu4tlmwfqNvKVYdty5YMYpbFzMzMzKytLWawjulUnaq36t72/s+4/ekxY3n7w2yZK1dmxIQBvY8x5ozN5p...\"\r\n\t},\r\n\t\"CustomerNotes\": [\r\n\t\t{\r\n\t\t\t\"Note\": \"First Note\",\r\n\t\t\t\"CreateDate\": \"2023-1110T12:14:06.2831549+01:00\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"Note\": \"Second Note\"\r\n\t\t}\r\n\t],\r\n\t\"CustomerAuthentication\": {\r\n\t\t\"Username\": \"Username\",\r\n\t\t\"HashedPassword\": \"HashedPassword\",\r\n\t\t\"ApplicationName\": \"ApplicationName\"\r\n\t}\r\n}"},"url":"https://{{Host}}/api/Customer/Post","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post customer , a de-duplication algorithm will run to check if the customer already exist in the database<br />\r\n            If exist : we will update the existing details with the new data from this call<br />\r\n            if not exist : we will create a new customer<br />\r\n            Rule : one of the email, mobile phone, birthdate and customer name (firstname and lastname) shouldn't be empty<br />\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PostCustomerPayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to (should be used only for multi brands instance)</td><td>False</td></tr><tr><td>CardsToken</td><td>List&lt;String&gt;</td><td>Collection of card tokens used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Use this field when you want to update token linked to this customer)</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td>The Card token used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Use this field when you want to Add one token)</td><td>False</td></tr><tr><td>CorporateDetails</td><td>ContactCorporateDetails</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date :if empty ,we will use the current datetime (Acceptance of privacy policy date)</td><td>False</td></tr><tr><td>CustomerAuthentication</td><td>CustomerAuthentication</td><td>The Authentication of the customer</td><td>False</td></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>MemberNumber</td><td>CustomerMemberNumber</td><td>Member number to be generated/saved with the customer account</td><td>False</td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td>Last modification date</td><td>False</td></tr><tr><td>PARTokens</td><td>List&lt;String&gt;</td><td>Collection of PAR tokens used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (PAR token allows us to link all versions of a linked card (physical card, digital card on phone, digital card on watch etc) and record all card transactions by any of these, whereas with the current \"Card Token\" only field each of these would have to be linked individually)</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>PreferredLocationID</td><td>String</td><td>The Location ID added will be used to flag the customer against a preferred Site. The Location IDs can be retrieved from the Location end point</td><td>False</td></tr><tr><td>PushNotificationDetails</td><td>PushNotificationDetails</td><td>Details that will be used to send the push notification</td><td>False</td></tr><tr><td>Referrer</td><td>CustomerReferrer</td><td>The Referrer ID entered when the customer signed up</td><td>False</td></tr><tr><td>SelectedLocationID</td><td>String</td><td>The Location ID added will be used to flag the customer against a selected Site. The Location IDs can be retrieved from the Location end point</td><td>False</td></tr><tr><td>StaffDetails</td><td>StaffDetails</td><td>Details of the Staff</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td colspan=4><h4>ContactCorporateDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td>Corporate ID supplied by Acteol (you can GET/POSt corporate from the API Corporate/GET or Corporate/POST)</td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td>Company name</td><td>False</td></tr><tr><td>Domains</td><td>List&lt;CorporateDomains&gt;</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CorporateDomains Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Domain</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CustomerAuthentication Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplicationName</td><td>String</td><td></td><td>False</td></tr><tr><td>HashedPassword</td><td>String</td><td></td><td>False</td></tr><tr><td>Username</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td colspan=4><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td colspan=4><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td colspan=4><h4>CustomerMemberNumber Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>GenerateMemberNumber</td><td>Boolean</td><td>The default value is false. \n            Setting the value to True will generate a member number for the contact</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member number of the customer ( if <b>GenerateMemberNumber</b> is true and <b>MemberNumber</b> is empty , we will auto-generate a random number for this customer</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td colspan=4><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td colspan=4><h4>PushNotificationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppID</td><td>Int32</td><td>Clients having more thant one Applications will need to add an App ID which will be supplied by Acteol</td><td>False</td></tr><tr><td>AppName</td><td>String</td><td>App Name which will be supplied by Acteol</td><td>False</td></tr><tr><td>DeviceToken</td><td>String</td><td>Device token that will be used to send the message. If multiple tokens are sent Acteol will use the latest token sent</td><td>False</td></tr><tr><td colspan=4><h4>CustomerReferrer Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ReferredByCode</td><td>String</td><td>The referrer code of the friend who invited this customer</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>The referrer code of the customer (if empty we will auto generate a code for this customer)</td><td>False</td></tr><tr><td colspan=4><h4>StaffDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CompanyName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContinuousServiceDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Contract</td><td>String</td><td></td><td>False</td></tr><tr><td>ContractCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>CustomField1</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>EndReason</td><td>String</td><td></td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td></td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td></td><td>False</td></tr><tr><td>Paybasis</td><td>String</td><td></td><td>False</td></tr><tr><td>StaffID</td><td>String</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>WorkEmail</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostCustomerOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>PostCustomerResponse</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>PostCustomerResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CpyID</td><td>Int32</td><td>Household id of the customer</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id can be merged with another customer so you must not save it in your system.</td></tr><tr><td>Duplicated</td><td>Boolean</td><td>Show if the customer already exist or not</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer used for my preference site SSO</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member Number generated for this customer<br></br></td></tr><tr><td>ReferrerCode</td><td>String</td><td>Referrer code for this customer</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseData\": {\r\n    \"Duplicated\": true,\r\n    \"CtcID\": 2,\r\n    \"CpyID\": 3,\r\n    \"MD5\": \"sample string 4\",\r\n    \"ReferrerCode\": \"sample string 5\",\r\n    \"MemberNumber\": \"sample string 6\"\r\n  },\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"d67d6112-0284-4a9b-a862-aec50a16e585"},{"name":"PostCustomerApplication","id":"d761b3e1-e0a3-4663-986b-8f45ae80e92d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ApplicationName\": \"sample string 1\"\r\n}"},"url":"https://{{Host}}/api/Customer/PostCustomerApplication","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>CustomerAppNamePayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplicationName</td><td>String</td><td>Application Name of the Customer</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","Customer","PostCustomerApplication"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"16da3231-ba39-4af2-b045-a07e479fa152","name":"api/Customer/PostCustomerApplication Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ApplicationName\": \"sample string 1\"\r\n}"},"url":"https://{{Host}}/api/Customer/PostCustomerApplication","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CustomerAppNamePayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplicationName</td><td>String</td><td>Application Name of the Customer</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"d761b3e1-e0a3-4663-986b-8f45ae80e92d"},{"name":"Put","id":"cb8edd59-fff3-42b7-a094-930aafebec71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"DataProcess\": {\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true\r\n  },\r\n  \"ModifiedDate\": \"2026-03-25T07:30:08.5595828+00:00\",\r\n  \"PersonalInfo\": {\r\n    \"Title\": \"sample string 1\",\r\n    \"FirstName\": \"sample string 2\",\r\n    \"LastName\": \"sample string 3\",\r\n    \"Email\": \"sample string 4\",\r\n    \"MobilePhone\": \"sample string 5\",\r\n    \"Phone\": \"sample string 6\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.5595828+00:00\",\r\n    \"JobTitle\": \"sample string 7\",\r\n    \"ParentEmailAddress\": \"sample string 8\",\r\n    \"Gender\": 0,\r\n    \"CustomerAddress\": {\r\n      \"Address1\": \"sample string 2\",\r\n      \"Address2\": \"sample string 3\",\r\n      \"Address3\": \"sample string 4\",\r\n      \"City\": \"sample string 5\",\r\n      \"PostCode\": \"sample string 6\",\r\n      \"StateName\": \"sample string 7\",\r\n      \"CountryCode\": \"sample string 8\",\r\n      \"Phone\": \"sample string 9\"\r\n    },\r\n    \"DoNotExport\": true\r\n  },\r\n  \"ExternalIdentifier\": {\r\n    \"ExternalID\": \"sample string 1\",\r\n    \"ExternalSource\": \"sample string 2\"\r\n  },\r\n  \"SelectedLocationID\": \"sample string 4\",\r\n  \"PreferredLocationID\": \"sample string 5\",\r\n  \"BrandID\": 1,\r\n  \"Referrer\": {\r\n    \"ReferredByCode\": \"sample string 1\",\r\n    \"ReferrerCode\": \"sample string 2\"\r\n  },\r\n  \"MarketingOptin\": {\r\n    \"ChangeDate\": \"2026-03-25T07:30:08.5595828+00:00\",\r\n    \"EmailOptin\": true,\r\n    \"SmsOptin\": true,\r\n    \"MailOptin\": true,\r\n    \"PhoneOptin\": true,\r\n    \"PushNotificationOptin\": true,\r\n    \"WebPushNotificationOptin\": true,\r\n    \"WhatsAppOptin\": true,\r\n    \"AppOptin\": true\r\n  },\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"MemberNumber\": {\r\n    \"GenerateMemberNumber\": true,\r\n    \"MemberNumber\": \"sample string 2\"\r\n  },\r\n  \"CardToken\": \"sample string 6\",\r\n  \"CardsToken\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"PARTokens\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"PushNotificationDetails\": {\r\n    \"DeviceToken\": \"sample string 1\",\r\n    \"AppID\": 2,\r\n    \"AppName\": \"sample string 3\"\r\n  },\r\n  \"CorporateDetails\": {\r\n    \"CorporateID\": 1,\r\n    \"CorporateName\": \"sample string 1\",\r\n    \"Domains\": [\r\n      {\r\n        \"ID\": 1,\r\n        \"CorporateID\": 2,\r\n        \"Domain\": \"sample string 3\"\r\n      },\r\n      {\r\n        \"ID\": 1,\r\n        \"CorporateID\": 2,\r\n        \"Domain\": \"sample string 3\"\r\n      }\r\n    ]\r\n  },\r\n  \"StaffDetails\": {\r\n    \"StaffID\": \"sample string 1\",\r\n    \"WorkEmail\": \"sample string 2\",\r\n    \"StartDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n    \"Contract\": \"sample string 4\",\r\n    \"ContractCode\": \"sample string 5\",\r\n    \"JobTitle\": \"sample string 6\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n    \"EndDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n    \"EndReason\": \"sample string 8\",\r\n    \"Location\": {\r\n      \"ActeolSiteID\": 1,\r\n      \"ExternalLocationID\": \"sample string 2\"\r\n    },\r\n    \"CompanyName\": \"sample string 9\",\r\n    \"Paybasis\": \"sample string 10\",\r\n    \"ContinuousServiceDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n    \"CustomField1\": \"sample string 11\",\r\n    \"CustomField2\": \"sample string 12\",\r\n    \"CustomField3\": \"sample string 13\",\r\n    \"CustomField4\": \"sample string 14\",\r\n    \"CustomField5\": \"sample string 15\"\r\n  },\r\n  \"CustomerPicture\": {\r\n    \"PictureName\": \"sample string 1\",\r\n    \"PictureExtension\": \"sample string 2\",\r\n    \"PictureData\": \"sample string 3\"\r\n  },\r\n  \"CustomerNotes\": [\r\n    {\r\n      \"Note\": \"sample string 1\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.5752228+00:00\"\r\n    },\r\n    {\r\n      \"Note\": \"sample string 1\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.5752228+00:00\"\r\n    }\r\n  ],\r\n  \"CustomerAuthentication\": {\r\n    \"Username\": \"sample string 1\",\r\n    \"HashedPassword\": \"sample string 2\",\r\n    \"ApplicationName\": \"sample string 3\"\r\n  }\r\n}"},"url":"https://{{Host}}/api/Customer/Put","description":" <p>\n            Update the customer details with the entire resource sent (example : if email field is empty we will apply this in our end)<br />\n</p><h4>Body Payload</h4><table><tr><td><h4>CustomerUpdatePayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to (should be used only for multi brands instance)</td><td>False</td></tr><tr><td>CardsToken</td><td>List&lt;String&gt;</td><td>Collection of card tokens used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Use this field when you want to update token linked to this customer)</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td>The Card token used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Use this field when you want to Add one token)</td><td>False</td></tr><tr><td>CorporateDetails</td><td>ContactCorporateDetails</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id shouldn't been saved as it can be merged with another customer</td><td>True</td></tr><tr><td>CustomerAuthentication</td><td>CustomerAuthentication</td><td>The Authentication of the customer</td><td>False</td></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>DataProcess</td><td>DataProcess</td><td>Manage the processing of the customer Data. \n            Setting value to false will trigger the hashing of the customer record</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>MemberNumber</td><td>CustomerMemberNumber</td><td>Member number to be generated/saved with the customer account</td><td>False</td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td>Last modification date</td><td>False</td></tr><tr><td>PARTokens</td><td>List&lt;String&gt;</td><td>Collection of PAR tokens used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (PAR token allows us to link all versions of a linked card (physical card, digital card on phone, digital card on watch etc) and record all card transactions by any of these, whereas with the current \"Card Token\" only field each of these would have to be linked individually)</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>PreferredLocationID</td><td>String</td><td>The Location ID added will be used to flag the customer against a preferred Site. The Location IDs can be retrieved from the Location end point</td><td>False</td></tr><tr><td>PushNotificationDetails</td><td>PushNotificationDetails</td><td>Details that will be used to send the push notification</td><td>False</td></tr><tr><td>Referrer</td><td>CustomerReferrer</td><td>The Referrer ID entered when the customer signed up</td><td>False</td></tr><tr><td>SelectedLocationID</td><td>String</td><td>The Location ID added will be used to flag the customer against a selected Site. The Location IDs can be retrieved from the Location end point</td><td>False</td></tr><tr><td>StaffDetails</td><td>StaffDetails</td><td>Details of the Staff</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td><h4>ContactCorporateDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td>Corporate ID supplied by Acteol (you can GET/POSt corporate from the API Corporate/GET or Corporate/POST)</td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td>Company name</td><td>False</td></tr><tr><td>Domains</td><td>List&lt;CorporateDomains&gt;</td><td></td><td>False</td></tr><tr><td><h4>CorporateDomains Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Domain</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>CustomerAuthentication Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplicationName</td><td>String</td><td></td><td>False</td></tr><tr><td>HashedPassword</td><td>String</td><td></td><td>False</td></tr><tr><td>Username</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td><h4>DataProcess Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact</td><td>False</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td><h4>CustomerMemberNumber Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>GenerateMemberNumber</td><td>Boolean</td><td>The default value is false. \n            Setting the value to True will generate a member number for the contact</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member number of the customer ( if <b>GenerateMemberNumber</b> is true and <b>MemberNumber</b> is empty , we will auto-generate a random number for this customer</td><td>False</td></tr><tr><td><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td><h4>PushNotificationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppID</td><td>Int32</td><td>Clients having more thant one Applications will need to add an App ID which will be supplied by Acteol</td><td>False</td></tr><tr><td>AppName</td><td>String</td><td>App Name which will be supplied by Acteol</td><td>False</td></tr><tr><td>DeviceToken</td><td>String</td><td>Device token that will be used to send the message. If multiple tokens are sent Acteol will use the latest token sent</td><td>False</td></tr><tr><td><h4>CustomerReferrer Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ReferredByCode</td><td>String</td><td>The referrer code of the friend who invited this customer</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>The referrer code of the customer (if empty we will auto generate a code for this customer)</td><td>False</td></tr><tr><td><h4>StaffDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CompanyName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContinuousServiceDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Contract</td><td>String</td><td></td><td>False</td></tr><tr><td>ContractCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>CustomField1</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>EndReason</td><td>String</td><td></td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td></td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td></td><td>False</td></tr><tr><td>Paybasis</td><td>String</td><td></td><td>False</td></tr><tr><td>StaffID</td><td>String</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>WorkEmail</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>UpdateCustomerOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>CustomerResponse</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>CustomerResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CpyID</td><td>Int32</td><td>Household id of the customer</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id can be merged with another customer so you must not save it in your system.</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer used for my preference site SSO</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member Number generated for this customer<br /><br /></td></tr><tr><td>ReferrerCode</td><td>String</td><td>Referrer code for this customer</td></tr></table>","urlObject":{"protocol":"https","path":["api","Customer","Put"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"dd0d4a4d-37f5-4445-9b5f-fa793a0afdeb","name":"api/Customer/Put Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"DataProcess\": {\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true\r\n  },\r\n  \"ModifiedDate\": \"2026-03-25T07:30:08.5595828+00:00\",\r\n  \"PersonalInfo\": {\r\n    \"Title\": \"sample string 1\",\r\n    \"FirstName\": \"sample string 2\",\r\n    \"LastName\": \"sample string 3\",\r\n    \"Email\": \"sample string 4\",\r\n    \"MobilePhone\": \"sample string 5\",\r\n    \"Phone\": \"sample string 6\",\r\n    \"BirthDate\": \"2026-03-25T07:30:08.5595828+00:00\",\r\n    \"JobTitle\": \"sample string 7\",\r\n    \"ParentEmailAddress\": \"sample string 8\",\r\n    \"Gender\": 0,\r\n    \"CustomerAddress\": {\r\n      \"Address1\": \"sample string 2\",\r\n      \"Address2\": \"sample string 3\",\r\n      \"Address3\": \"sample string 4\",\r\n      \"City\": \"sample string 5\",\r\n      \"PostCode\": \"sample string 6\",\r\n      \"StateName\": \"sample string 7\",\r\n      \"CountryCode\": \"sample string 8\",\r\n      \"Phone\": \"sample string 9\"\r\n    },\r\n    \"DoNotExport\": true\r\n  },\r\n  \"ExternalIdentifier\": {\r\n    \"ExternalID\": \"sample string 1\",\r\n    \"ExternalSource\": \"sample string 2\"\r\n  },\r\n  \"SelectedLocationID\": \"sample string 4\",\r\n  \"PreferredLocationID\": \"sample string 5\",\r\n  \"BrandID\": 1,\r\n  \"Referrer\": {\r\n    \"ReferredByCode\": \"sample string 1\",\r\n    \"ReferrerCode\": \"sample string 2\"\r\n  },\r\n  \"MarketingOptin\": {\r\n    \"ChangeDate\": \"2026-03-25T07:30:08.5595828+00:00\",\r\n    \"EmailOptin\": true,\r\n    \"SmsOptin\": true,\r\n    \"MailOptin\": true,\r\n    \"PhoneOptin\": true,\r\n    \"PushNotificationOptin\": true,\r\n    \"WebPushNotificationOptin\": true,\r\n    \"WhatsAppOptin\": true,\r\n    \"AppOptin\": true\r\n  },\r\n  \"SupInfo\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldContent\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"MemberNumber\": {\r\n    \"GenerateMemberNumber\": true,\r\n    \"MemberNumber\": \"sample string 2\"\r\n  },\r\n  \"CardToken\": \"sample string 6\",\r\n  \"CardsToken\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"PARTokens\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"PushNotificationDetails\": {\r\n    \"DeviceToken\": \"sample string 1\",\r\n    \"AppID\": 2,\r\n    \"AppName\": \"sample string 3\"\r\n  },\r\n  \"CorporateDetails\": {\r\n    \"CorporateID\": 1,\r\n    \"CorporateName\": \"sample string 1\",\r\n    \"Domains\": [\r\n      {\r\n        \"ID\": 1,\r\n        \"CorporateID\": 2,\r\n        \"Domain\": \"sample string 3\"\r\n      },\r\n      {\r\n        \"ID\": 1,\r\n        \"CorporateID\": 2,\r\n        \"Domain\": \"sample string 3\"\r\n      }\r\n    ]\r\n  },\r\n  \"StaffDetails\": {\r\n    \"StaffID\": \"sample string 1\",\r\n    \"WorkEmail\": \"sample string 2\",\r\n    \"StartDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n    \"Contract\": \"sample string 4\",\r\n    \"ContractCode\": \"sample string 5\",\r\n    \"JobTitle\": \"sample string 6\",\r\n    \"CreateDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n    \"EndDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n    \"EndReason\": \"sample string 8\",\r\n    \"Location\": {\r\n      \"ActeolSiteID\": 1,\r\n      \"ExternalLocationID\": \"sample string 2\"\r\n    },\r\n    \"CompanyName\": \"sample string 9\",\r\n    \"Paybasis\": \"sample string 10\",\r\n    \"ContinuousServiceDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n    \"CustomField1\": \"sample string 11\",\r\n    \"CustomField2\": \"sample string 12\",\r\n    \"CustomField3\": \"sample string 13\",\r\n    \"CustomField4\": \"sample string 14\",\r\n    \"CustomField5\": \"sample string 15\"\r\n  },\r\n  \"CustomerPicture\": {\r\n    \"PictureName\": \"sample string 1\",\r\n    \"PictureExtension\": \"sample string 2\",\r\n    \"PictureData\": \"sample string 3\"\r\n  },\r\n  \"CustomerNotes\": [\r\n    {\r\n      \"Note\": \"sample string 1\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.5752228+00:00\"\r\n    },\r\n    {\r\n      \"Note\": \"sample string 1\",\r\n      \"CreateDate\": \"2026-03-25T07:30:08.5752228+00:00\"\r\n    }\r\n  ],\r\n  \"CustomerAuthentication\": {\r\n    \"Username\": \"sample string 1\",\r\n    \"HashedPassword\": \"sample string 2\",\r\n    \"ApplicationName\": \"sample string 3\"\r\n  }\r\n}"},"url":"https://{{Host}}/api/Customer/Put","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Update the customer details with the entire resource sent (example : if email field is empty we will apply this in our end)<br />\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CustomerUpdatePayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to (should be used only for multi brands instance)</td><td>False</td></tr><tr><td>CardsToken</td><td>List&lt;String&gt;</td><td>Collection of card tokens used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Use this field when you want to update token linked to this customer)</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td>The Card token used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Use this field when you want to Add one token)</td><td>False</td></tr><tr><td>CorporateDetails</td><td>ContactCorporateDetails</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id shouldn't been saved as it can be merged with another customer</td><td>True</td></tr><tr><td>CustomerAuthentication</td><td>CustomerAuthentication</td><td>The Authentication of the customer</td><td>False</td></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>DataProcess</td><td>DataProcess</td><td>Manage the processing of the customer Data. \n            Setting value to false will trigger the hashing of the customer record</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>MemberNumber</td><td>CustomerMemberNumber</td><td>Member number to be generated/saved with the customer account</td><td>False</td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td>Last modification date</td><td>False</td></tr><tr><td>PARTokens</td><td>List&lt;String&gt;</td><td>Collection of PAR tokens used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (PAR token allows us to link all versions of a linked card (physical card, digital card on phone, digital card on watch etc) and record all card transactions by any of these, whereas with the current \"Card Token\" only field each of these would have to be linked individually)</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>PreferredLocationID</td><td>String</td><td>The Location ID added will be used to flag the customer against a preferred Site. The Location IDs can be retrieved from the Location end point</td><td>False</td></tr><tr><td>PushNotificationDetails</td><td>PushNotificationDetails</td><td>Details that will be used to send the push notification</td><td>False</td></tr><tr><td>Referrer</td><td>CustomerReferrer</td><td>The Referrer ID entered when the customer signed up</td><td>False</td></tr><tr><td>SelectedLocationID</td><td>String</td><td>The Location ID added will be used to flag the customer against a selected Site. The Location IDs can be retrieved from the Location end point</td><td>False</td></tr><tr><td>StaffDetails</td><td>StaffDetails</td><td>Details of the Staff</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td colspan=4><h4>ContactCorporateDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td>Corporate ID supplied by Acteol (you can GET/POSt corporate from the API Corporate/GET or Corporate/POST)</td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td>Company name</td><td>False</td></tr><tr><td>Domains</td><td>List&lt;CorporateDomains&gt;</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CorporateDomains Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CorporateID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Domain</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CustomerAuthentication Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplicationName</td><td>String</td><td></td><td>False</td></tr><tr><td>HashedPassword</td><td>String</td><td></td><td>False</td></tr><tr><td>Username</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td colspan=4><h4>DataProcess Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact</td><td>False</td></tr><tr><td colspan=4><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td colspan=4><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td colspan=4><h4>CustomerMemberNumber Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>GenerateMemberNumber</td><td>Boolean</td><td>The default value is false. \n            Setting the value to True will generate a member number for the contact</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member number of the customer ( if <b>GenerateMemberNumber</b> is true and <b>MemberNumber</b> is empty , we will auto-generate a random number for this customer</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td colspan=4><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td colspan=4><h4>PushNotificationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppID</td><td>Int32</td><td>Clients having more thant one Applications will need to add an App ID which will be supplied by Acteol</td><td>False</td></tr><tr><td>AppName</td><td>String</td><td>App Name which will be supplied by Acteol</td><td>False</td></tr><tr><td>DeviceToken</td><td>String</td><td>Device token that will be used to send the message. If multiple tokens are sent Acteol will use the latest token sent</td><td>False</td></tr><tr><td colspan=4><h4>CustomerReferrer Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ReferredByCode</td><td>String</td><td>The referrer code of the friend who invited this customer</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>The referrer code of the customer (if empty we will auto generate a code for this customer)</td><td>False</td></tr><tr><td colspan=4><h4>StaffDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CompanyName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContinuousServiceDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Contract</td><td>String</td><td></td><td>False</td></tr><tr><td>ContractCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>CustomField1</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td></td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>EndReason</td><td>String</td><td></td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td></td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td></td><td>False</td></tr><tr><td>Paybasis</td><td>String</td><td></td><td>False</td></tr><tr><td>StaffID</td><td>String</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>WorkEmail</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>UpdateCustomerOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>CustomerResponse</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>CustomerResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CpyID</td><td>Int32</td><td>Household id of the customer</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer : this id can be merged with another customer so you must not save it in your system.</td></tr><tr><td>MD5</td><td>String</td><td>Token linked to the customer used for my preference site SSO</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member Number generated for this customer<br></br></td></tr><tr><td>ReferrerCode</td><td>String</td><td>Referrer code for this customer</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseData\": {\r\n    \"CtcID\": 1,\r\n    \"CpyID\": 2,\r\n    \"MD5\": \"sample string 3\",\r\n    \"ReferrerCode\": \"sample string 4\",\r\n    \"MemberNumber\": \"sample string 5\"\r\n  },\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"cb8edd59-fff3-42b7-a094-930aafebec71"}],"id":"6c5f6472-fbf3-4928-8ab9-ec25780798a7","description":"<p>API methods to manage customer details (Find/Add)<br /></p><h2>Standard API Responses</h2><li><strong>200</strong> Success</li><li><strong>401</strong> Unauthorized (no valid access token provided)</li><li><strong>403</strong> Forbidden Forbidden (indicates you do not have access to this method)</li><li><strong>404</strong> Not Found (indicates invalid parameters or missing API endpoint)</li><li><strong>500</strong> Internal Server Error (indicates something went wrong on our end)</li><br /><br />for 200-level responses there is a field named <strong>ResponseStatus</strong> which will give you the status of the call :<li><b>true</b> Success</li><li><b>false</b> there is an error (you will find the error code and the description in the object <b>Errors</b>) </li><br /><br /><h2>Possible Errors</h2><li><strong>1</strong> Missing mandatory fields</li><li><strong>2</strong> Internal Error</li><li><strong>3</strong> Not authorized to use the brand requested or brand id is missing</li><li><strong>4</strong> No Data found</li><li><strong>5</strong> Maximum records exceeded</li><li><strong>6</strong> Referrer code already used</li><li><strong>7</strong> Member number already used</li><li><strong>8</strong> Invalid selected location id</li><li><strong>9</strong> Invalid preferred location id</li><li><strong>10</strong> Card token already used</li><li><strong>11</strong> No brand found in this instance</li><li><strong>12</strong> empty input parameter</li> <p></p>\n","_postman_id":"6c5f6472-fbf3-4928-8ab9-ec25780798a7"},{"name":"CustomerAsset","item":[{"name":"AddCustomerAsset","id":"1c77a8a4-d0d2-4731-b3dc-0fffb8f4aed3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerAssetID\": 1,\r\n  \"CtcID\": 2,\r\n  \"ExternalID\": \"sample string 3\",\r\n  \"Name\": \"sample string 4\",\r\n  \"CreatedBy\": \"sample string 5\",\r\n  \"ModifiedBy\": \"sample string 6\",\r\n  \"CreatedOn\": \"2026-03-25T07:30:08.4033529+00:00\",\r\n  \"ModifiedOn\": \"2026-03-25T07:30:08.4033529+00:00\",\r\n  \"AssetDetails\": [\r\n    {\r\n      \"KeyName\": \"sample string 1\",\r\n      \"KeyValue\": \"sample string 2\",\r\n      \"KeyType\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"KeyName\": \"sample string 1\",\r\n      \"KeyValue\": \"sample string 2\",\r\n      \"KeyType\": \"sample string 3\"\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/CustomerAsset/AddCustomerAsset","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td><td>False</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td><td>False</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td><td>False</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td><td>False</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td><td>False</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td><td>False</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td><td>False</td></tr><tr><td><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td><td>False</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td><td>False</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>CustomerAssetOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Customer Asset Unique ID</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","CustomerAsset","AddCustomerAsset"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"2443c204-c136-4840-a936-1cd5b3048d76","name":"api/CustomerAsset/AddCustomerAsset Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerAssetID\": 1,\r\n  \"CtcID\": 2,\r\n  \"ExternalID\": \"sample string 3\",\r\n  \"Name\": \"sample string 4\",\r\n  \"CreatedBy\": \"sample string 5\",\r\n  \"ModifiedBy\": \"sample string 6\",\r\n  \"CreatedOn\": \"2026-03-25T07:30:08.4033529+00:00\",\r\n  \"ModifiedOn\": \"2026-03-25T07:30:08.4033529+00:00\",\r\n  \"AssetDetails\": [\r\n    {\r\n      \"KeyName\": \"sample string 1\",\r\n      \"KeyValue\": \"sample string 2\",\r\n      \"KeyType\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"KeyName\": \"sample string 1\",\r\n      \"KeyValue\": \"sample string 2\",\r\n      \"KeyType\": \"sample string 3\"\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/CustomerAsset/AddCustomerAsset","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td><td>False</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td><td>False</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td><td>False</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td><td>False</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td><td>False</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td><td>False</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td><td>False</td></tr><tr><td colspan=4><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td><td>False</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td><td>False</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomerAssetOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Customer Asset Unique ID</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"CustomerAssetID\": 2,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"1c77a8a4-d0d2-4731-b3dc-0fffb8f4aed3"},{"name":"FindByExternalID","id":"cf639747-1dd0-4b25-9c12-01ea8da21e9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/CustomerAsset/FindByExternalID?ExternalID=ExternalID-value","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>CustomerAssetOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Customer Asset Unique ID</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","CustomerAsset","FindByExternalID"],"host":["{{Host}}"],"query":[{"key":"ExternalID","value":"ExternalID-value"}],"variable":[]}},"response":[{"id":"98cb5df0-9daf-47c0-8b8b-a9dbb21a4a39","name":"api/CustomerAsset/FindByExternalID?ExternalID={ExternalID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/CustomerAsset/FindByExternalID?ExternalID=ExternalID-value","protocol":"https","host":["{{Host}}"],"path":["api","CustomerAsset","FindByExternalID"],"query":[{"key":"ExternalID","value":"ExternalID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomerAssetOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Customer Asset Unique ID</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"CustomerAssetID\": 2,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"cf639747-1dd0-4b25-9c12-01ea8da21e9d"},{"name":"FindBySpecificField","id":"a14864f0-7552-4ebe-a7fd-1a690cbb3154","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/CustomerAsset/FindBySpecificField?FieldName=FieldName-value&FieldValue=FieldValue-value&BatchSize=BatchSize-value&BatchID=BatchID-value&FieldsToExport=FieldsToExport-value&RemoveEmptyValue=RemoveEmptyValue-value","description":" <p>  \n            This method returns a batch of assets  according to the criteria (Fieldname and filed value)\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ApiCustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BatchID</td><td>Int32</td><td>Should be used in the next call when Remaining is true</td></tr><tr><td>CustomerAssets</td><td>List&lt;CustomerAsset&gt;</td><td>List of customerassets results</td></tr><tr><td>Remaining</td><td>Boolean</td><td>false : all records are returned</td></tr><tr><td><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td></tr><tr><td><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td></tr></table>","urlObject":{"protocol":"https","path":["api","CustomerAsset","FindBySpecificField"],"host":["{{Host}}"],"query":[{"key":"FieldName","value":"FieldName-value"},{"key":"FieldValue","value":"FieldValue-value"},{"key":"BatchSize","value":"BatchSize-value"},{"key":"BatchID","value":"BatchID-value"},{"key":"FieldsToExport","value":"FieldsToExport-value"},{"key":"RemoveEmptyValue","value":"RemoveEmptyValue-value"}],"variable":[]}},"response":[{"id":"6a273ded-f64f-4d21-b6ce-30f68c42ac83","name":"api/CustomerAsset/FindBySpecificField?FieldName={FieldName}&FieldValue={FieldValue}&BatchSize={BatchSize}&BatchID={BatchID}&FieldsToExport={FieldsToExport}&RemoveEmptyValue={RemoveEmptyValue} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/CustomerAsset/FindBySpecificField?FieldName=FieldName-value&FieldValue=FieldValue-value&BatchSize=BatchSize-value&BatchID=BatchID-value&FieldsToExport=FieldsToExport-value&RemoveEmptyValue=RemoveEmptyValue-value","protocol":"https","host":["{{Host}}"],"path":["api","CustomerAsset","FindBySpecificField"],"query":[{"key":"FieldName","value":"FieldName-value"},{"key":"FieldValue","value":"FieldValue-value"},{"key":"BatchSize","value":"BatchSize-value"},{"key":"BatchID","value":"BatchID-value"},{"key":"FieldsToExport","value":"FieldsToExport-value"},{"key":"RemoveEmptyValue","value":"RemoveEmptyValue-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>  \r\n            This method returns a batch of assets  according to the criteria (Fieldname and filed value)\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiCustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BatchID</td><td>Int32</td><td>Should be used in the next call when Remaining is true</td></tr><tr><td>CustomerAssets</td><td>List&lt;CustomerAsset&gt;</td><td>List of customerassets results</td></tr><tr><td>Remaining</td><td>Boolean</td><td>false : all records are returned</td></tr><tr><td colspan=3><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td></tr><tr><td colspan=3><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Remaining\": true,\r\n  \"BatchID\": 2,\r\n  \"CustomerAssets\": [\r\n    {\r\n      \"CustomerAssetID\": 1,\r\n      \"CtcID\": 2,\r\n      \"ExternalID\": \"sample string 3\",\r\n      \"Name\": \"sample string 4\",\r\n      \"CreatedBy\": \"sample string 5\",\r\n      \"ModifiedBy\": \"sample string 6\",\r\n      \"CreatedOn\": \"2026-03-25T07:30:08.3877213+00:00\",\r\n      \"ModifiedOn\": \"2026-03-25T07:30:08.3877213+00:00\",\r\n      \"AssetDetails\": [\r\n        {\r\n          \"KeyName\": \"sample string 1\",\r\n          \"KeyValue\": \"sample string 2\",\r\n          \"KeyType\": \"sample string 3\"\r\n        },\r\n        {\r\n          \"KeyName\": \"sample string 1\",\r\n          \"KeyValue\": \"sample string 2\",\r\n          \"KeyType\": \"sample string 3\"\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"CustomerAssetID\": 1,\r\n      \"CtcID\": 2,\r\n      \"ExternalID\": \"sample string 3\",\r\n      \"Name\": \"sample string 4\",\r\n      \"CreatedBy\": \"sample string 5\",\r\n      \"ModifiedBy\": \"sample string 6\",\r\n      \"CreatedOn\": \"2026-03-25T07:30:08.3877213+00:00\",\r\n      \"ModifiedOn\": \"2026-03-25T07:30:08.3877213+00:00\",\r\n      \"AssetDetails\": [\r\n        {\r\n          \"KeyName\": \"sample string 1\",\r\n          \"KeyValue\": \"sample string 2\",\r\n          \"KeyType\": \"sample string 3\"\r\n        },\r\n        {\r\n          \"KeyName\": \"sample string 1\",\r\n          \"KeyValue\": \"sample string 2\",\r\n          \"KeyType\": \"sample string 3\"\r\n        }\r\n      ]\r\n    }\r\n  ]\r\n}"}],"_postman_id":"a14864f0-7552-4ebe-a7fd-1a690cbb3154"},{"name":"GetbyCtcID","id":"3973897b-9795-483b-9886-8c27bfdca5e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/CustomerAsset/GetbyCtcID?CtcID=CtcID-value&FromDate=FromDate-value&FieldsToExport=FieldsToExport-value&RemoveEmptyValue=RemoveEmptyValue-value","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td></tr><tr><td><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td></tr></table>","urlObject":{"protocol":"https","path":["api","CustomerAsset","GetbyCtcID"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"FromDate","value":"FromDate-value"},{"key":"FieldsToExport","value":"FieldsToExport-value"},{"key":"RemoveEmptyValue","value":"RemoveEmptyValue-value"}],"variable":[]}},"response":[{"id":"87630cf3-cb02-4bb0-98d8-a2a4139c9daa","name":"api/CustomerAsset/GetbyCtcID?CtcID={CtcID}&FromDate={FromDate}&FieldsToExport={FieldsToExport}&RemoveEmptyValue={RemoveEmptyValue} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/CustomerAsset/GetbyCtcID?CtcID=CtcID-value&FromDate=FromDate-value&FieldsToExport=FieldsToExport-value&RemoveEmptyValue=RemoveEmptyValue-value","protocol":"https","host":["{{Host}}"],"path":["api","CustomerAsset","GetbyCtcID"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"FromDate","value":"FromDate-value"},{"key":"FieldsToExport","value":"FieldsToExport-value"},{"key":"RemoveEmptyValue","value":"RemoveEmptyValue-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td></tr><tr><td colspan=3><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"CustomerAssetID\": 1,\r\n    \"CtcID\": 2,\r\n    \"ExternalID\": \"sample string 3\",\r\n    \"Name\": \"sample string 4\",\r\n    \"CreatedBy\": \"sample string 5\",\r\n    \"ModifiedBy\": \"sample string 6\",\r\n    \"CreatedOn\": \"2026-03-25T07:30:08.4033529+00:00\",\r\n    \"ModifiedOn\": \"2026-03-25T07:30:08.4033529+00:00\",\r\n    \"AssetDetails\": [\r\n      {\r\n        \"KeyName\": \"sample string 1\",\r\n        \"KeyValue\": \"sample string 2\",\r\n        \"KeyType\": \"sample string 3\"\r\n      },\r\n      {\r\n        \"KeyName\": \"sample string 1\",\r\n        \"KeyValue\": \"sample string 2\",\r\n        \"KeyType\": \"sample string 3\"\r\n      }\r\n    ]\r\n  },\r\n  {\r\n    \"CustomerAssetID\": 1,\r\n    \"CtcID\": 2,\r\n    \"ExternalID\": \"sample string 3\",\r\n    \"Name\": \"sample string 4\",\r\n    \"CreatedBy\": \"sample string 5\",\r\n    \"ModifiedBy\": \"sample string 6\",\r\n    \"CreatedOn\": \"2026-03-25T07:30:08.4033529+00:00\",\r\n    \"ModifiedOn\": \"2026-03-25T07:30:08.4033529+00:00\",\r\n    \"AssetDetails\": [\r\n      {\r\n        \"KeyName\": \"sample string 1\",\r\n        \"KeyValue\": \"sample string 2\",\r\n        \"KeyType\": \"sample string 3\"\r\n      },\r\n      {\r\n        \"KeyName\": \"sample string 1\",\r\n        \"KeyValue\": \"sample string 2\",\r\n        \"KeyType\": \"sample string 3\"\r\n      }\r\n    ]\r\n  }\r\n]"}],"_postman_id":"3973897b-9795-483b-9886-8c27bfdca5e5"},{"name":"GetbyCustomerAssetID","id":"436d4391-6fa6-4c0c-b714-f3e69c3b3bb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/CustomerAsset/GetbyCustomerAssetID?CustomerAssetID=CustomerAssetID-value&FieldsToExport=FieldsToExport-value&RemoveEmptyValue=RemoveEmptyValue-value","description":" <p>  \n            This method returns the details of the asset\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td></tr><tr><td><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td></tr></table>","urlObject":{"protocol":"https","path":["api","CustomerAsset","GetbyCustomerAssetID"],"host":["{{Host}}"],"query":[{"key":"CustomerAssetID","value":"CustomerAssetID-value"},{"key":"FieldsToExport","value":"FieldsToExport-value"},{"key":"RemoveEmptyValue","value":"RemoveEmptyValue-value"}],"variable":[]}},"response":[{"id":"08931a36-ba32-46c4-b450-0357526f526a","name":"api/CustomerAsset/GetbyCustomerAssetID?CustomerAssetID={CustomerAssetID}&FieldsToExport={FieldsToExport}&RemoveEmptyValue={RemoveEmptyValue} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/CustomerAsset/GetbyCustomerAssetID?CustomerAssetID=CustomerAssetID-value&FieldsToExport=FieldsToExport-value&RemoveEmptyValue=RemoveEmptyValue-value","protocol":"https","host":["{{Host}}"],"path":["api","CustomerAsset","GetbyCustomerAssetID"],"query":[{"key":"CustomerAssetID","value":"CustomerAssetID-value"},{"key":"FieldsToExport","value":"FieldsToExport-value"},{"key":"RemoveEmptyValue","value":"RemoveEmptyValue-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>  \r\n            This method returns the details of the asset\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td></tr><tr><td colspan=3><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CustomerAssetID\": 1,\r\n  \"CtcID\": 2,\r\n  \"ExternalID\": \"sample string 3\",\r\n  \"Name\": \"sample string 4\",\r\n  \"CreatedBy\": \"sample string 5\",\r\n  \"ModifiedBy\": \"sample string 6\",\r\n  \"CreatedOn\": \"2026-03-25T07:30:08.4033529+00:00\",\r\n  \"ModifiedOn\": \"2026-03-25T07:30:08.4033529+00:00\",\r\n  \"AssetDetails\": [\r\n    {\r\n      \"KeyName\": \"sample string 1\",\r\n      \"KeyValue\": \"sample string 2\",\r\n      \"KeyType\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"KeyName\": \"sample string 1\",\r\n      \"KeyValue\": \"sample string 2\",\r\n      \"KeyType\": \"sample string 3\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"436d4391-6fa6-4c0c-b714-f3e69c3b3bb1"},{"name":"Remove","id":"ab553438-00a7-4cea-982b-6efb7c2f5e00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/CustomerAsset/Remove?CustomerAssetID=CustomerAssetID-value","description":" <p>\n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>CustomerAssetOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Customer Asset Unique ID</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","CustomerAsset","Remove"],"host":["{{Host}}"],"query":[{"key":"CustomerAssetID","value":"CustomerAssetID-value"}],"variable":[]}},"response":[{"id":"22cfb2ca-b8fd-4b4f-8c92-15c223412be4","name":"api/CustomerAsset/Remove?CustomerAssetID={CustomerAssetID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/CustomerAsset/Remove?CustomerAssetID=CustomerAssetID-value","protocol":"https","host":["{{Host}}"],"path":["api","CustomerAsset","Remove"],"query":[{"key":"CustomerAssetID","value":"CustomerAssetID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomerAssetOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Customer Asset Unique ID</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"CustomerAssetID\": 2,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"ab553438-00a7-4cea-982b-6efb7c2f5e00"},{"name":"SearchWithFilters","id":"52e46ca0-18b1-4dba-80d7-5b156712ce44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"FieldsToExport\": \"sample string 1\",\r\n  \"RemoveEmptyValue\": true,\r\n  \"RecordsSize\": 1,\r\n  \"RecordID\": 3,\r\n  \"Filters\": [\r\n    {\r\n      \"FilterName\": \"sample string 1\",\r\n      \"FilterValue\": \"sample string 2\",\r\n      \"FilterSymbol\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"FilterName\": \"sample string 1\",\r\n      \"FilterValue\": \"sample string 2\",\r\n      \"FilterSymbol\": \"sample string 3\"\r\n    }\r\n  ],\r\n  \"SortingDetails\": {\r\n    \"SortingField\": \"sample string 1\",\r\n    \"SortingOrder\": 0\r\n  }\r\n}"},"url":"https://{{Host}}/api/CustomerAsset/SearchWithFilters","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>CustomerAssetFilter Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldsToExport</td><td>String</td><td>Name of the fileds that should be exported</td><td>False</td></tr><tr><td>Filters</td><td>List&lt;FilterKey&gt;</td><td>List of search criteria</td><td>False</td></tr><tr><td>RecordID</td><td>Int32</td><td>Should be used in the next call when Remaining is true</td><td>False</td></tr><tr><td>RecordsSize</td><td>Int32 (nullable)</td><td>Number of records should be returned</td><td>False</td></tr><tr><td>RemoveEmptyValue</td><td>Boolean</td><td>Remove fields if empty</td><td>False</td></tr><tr><td>SortingDetails</td><td>CustomerAssetSort</td><td>Sorting details</td><td>False</td></tr><tr><td><h4>FilterKey Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FilterName</td><td>String</td><td>the field name</td><td>False</td></tr><tr><td>FilterSymbol</td><td>String</td><td>Comparison Symbol &gt;  = !=</td><td>False</td></tr><tr><td>FilterValue</td><td>String</td><td>the field value</td><td>False</td></tr><tr><td><h4>CustomerAssetSort Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>SortingField</td><td>String</td><td>Name of the fileds that will be used for sorting</td><td>False</td></tr><tr><td>SortingOrder</td><td>EnumSort</td><td>The sorting Order (By Default DESC)</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>CustomerAsset_ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BatchID</td><td>Int32</td><td>Should be used in the next call when Remaining is true</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>ListCustomerAssets</td><td>List&lt;CustomerAsset&gt;</td><td></td></tr><tr><td>Remaining</td><td>Boolean</td><td>false : all records are returned</td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td></tr><tr><td><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td></tr></table>","urlObject":{"protocol":"https","path":["api","CustomerAsset","SearchWithFilters"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"999d00d9-b57d-48cd-b999-cbdbce235b11","name":"api/CustomerAsset/SearchWithFilters Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"FieldsToExport\": \"sample string 1\",\r\n  \"RemoveEmptyValue\": true,\r\n  \"RecordsSize\": 1,\r\n  \"RecordID\": 3,\r\n  \"Filters\": [\r\n    {\r\n      \"FilterName\": \"sample string 1\",\r\n      \"FilterValue\": \"sample string 2\",\r\n      \"FilterSymbol\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"FilterName\": \"sample string 1\",\r\n      \"FilterValue\": \"sample string 2\",\r\n      \"FilterSymbol\": \"sample string 3\"\r\n    }\r\n  ],\r\n  \"SortingDetails\": {\r\n    \"SortingField\": \"sample string 1\",\r\n    \"SortingOrder\": 0\r\n  }\r\n}"},"url":"https://{{Host}}/api/CustomerAsset/SearchWithFilters","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CustomerAssetFilter Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldsToExport</td><td>String</td><td>Name of the fileds that should be exported</td><td>False</td></tr><tr><td>Filters</td><td>List&lt;FilterKey&gt;</td><td>List of search criteria</td><td>False</td></tr><tr><td>RecordID</td><td>Int32</td><td>Should be used in the next call when Remaining is true</td><td>False</td></tr><tr><td>RecordsSize</td><td>Int32 (nullable)</td><td>Number of records should be returned</td><td>False</td></tr><tr><td>RemoveEmptyValue</td><td>Boolean</td><td>Remove fields if empty</td><td>False</td></tr><tr><td>SortingDetails</td><td>CustomerAssetSort</td><td>Sorting details</td><td>False</td></tr><tr><td colspan=4><h4>FilterKey Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FilterName</td><td>String</td><td>the field name</td><td>False</td></tr><tr><td>FilterSymbol</td><td>String</td><td>Comparison Symbol &gt;  = !=</td><td>False</td></tr><tr><td>FilterValue</td><td>String</td><td>the field value</td><td>False</td></tr><tr><td colspan=4><h4>CustomerAssetSort Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>SortingField</td><td>String</td><td>Name of the fileds that will be used for sorting</td><td>False</td></tr><tr><td>SortingOrder</td><td>EnumSort</td><td>The sorting Order (By Default DESC)</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomerAsset_ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BatchID</td><td>Int32</td><td>Should be used in the next call when Remaining is true</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>ListCustomerAssets</td><td>List&lt;CustomerAsset&gt;</td><td></td></tr><tr><td>Remaining</td><td>Boolean</td><td>false : all records are returned</td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td colspan=3><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td></tr><tr><td colspan=3><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Remaining\": true,\r\n  \"BatchID\": 3,\r\n  \"ListCustomerAssets\": [\r\n    {\r\n      \"CustomerAssetID\": 1,\r\n      \"CtcID\": 2,\r\n      \"ExternalID\": \"sample string 3\",\r\n      \"Name\": \"sample string 4\",\r\n      \"CreatedBy\": \"sample string 5\",\r\n      \"ModifiedBy\": \"sample string 6\",\r\n      \"CreatedOn\": \"2026-03-25T07:30:08.4189685+00:00\",\r\n      \"ModifiedOn\": \"2026-03-25T07:30:08.4189685+00:00\",\r\n      \"AssetDetails\": [\r\n        {\r\n          \"KeyName\": \"sample string 1\",\r\n          \"KeyValue\": \"sample string 2\",\r\n          \"KeyType\": \"sample string 3\"\r\n        },\r\n        {\r\n          \"KeyName\": \"sample string 1\",\r\n          \"KeyValue\": \"sample string 2\",\r\n          \"KeyType\": \"sample string 3\"\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"CustomerAssetID\": 1,\r\n      \"CtcID\": 2,\r\n      \"ExternalID\": \"sample string 3\",\r\n      \"Name\": \"sample string 4\",\r\n      \"CreatedBy\": \"sample string 5\",\r\n      \"ModifiedBy\": \"sample string 6\",\r\n      \"CreatedOn\": \"2026-03-25T07:30:08.4189685+00:00\",\r\n      \"ModifiedOn\": \"2026-03-25T07:30:08.4189685+00:00\",\r\n      \"AssetDetails\": [\r\n        {\r\n          \"KeyName\": \"sample string 1\",\r\n          \"KeyValue\": \"sample string 2\",\r\n          \"KeyType\": \"sample string 3\"\r\n        },\r\n        {\r\n          \"KeyName\": \"sample string 1\",\r\n          \"KeyValue\": \"sample string 2\",\r\n          \"KeyType\": \"sample string 3\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"52e46ca0-18b1-4dba-80d7-5b156712ce44"},{"name":"UpdateCustomerAsset","id":"8f041f23-880b-46a3-aafe-1733a902e908","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerAssetID\": 1,\r\n  \"CtcID\": 2,\r\n  \"ExternalID\": \"sample string 3\",\r\n  \"Name\": \"sample string 4\",\r\n  \"CreatedBy\": \"sample string 5\",\r\n  \"ModifiedBy\": \"sample string 6\",\r\n  \"CreatedOn\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n  \"ModifiedOn\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n  \"AssetDetails\": [\r\n    {\r\n      \"KeyName\": \"sample string 1\",\r\n      \"KeyValue\": \"sample string 2\",\r\n      \"KeyType\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"KeyName\": \"sample string 1\",\r\n      \"KeyValue\": \"sample string 2\",\r\n      \"KeyType\": \"sample string 3\"\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/CustomerAsset/UpdateCustomerAsset","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td><td>False</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td><td>False</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td><td>False</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td><td>False</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td><td>False</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td><td>False</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td><td>False</td></tr><tr><td><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td><td>False</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td><td>False</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td></tr><tr><td><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td></tr></table>","urlObject":{"protocol":"https","path":["api","CustomerAsset","UpdateCustomerAsset"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"4fb943ee-dea2-4cfe-b619-316e64277fb9","name":"api/CustomerAsset/UpdateCustomerAsset Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerAssetID\": 1,\r\n  \"CtcID\": 2,\r\n  \"ExternalID\": \"sample string 3\",\r\n  \"Name\": \"sample string 4\",\r\n  \"CreatedBy\": \"sample string 5\",\r\n  \"ModifiedBy\": \"sample string 6\",\r\n  \"CreatedOn\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n  \"ModifiedOn\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n  \"AssetDetails\": [\r\n    {\r\n      \"KeyName\": \"sample string 1\",\r\n      \"KeyValue\": \"sample string 2\",\r\n      \"KeyType\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"KeyName\": \"sample string 1\",\r\n      \"KeyValue\": \"sample string 2\",\r\n      \"KeyType\": \"sample string 3\"\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/CustomerAsset/UpdateCustomerAsset","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td><td>False</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td><td>False</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td><td>False</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td><td>False</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td><td>False</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td><td>False</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td><td>False</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td><td>False</td></tr><tr><td colspan=4><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td><td>False</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td><td>False</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomerAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetDetails</td><td>List&lt;Key&gt;</td><td>the list details of the Object</td></tr><tr><td>CreatedBy</td><td>String</td><td>Object Created by</td></tr><tr><td>CreatedOn</td><td>DateTime (nullable)</td><td>Object created on</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID linked to the Asset</td></tr><tr><td>CustomerAssetID</td><td>Int32</td><td>The Unique ID of the object</td></tr><tr><td>ExternalID</td><td>String</td><td>The ID of the object</td></tr><tr><td>ModifiedBy</td><td>String</td><td>Object ModifiedBy</td></tr><tr><td>ModifiedOn</td><td>DateTime (nullable)</td><td>Object Modified on</td></tr><tr><td>Name</td><td>String</td><td>The Name of the object</td></tr><tr><td colspan=3><h4>Key Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>KeyName</td><td>String</td><td>the field name</td></tr><tr><td>KeyType</td><td>String</td><td>The possible values for this field are: SmallString (max length 50 characters), MediumString (max length 250 characters), BigString (text), Integer, Decimal, DateTime, Date</td></tr><tr><td>KeyValue</td><td>String</td><td>the field value</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CustomerAssetID\": 1,\r\n  \"CtcID\": 2,\r\n  \"ExternalID\": \"sample string 3\",\r\n  \"Name\": \"sample string 4\",\r\n  \"CreatedBy\": \"sample string 5\",\r\n  \"ModifiedBy\": \"sample string 6\",\r\n  \"CreatedOn\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n  \"ModifiedOn\": \"2026-03-25T07:30:08.4345962+00:00\",\r\n  \"AssetDetails\": [\r\n    {\r\n      \"KeyName\": \"sample string 1\",\r\n      \"KeyValue\": \"sample string 2\",\r\n      \"KeyType\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"KeyName\": \"sample string 1\",\r\n      \"KeyValue\": \"sample string 2\",\r\n      \"KeyType\": \"sample string 3\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"8f041f23-880b-46a3-aafe-1733a902e908"}],"id":"5ae1867e-fcbb-4017-be4e-15d654d4f607","description":"<p>Api Methods for CustomerAsset</p>\n","_postman_id":"5ae1867e-fcbb-4017-be4e-15d654d4f607"},{"name":"Event","item":[{"name":"GetEventRegisterStatus","id":"5445460d-4d1f-4202-aef1-401085f35973","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Event/GetEventRegisterStatus?qrCodeGeneratedKey=qrCodeGeneratedKey-value","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>AttandanceApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Attandance</td><td>EventAttandance</td><td></td></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td>Event</td><td>Event</td><td></td></tr><tr><td><h4>EventAttandance Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>checkinDateTime</td><td>DateTime</td><td>The attendance date and time .</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the contact .</td></tr><tr><td>Email</td><td>String</td><td>The contact email .</td></tr><tr><td>EventID</td><td>Int32</td><td>The ID of the event .</td></tr><tr><td>FirstName</td><td>String</td><td>The contact first name</td></tr><tr><td>FullName</td><td>String</td><td>The contact fullname .</td></tr><tr><td>LastName</td><td>String</td><td>The contact last name</td></tr><tr><td>Message</td><td>String</td><td>The attendance message .</td></tr><tr><td>SlotID</td><td>Int32</td><td>The ID of the slot .</td></tr><tr><td><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Event","GetEventRegisterStatus"],"host":["{{Host}}"],"query":[{"key":"qrCodeGeneratedKey","value":"qrCodeGeneratedKey-value"}],"variable":[]}},"response":[{"id":"7a9fa816-17d9-40d1-8a25-4a30d3c44f8d","name":"api/Event/GetEventRegisterStatus?qrCodeGeneratedKey={qrCodeGeneratedKey} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Event/GetEventRegisterStatus?qrCodeGeneratedKey=qrCodeGeneratedKey-value","protocol":"https","host":["{{Host}}"],"path":["api","Event","GetEventRegisterStatus"],"query":[{"key":"qrCodeGeneratedKey","value":"qrCodeGeneratedKey-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>AttandanceApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Attandance</td><td>EventAttandance</td><td></td></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td>Event</td><td>Event</td><td></td></tr><tr><td colspan=3><h4>EventAttandance Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>checkinDateTime</td><td>DateTime</td><td>The attendance date and time .</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the contact .</td></tr><tr><td>Email</td><td>String</td><td>The contact email .</td></tr><tr><td>EventID</td><td>Int32</td><td>The ID of the event .</td></tr><tr><td>FirstName</td><td>String</td><td>The contact first name</td></tr><tr><td>FullName</td><td>String</td><td>The contact fullname .</td></tr><tr><td>LastName</td><td>String</td><td>The contact last name</td></tr><tr><td>Message</td><td>String</td><td>The attendance message .</td></tr><tr><td>SlotID</td><td>Int32</td><td>The ID of the slot .</td></tr><tr><td colspan=3><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Attandance\": {\r\n    \"EventID\": 1,\r\n    \"CtcID\": 2,\r\n    \"SlotID\": 3,\r\n    \"FullName\": \"sample string 4\",\r\n    \"FirstName\": \"sample string 5\",\r\n    \"LastName\": \"sample string 6\",\r\n    \"Email\": \"sample string 7\",\r\n    \"Message\": \"sample string 8\",\r\n    \"checkinDateTime\": \"2026-03-25T07:30:08.5752228+00:00\"\r\n  },\r\n  \"Event\": {\r\n    \"ID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"VenueID\": 3,\r\n    \"Description\": \"sample string 4\",\r\n    \"Date\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n    \"EndDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n    \"EventSpecificURL\": \"sample string 7\",\r\n    \"EventAnonymousURL\": \"sample string 8\",\r\n    \"Slots\": [\r\n      {\r\n        \"SlotID\": 1,\r\n        \"SlotName\": \"sample string 2\",\r\n        \"SlotStartDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n        \"SlotEndDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n        \"MaxDelegates\": 5,\r\n        \"WaitingList\": 6,\r\n        \"SlotDescription\": \"sample string 7\",\r\n        \"SlotDetails\": \"sample string 8\",\r\n        \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n      },\r\n      {\r\n        \"SlotID\": 1,\r\n        \"SlotName\": \"sample string 2\",\r\n        \"SlotStartDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n        \"SlotEndDate\": \"2026-03-25T07:30:08.5752228+00:00\",\r\n        \"MaxDelegates\": 5,\r\n        \"WaitingList\": 6,\r\n        \"SlotDescription\": \"sample string 7\",\r\n        \"SlotDetails\": \"sample string 8\",\r\n        \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n      }\r\n    ],\r\n    \"EventType\": 9,\r\n    \"BrandID\": 10,\r\n    \"BrandName\": \"sample string 11\",\r\n    \"Numberofinvitees\": 12,\r\n    \"MaxAttendees\": 13,\r\n    \"WaitingList\": 14,\r\n    \"NumberOfRegistrations\": 15,\r\n    \"CreatedBy\": \"sample string 16\",\r\n    \"ApprovalStatus\": \"sample string 17\",\r\n    \"ApprovalStatusTemplate\": \"sample string 18\",\r\n    \"CanApprove\": \"sample string 19\",\r\n    \"EUID\": \"sample string 20\",\r\n    \"HasImages\": true,\r\n    \"EventSurveyCode\": \"sample string 22\",\r\n    \"EventCampaignStatus\": \"sample string 23\",\r\n    \"EventWithCampaign\": true,\r\n    \"EventQRCodeURL\": \"sample string 25\",\r\n    \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n  },\r\n  \"ErrorCode\": 1,\r\n  \"ErrorDescription\": \"sample string 2\"\r\n}"}],"_postman_id":"5445460d-4d1f-4202-aef1-401085f35973"},{"name":"GetEvents","id":"9250e37d-6a00-4377-8e92-3fb42d4d070c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Event/GetEvents?Criteria=Criteria-value&AvailableOnly=AvailableOnly-value&FromDate=FromDate-value&BrandID=BrandID-value&ToDate=ToDate-value","description":" <p>\n            Get Events list\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>EventsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Events</td><td>List&lt;Event&gt;</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Result</td><td>String</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr><tr><td><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Event","GetEvents"],"host":["{{Host}}"],"query":[{"key":"Criteria","value":"Criteria-value"},{"key":"AvailableOnly","value":"AvailableOnly-value"},{"key":"FromDate","value":"FromDate-value"},{"key":"BrandID","value":"BrandID-value"},{"key":"ToDate","value":"ToDate-value"}],"variable":[]}},"response":[{"id":"cbea5067-9efe-4ab6-8200-f486fcb63af6","name":"api/Event/GetEvents?Criteria={Criteria}&AvailableOnly={AvailableOnly}&FromDate={FromDate}&BrandID={BrandID}&ToDate={ToDate} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Event/GetEvents?Criteria=Criteria-value&AvailableOnly=AvailableOnly-value&FromDate=FromDate-value&BrandID=BrandID-value&ToDate=ToDate-value","protocol":"https","host":["{{Host}}"],"path":["api","Event","GetEvents"],"query":[{"key":"Criteria","value":"Criteria-value"},{"key":"AvailableOnly","value":"AvailableOnly-value"},{"key":"FromDate","value":"FromDate-value"},{"key":"BrandID","value":"BrandID-value"},{"key":"ToDate","value":"ToDate-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Events list\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>EventsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Events</td><td>List&lt;Event&gt;</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Result</td><td>String</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr><tr><td colspan=3><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Success\": true,\r\n  \"ID\": 2,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"Result\": \"sample string 3\",\r\n  \"Events\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"VenueID\": 3,\r\n      \"Description\": \"sample string 4\",\r\n      \"Date\": \"2026-03-25T07:30:08.6064653+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:08.6064653+00:00\",\r\n      \"EventSpecificURL\": \"sample string 7\",\r\n      \"EventAnonymousURL\": \"sample string 8\",\r\n      \"Slots\": [\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6064653+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6064653+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        },\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6064653+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6064653+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        }\r\n      ],\r\n      \"EventType\": 9,\r\n      \"BrandID\": 10,\r\n      \"BrandName\": \"sample string 11\",\r\n      \"Numberofinvitees\": 12,\r\n      \"MaxAttendees\": 13,\r\n      \"WaitingList\": 14,\r\n      \"NumberOfRegistrations\": 15,\r\n      \"CreatedBy\": \"sample string 16\",\r\n      \"ApprovalStatus\": \"sample string 17\",\r\n      \"ApprovalStatusTemplate\": \"sample string 18\",\r\n      \"CanApprove\": \"sample string 19\",\r\n      \"EUID\": \"sample string 20\",\r\n      \"HasImages\": true,\r\n      \"EventSurveyCode\": \"sample string 22\",\r\n      \"EventCampaignStatus\": \"sample string 23\",\r\n      \"EventWithCampaign\": true,\r\n      \"EventQRCodeURL\": \"sample string 25\",\r\n      \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"VenueID\": 3,\r\n      \"Description\": \"sample string 4\",\r\n      \"Date\": \"2026-03-25T07:30:08.6064653+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:08.6064653+00:00\",\r\n      \"EventSpecificURL\": \"sample string 7\",\r\n      \"EventAnonymousURL\": \"sample string 8\",\r\n      \"Slots\": [\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6064653+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6064653+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        },\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6064653+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6064653+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        }\r\n      ],\r\n      \"EventType\": 9,\r\n      \"BrandID\": 10,\r\n      \"BrandName\": \"sample string 11\",\r\n      \"Numberofinvitees\": 12,\r\n      \"MaxAttendees\": 13,\r\n      \"WaitingList\": 14,\r\n      \"NumberOfRegistrations\": 15,\r\n      \"CreatedBy\": \"sample string 16\",\r\n      \"ApprovalStatus\": \"sample string 17\",\r\n      \"ApprovalStatusTemplate\": \"sample string 18\",\r\n      \"CanApprove\": \"sample string 19\",\r\n      \"EUID\": \"sample string 20\",\r\n      \"HasImages\": true,\r\n      \"EventSurveyCode\": \"sample string 22\",\r\n      \"EventCampaignStatus\": \"sample string 23\",\r\n      \"EventWithCampaign\": true,\r\n      \"EventQRCodeURL\": \"sample string 25\",\r\n      \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"9250e37d-6a00-4377-8e92-3fb42d4d070c"},{"name":"GetEventTarget","id":"2e8fd0ba-b9d6-4c0a-beae-e7548e7ec3d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Event/GetEventTarget?EventID=EventID-value&SlotID=SlotID-value","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>EventTargetApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td>Event</td><td>Event</td><td></td></tr><tr><td>EventTarget</td><td>List&lt;EventAttandance&gt;</td><td></td></tr><tr><td><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td><h4>EventAttandance Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>checkinDateTime</td><td>DateTime</td><td>The attendance date and time .</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the contact .</td></tr><tr><td>Email</td><td>String</td><td>The contact email .</td></tr><tr><td>EventID</td><td>Int32</td><td>The ID of the event .</td></tr><tr><td>FirstName</td><td>String</td><td>The contact first name</td></tr><tr><td>FullName</td><td>String</td><td>The contact fullname .</td></tr><tr><td>LastName</td><td>String</td><td>The contact last name</td></tr><tr><td>Message</td><td>String</td><td>The attendance message .</td></tr><tr><td>SlotID</td><td>Int32</td><td>The ID of the slot .</td></tr></table>","urlObject":{"protocol":"https","path":["api","Event","GetEventTarget"],"host":["{{Host}}"],"query":[{"key":"EventID","value":"EventID-value"},{"key":"SlotID","value":"SlotID-value"}],"variable":[]}},"response":[{"id":"125be2ca-af0f-4f44-a840-af1eef207a84","name":"api/Event/GetEventTarget?EventID={EventID}&SlotID={SlotID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Event/GetEventTarget?EventID=EventID-value&SlotID=SlotID-value","protocol":"https","host":["{{Host}}"],"path":["api","Event","GetEventTarget"],"query":[{"key":"EventID","value":"EventID-value"},{"key":"SlotID","value":"SlotID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>EventTargetApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td>Event</td><td>Event</td><td></td></tr><tr><td>EventTarget</td><td>List&lt;EventAttandance&gt;</td><td></td></tr><tr><td colspan=3><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>EventAttandance Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>checkinDateTime</td><td>DateTime</td><td>The attendance date and time .</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the contact .</td></tr><tr><td>Email</td><td>String</td><td>The contact email .</td></tr><tr><td>EventID</td><td>Int32</td><td>The ID of the event .</td></tr><tr><td>FirstName</td><td>String</td><td>The contact first name</td></tr><tr><td>FullName</td><td>String</td><td>The contact fullname .</td></tr><tr><td>LastName</td><td>String</td><td>The contact last name</td></tr><tr><td>Message</td><td>String</td><td>The attendance message .</td></tr><tr><td>SlotID</td><td>Int32</td><td>The ID of the slot .</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Event\": {\r\n    \"ID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"VenueID\": 3,\r\n    \"Description\": \"sample string 4\",\r\n    \"Date\": \"2026-03-25T07:30:08.6220997+00:00\",\r\n    \"EndDate\": \"2026-03-25T07:30:08.6220997+00:00\",\r\n    \"EventSpecificURL\": \"sample string 7\",\r\n    \"EventAnonymousURL\": \"sample string 8\",\r\n    \"Slots\": [\r\n      {\r\n        \"SlotID\": 1,\r\n        \"SlotName\": \"sample string 2\",\r\n        \"SlotStartDate\": \"2026-03-25T07:30:08.6220997+00:00\",\r\n        \"SlotEndDate\": \"2026-03-25T07:30:08.6220997+00:00\",\r\n        \"MaxDelegates\": 5,\r\n        \"WaitingList\": 6,\r\n        \"SlotDescription\": \"sample string 7\",\r\n        \"SlotDetails\": \"sample string 8\",\r\n        \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n      },\r\n      {\r\n        \"SlotID\": 1,\r\n        \"SlotName\": \"sample string 2\",\r\n        \"SlotStartDate\": \"2026-03-25T07:30:08.6220997+00:00\",\r\n        \"SlotEndDate\": \"2026-03-25T07:30:08.6220997+00:00\",\r\n        \"MaxDelegates\": 5,\r\n        \"WaitingList\": 6,\r\n        \"SlotDescription\": \"sample string 7\",\r\n        \"SlotDetails\": \"sample string 8\",\r\n        \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n      }\r\n    ],\r\n    \"EventType\": 9,\r\n    \"BrandID\": 10,\r\n    \"BrandName\": \"sample string 11\",\r\n    \"Numberofinvitees\": 12,\r\n    \"MaxAttendees\": 13,\r\n    \"WaitingList\": 14,\r\n    \"NumberOfRegistrations\": 15,\r\n    \"CreatedBy\": \"sample string 16\",\r\n    \"ApprovalStatus\": \"sample string 17\",\r\n    \"ApprovalStatusTemplate\": \"sample string 18\",\r\n    \"CanApprove\": \"sample string 19\",\r\n    \"EUID\": \"sample string 20\",\r\n    \"HasImages\": true,\r\n    \"EventSurveyCode\": \"sample string 22\",\r\n    \"EventCampaignStatus\": \"sample string 23\",\r\n    \"EventWithCampaign\": true,\r\n    \"EventQRCodeURL\": \"sample string 25\",\r\n    \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n  },\r\n  \"EventTarget\": [\r\n    {\r\n      \"EventID\": 1,\r\n      \"CtcID\": 2,\r\n      \"SlotID\": 3,\r\n      \"FullName\": \"sample string 4\",\r\n      \"FirstName\": \"sample string 5\",\r\n      \"LastName\": \"sample string 6\",\r\n      \"Email\": \"sample string 7\",\r\n      \"Message\": \"sample string 8\",\r\n      \"checkinDateTime\": \"2026-03-25T07:30:08.6220997+00:00\"\r\n    },\r\n    {\r\n      \"EventID\": 1,\r\n      \"CtcID\": 2,\r\n      \"SlotID\": 3,\r\n      \"FullName\": \"sample string 4\",\r\n      \"FirstName\": \"sample string 5\",\r\n      \"LastName\": \"sample string 6\",\r\n      \"Email\": \"sample string 7\",\r\n      \"Message\": \"sample string 8\",\r\n      \"checkinDateTime\": \"2026-03-25T07:30:08.6220997+00:00\"\r\n    }\r\n  ],\r\n  \"ErrorCode\": 1,\r\n  \"ErrorDescription\": \"sample string 2\"\r\n}"}],"_postman_id":"2e8fd0ba-b9d6-4c0a-beae-e7548e7ec3d0"},{"name":"GetEventTypes","id":"04308f6d-2d63-4e4e-be2b-e37d78480d50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Event/GetEventTypes?EventTypeID=EventTypeID-value","description":" <p>\n</p>","urlObject":{"protocol":"https","path":["api","Event","GetEventTypes"],"host":["{{Host}}"],"query":[{"key":"EventTypeID","value":"EventTypeID-value"}],"variable":[]}},"response":[{"id":"d9b60caa-2938-4e4c-abcc-40d80cf52481","name":"api/Event/GetEventTypes?EventTypeID={EventTypeID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Event/GetEventTypes?EventTypeID=EventTypeID-value","protocol":"https","host":["{{Host}}"],"path":["api","Event","GetEventTypes"],"query":[{"key":"EventTypeID","value":"EventTypeID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"04308f6d-2d63-4e4e-be2b-e37d78480d50"},{"name":"GetEventVenue","id":"510dcefc-f71f-4f5e-ac78-54da07201ff3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Event/GetEventVenue?VenueID=VenueID-value","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>VenuesOutPut Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td>Venue</td><td>Venue</td><td></td></tr><tr><td><h4>Venue Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td></td></tr><tr><td>buildingzone</td><td>String</td><td></td></tr><tr><td>City</td><td>String</td><td></td></tr><tr><td>Deleted</td><td>Boolean</td><td></td></tr><tr><td>EventType</td><td>String[]</td><td></td></tr><tr><td>EventTypes</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>EventypeID</td><td>String[]</td><td></td></tr><tr><td>FullAddress</td><td>String</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Image</td><td>String</td><td></td></tr><tr><td>ImageName</td><td>String</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Postcode</td><td>String</td><td></td></tr><tr><td>Street</td><td>String</td><td></td></tr><tr><td>URL</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Event","GetEventVenue"],"host":["{{Host}}"],"query":[{"key":"VenueID","value":"VenueID-value"}],"variable":[]}},"response":[{"id":"2af623bf-49b9-4890-9c4f-83743ad7620c","name":"api/Event/GetEventVenue?VenueID={VenueID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Event/GetEventVenue?VenueID=VenueID-value","protocol":"https","host":["{{Host}}"],"path":["api","Event","GetEventVenue"],"query":[{"key":"VenueID","value":"VenueID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>VenuesOutPut Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td>Venue</td><td>Venue</td><td></td></tr><tr><td colspan=3><h4>Venue Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td></td></tr><tr><td>buildingzone</td><td>String</td><td></td></tr><tr><td>City</td><td>String</td><td></td></tr><tr><td>Deleted</td><td>Boolean</td><td></td></tr><tr><td>EventType</td><td>String[]</td><td></td></tr><tr><td>EventTypes</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>EventypeID</td><td>String[]</td><td></td></tr><tr><td>FullAddress</td><td>String</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Image</td><td>String</td><td></td></tr><tr><td>ImageName</td><td>String</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Postcode</td><td>String</td><td></td></tr><tr><td>Street</td><td>String</td><td></td></tr><tr><td>URL</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Error\": \"sample string 1\",\r\n  \"Response\": true,\r\n  \"Venue\": {\r\n    \"ID\": 1,\r\n    \"Name\": \"sample string 2\",\r\n    \"Street\": \"sample string 3\",\r\n    \"Building\": \"sample string 4\",\r\n    \"buildingzone\": \"sample string 5\",\r\n    \"FullAddress\": \"sample string 6\",\r\n    \"Postcode\": \"sample string 7\",\r\n    \"URL\": \"sample string 8\",\r\n    \"City\": \"sample string 9\",\r\n    \"ImageName\": \"sample string 10\",\r\n    \"Image\": \"sample string 11\",\r\n    \"Deleted\": true,\r\n    \"EventTypes\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"EventType\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"EventypeID\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  }\r\n}"}],"_postman_id":"510dcefc-f71f-4f5e-ac78-54da07201ff3"},{"name":"ManageEventType","id":"6a8265c2-241d-4dd5-b5f0-abaa61d87188","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ID\": 1,\r\n  \"Description\": \"sample string 2\",\r\n  \"Delete\": true\r\n}"},"url":"https://{{Host}}/api/Event/ManageEventType","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>EventTypeInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Delete</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>EventsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Events</td><td>List&lt;Event&gt;</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Result</td><td>String</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr><tr><td><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Event","ManageEventType"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"de1a1c01-4398-4392-be33-189136157867","name":"api/Event/ManageEventType Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ID\": 1,\r\n  \"Description\": \"sample string 2\",\r\n  \"Delete\": true\r\n}"},"url":"https://{{Host}}/api/Event/ManageEventType","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>EventTypeInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Delete</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>EventsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Events</td><td>List&lt;Event&gt;</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Result</td><td>String</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr><tr><td colspan=3><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Success\": true,\r\n  \"ID\": 2,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"Result\": \"sample string 3\",\r\n  \"Events\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"VenueID\": 3,\r\n      \"Description\": \"sample string 4\",\r\n      \"Date\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n      \"EventSpecificURL\": \"sample string 7\",\r\n      \"EventAnonymousURL\": \"sample string 8\",\r\n      \"Slots\": [\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        },\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        }\r\n      ],\r\n      \"EventType\": 9,\r\n      \"BrandID\": 10,\r\n      \"BrandName\": \"sample string 11\",\r\n      \"Numberofinvitees\": 12,\r\n      \"MaxAttendees\": 13,\r\n      \"WaitingList\": 14,\r\n      \"NumberOfRegistrations\": 15,\r\n      \"CreatedBy\": \"sample string 16\",\r\n      \"ApprovalStatus\": \"sample string 17\",\r\n      \"ApprovalStatusTemplate\": \"sample string 18\",\r\n      \"CanApprove\": \"sample string 19\",\r\n      \"EUID\": \"sample string 20\",\r\n      \"HasImages\": true,\r\n      \"EventSurveyCode\": \"sample string 22\",\r\n      \"EventCampaignStatus\": \"sample string 23\",\r\n      \"EventWithCampaign\": true,\r\n      \"EventQRCodeURL\": \"sample string 25\",\r\n      \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"VenueID\": 3,\r\n      \"Description\": \"sample string 4\",\r\n      \"Date\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n      \"EventSpecificURL\": \"sample string 7\",\r\n      \"EventAnonymousURL\": \"sample string 8\",\r\n      \"Slots\": [\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        },\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        }\r\n      ],\r\n      \"EventType\": 9,\r\n      \"BrandID\": 10,\r\n      \"BrandName\": \"sample string 11\",\r\n      \"Numberofinvitees\": 12,\r\n      \"MaxAttendees\": 13,\r\n      \"WaitingList\": 14,\r\n      \"NumberOfRegistrations\": 15,\r\n      \"CreatedBy\": \"sample string 16\",\r\n      \"ApprovalStatus\": \"sample string 17\",\r\n      \"ApprovalStatusTemplate\": \"sample string 18\",\r\n      \"CanApprove\": \"sample string 19\",\r\n      \"EUID\": \"sample string 20\",\r\n      \"HasImages\": true,\r\n      \"EventSurveyCode\": \"sample string 22\",\r\n      \"EventCampaignStatus\": \"sample string 23\",\r\n      \"EventWithCampaign\": true,\r\n      \"EventQRCodeURL\": \"sample string 25\",\r\n      \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"6a8265c2-241d-4dd5-b5f0-abaa61d87188"},{"name":"ManageSlot","id":"37ce1f1d-1171-4f54-8376-51eaf5c4e192","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SlotID\": 1,\r\n  \"EventID\": 2,\r\n  \"Name\": \"sample string 3\",\r\n  \"StartDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n  \"EndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n  \"MaxVisitor\": 6,\r\n  \"WaitList\": 7,\r\n  \"SlotDescription\": \"sample string 8\",\r\n  \"SlotDetails\": \"sample string 9\",\r\n  \"Picture\": \"sample string 10\"\r\n}"},"url":"https://{{Host}}/api/Event/ManageSlot","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>ManageSlotInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>EndDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>EventID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MaxVisitor</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td></td><td>False</td></tr><tr><td>Picture</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotDescription</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotDetails</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>WaitList</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>EventsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Events</td><td>List&lt;Event&gt;</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Result</td><td>String</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr><tr><td><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Event","ManageSlot"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"72978e60-3893-4804-bf5b-7cff53767fbd","name":"api/Event/ManageSlot Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SlotID\": 1,\r\n  \"EventID\": 2,\r\n  \"Name\": \"sample string 3\",\r\n  \"StartDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n  \"EndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n  \"MaxVisitor\": 6,\r\n  \"WaitList\": 7,\r\n  \"SlotDescription\": \"sample string 8\",\r\n  \"SlotDetails\": \"sample string 9\",\r\n  \"Picture\": \"sample string 10\"\r\n}"},"url":"https://{{Host}}/api/Event/ManageSlot","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ManageSlotInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>EndDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>EventID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MaxVisitor</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td></td><td>False</td></tr><tr><td>Picture</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotDescription</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotDetails</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>WaitList</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>EventsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Events</td><td>List&lt;Event&gt;</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Result</td><td>String</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr><tr><td colspan=3><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Success\": true,\r\n  \"ID\": 2,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"Result\": \"sample string 3\",\r\n  \"Events\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"VenueID\": 3,\r\n      \"Description\": \"sample string 4\",\r\n      \"Date\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n      \"EventSpecificURL\": \"sample string 7\",\r\n      \"EventAnonymousURL\": \"sample string 8\",\r\n      \"Slots\": [\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        },\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        }\r\n      ],\r\n      \"EventType\": 9,\r\n      \"BrandID\": 10,\r\n      \"BrandName\": \"sample string 11\",\r\n      \"Numberofinvitees\": 12,\r\n      \"MaxAttendees\": 13,\r\n      \"WaitingList\": 14,\r\n      \"NumberOfRegistrations\": 15,\r\n      \"CreatedBy\": \"sample string 16\",\r\n      \"ApprovalStatus\": \"sample string 17\",\r\n      \"ApprovalStatusTemplate\": \"sample string 18\",\r\n      \"CanApprove\": \"sample string 19\",\r\n      \"EUID\": \"sample string 20\",\r\n      \"HasImages\": true,\r\n      \"EventSurveyCode\": \"sample string 22\",\r\n      \"EventCampaignStatus\": \"sample string 23\",\r\n      \"EventWithCampaign\": true,\r\n      \"EventQRCodeURL\": \"sample string 25\",\r\n      \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"VenueID\": 3,\r\n      \"Description\": \"sample string 4\",\r\n      \"Date\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n      \"EventSpecificURL\": \"sample string 7\",\r\n      \"EventAnonymousURL\": \"sample string 8\",\r\n      \"Slots\": [\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        },\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6696873+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        }\r\n      ],\r\n      \"EventType\": 9,\r\n      \"BrandID\": 10,\r\n      \"BrandName\": \"sample string 11\",\r\n      \"Numberofinvitees\": 12,\r\n      \"MaxAttendees\": 13,\r\n      \"WaitingList\": 14,\r\n      \"NumberOfRegistrations\": 15,\r\n      \"CreatedBy\": \"sample string 16\",\r\n      \"ApprovalStatus\": \"sample string 17\",\r\n      \"ApprovalStatusTemplate\": \"sample string 18\",\r\n      \"CanApprove\": \"sample string 19\",\r\n      \"EUID\": \"sample string 20\",\r\n      \"HasImages\": true,\r\n      \"EventSurveyCode\": \"sample string 22\",\r\n      \"EventCampaignStatus\": \"sample string 23\",\r\n      \"EventWithCampaign\": true,\r\n      \"EventQRCodeURL\": \"sample string 25\",\r\n      \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"37ce1f1d-1171-4f54-8376-51eaf5c4e192"},{"name":"ManageVenue","id":"ab1bf6ce-372b-4711-8cdc-ddea7df1b35b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ID\": 1,\r\n  \"Name\": \"sample string 2\",\r\n  \"Street\": \"sample string 3\",\r\n  \"Building\": \"sample string 4\",\r\n  \"buildingzone\": \"sample string 5\",\r\n  \"FullAddress\": \"sample string 6\",\r\n  \"Postcode\": \"sample string 7\",\r\n  \"URL\": \"sample string 8\",\r\n  \"City\": \"sample string 9\",\r\n  \"ImageName\": \"sample string 10\",\r\n  \"Image\": \"sample string 11\",\r\n  \"Deleted\": true,\r\n  \"EventTypes\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"EventType\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"EventypeID\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"},"url":"https://{{Host}}/api/Event/ManageVenue","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>Venue Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td></td><td>False</td></tr><tr><td>buildingzone</td><td>String</td><td></td><td>False</td></tr><tr><td>City</td><td>String</td><td></td><td>False</td></tr><tr><td>Deleted</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>EventType</td><td>String[]</td><td></td><td>False</td></tr><tr><td>EventTypes</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>EventypeID</td><td>String[]</td><td></td><td>False</td></tr><tr><td>FullAddress</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Image</td><td>String</td><td></td><td>False</td></tr><tr><td>ImageName</td><td>String</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td></td><td>True</td></tr><tr><td>Postcode</td><td>String</td><td></td><td>False</td></tr><tr><td>Street</td><td>String</td><td></td><td>False</td></tr><tr><td>URL</td><td>String</td><td></td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>EventsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Events</td><td>List&lt;Event&gt;</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Result</td><td>String</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr><tr><td><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Event","ManageVenue"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"1eb3d3f3-dd5a-4b3a-9093-b7925dfe906d","name":"api/Event/ManageVenue Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ID\": 1,\r\n  \"Name\": \"sample string 2\",\r\n  \"Street\": \"sample string 3\",\r\n  \"Building\": \"sample string 4\",\r\n  \"buildingzone\": \"sample string 5\",\r\n  \"FullAddress\": \"sample string 6\",\r\n  \"Postcode\": \"sample string 7\",\r\n  \"URL\": \"sample string 8\",\r\n  \"City\": \"sample string 9\",\r\n  \"ImageName\": \"sample string 10\",\r\n  \"Image\": \"sample string 11\",\r\n  \"Deleted\": true,\r\n  \"EventTypes\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"EventType\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"EventypeID\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"},"url":"https://{{Host}}/api/Event/ManageVenue","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>Venue Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td></td><td>False</td></tr><tr><td>buildingzone</td><td>String</td><td></td><td>False</td></tr><tr><td>City</td><td>String</td><td></td><td>False</td></tr><tr><td>Deleted</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>EventType</td><td>String[]</td><td></td><td>False</td></tr><tr><td>EventTypes</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>EventypeID</td><td>String[]</td><td></td><td>False</td></tr><tr><td>FullAddress</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Image</td><td>String</td><td></td><td>False</td></tr><tr><td>ImageName</td><td>String</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td></td><td>True</td></tr><tr><td>Postcode</td><td>String</td><td></td><td>False</td></tr><tr><td>Street</td><td>String</td><td></td><td>False</td></tr><tr><td>URL</td><td>String</td><td></td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>EventsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Events</td><td>List&lt;Event&gt;</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Result</td><td>String</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr><tr><td colspan=3><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Success\": true,\r\n  \"ID\": 2,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"Result\": \"sample string 3\",\r\n  \"Events\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"VenueID\": 3,\r\n      \"Description\": \"sample string 4\",\r\n      \"Date\": \"2026-03-25T07:30:08.6853067+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:08.6853067+00:00\",\r\n      \"EventSpecificURL\": \"sample string 7\",\r\n      \"EventAnonymousURL\": \"sample string 8\",\r\n      \"Slots\": [\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6853067+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6853067+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        },\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6853067+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6853067+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        }\r\n      ],\r\n      \"EventType\": 9,\r\n      \"BrandID\": 10,\r\n      \"BrandName\": \"sample string 11\",\r\n      \"Numberofinvitees\": 12,\r\n      \"MaxAttendees\": 13,\r\n      \"WaitingList\": 14,\r\n      \"NumberOfRegistrations\": 15,\r\n      \"CreatedBy\": \"sample string 16\",\r\n      \"ApprovalStatus\": \"sample string 17\",\r\n      \"ApprovalStatusTemplate\": \"sample string 18\",\r\n      \"CanApprove\": \"sample string 19\",\r\n      \"EUID\": \"sample string 20\",\r\n      \"HasImages\": true,\r\n      \"EventSurveyCode\": \"sample string 22\",\r\n      \"EventCampaignStatus\": \"sample string 23\",\r\n      \"EventWithCampaign\": true,\r\n      \"EventQRCodeURL\": \"sample string 25\",\r\n      \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"VenueID\": 3,\r\n      \"Description\": \"sample string 4\",\r\n      \"Date\": \"2026-03-25T07:30:08.6853067+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:08.6853067+00:00\",\r\n      \"EventSpecificURL\": \"sample string 7\",\r\n      \"EventAnonymousURL\": \"sample string 8\",\r\n      \"Slots\": [\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6853067+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6853067+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        },\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.6853067+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.6853067+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        }\r\n      ],\r\n      \"EventType\": 9,\r\n      \"BrandID\": 10,\r\n      \"BrandName\": \"sample string 11\",\r\n      \"Numberofinvitees\": 12,\r\n      \"MaxAttendees\": 13,\r\n      \"WaitingList\": 14,\r\n      \"NumberOfRegistrations\": 15,\r\n      \"CreatedBy\": \"sample string 16\",\r\n      \"ApprovalStatus\": \"sample string 17\",\r\n      \"ApprovalStatusTemplate\": \"sample string 18\",\r\n      \"CanApprove\": \"sample string 19\",\r\n      \"EUID\": \"sample string 20\",\r\n      \"HasImages\": true,\r\n      \"EventSurveyCode\": \"sample string 22\",\r\n      \"EventCampaignStatus\": \"sample string 23\",\r\n      \"EventWithCampaign\": true,\r\n      \"EventQRCodeURL\": \"sample string 25\",\r\n      \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"ab1bf6ce-372b-4711-8cdc-ddea7df1b35b"},{"name":"PostEvent","id":"1cefe290-f34a-4501-ac77-16b6f59184d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Event/PostEvent","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>EventApi Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdditionalInformation</td><td>String</td><td></td><td>False</td></tr><tr><td>AdressDetails</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ApprovalStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>Approved</td><td>Int32</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>BrandName</td><td>String</td><td></td><td>False</td></tr><tr><td>CampaignID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CanApprove</td><td>String</td><td></td><td>False</td></tr><tr><td>CreatedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>Deleted</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td><td>False</td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>EventContactAddress</td><td>String</td><td></td><td>False</td></tr><tr><td>EventContactEmailAddress</td><td>String</td><td></td><td>False</td></tr><tr><td>EventContactName</td><td>String</td><td></td><td>False</td></tr><tr><td>EventContactPhoneNumber</td><td>String</td><td></td><td>False</td></tr><tr><td>EventEndDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>EventImage</td><td>String</td><td></td><td>False</td></tr><tr><td>EventOwner</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td><td>False</td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td><td>False</td></tr><tr><td>EventStartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td><td>False</td></tr><tr><td>EventTeaser</td><td>String</td><td></td><td>False</td></tr><tr><td>EventType</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EventUrl</td><td>String</td><td></td><td>False</td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>External_ID</td><td>String</td><td></td><td>False</td></tr><tr><td>Facebook</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Instagram</td><td>String</td><td></td><td>False</td></tr><tr><td>IsVirtualEvent</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>LastRegistrationDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td></td><td>False</td></tr><tr><td>Nameforlink</td><td>String</td><td></td><td>False</td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td><td>False</td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td><td>False</td></tr><tr><td>OnlyOneRegistration</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>PrivacyPolicyLink</td><td>String</td><td></td><td>False</td></tr><tr><td>PrivacyPolicyText</td><td>String</td><td></td><td>False</td></tr><tr><td>PrivacyPolicyTextArea</td><td>String</td><td></td><td>False</td></tr><tr><td>ProgrammeID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>PushNotificationImage</td><td>String</td><td></td><td>False</td></tr><tr><td>QRCode</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ReferFriend</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>Region</td><td>Int32</td><td></td><td>False</td></tr><tr><td>RegistrationReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td><td>False</td></tr><tr><td>Twitter</td><td>String</td><td></td><td>False</td></tr><tr><td>UserFinalApproval</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>VenueID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>VenueName</td><td>String</td><td></td><td>False</td></tr><tr><td>WaitingList</td><td>Int32</td><td></td><td>False</td></tr><tr><td>WhatToBring</td><td>String</td><td></td><td>False</td></tr><tr><td>WhereToMeet</td><td>String</td><td></td><td>False</td></tr><tr><td>ZoomRecording</td><td>String</td><td></td><td>False</td></tr><tr><td>ZoomWebinarID</td><td>String</td><td></td><td>False</td></tr><tr><td>ZoomWebinarLink</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotDescription</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotDetails</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>SlotID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SlotName</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>WaitingList</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>EventsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Events</td><td>List&lt;Event&gt;</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Result</td><td>String</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr><tr><td><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Event","PostEvent"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"55274934-8344-4db1-8396-211a28d034e8","name":"api/Event/PostEvent Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Event/PostEvent","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>EventApi Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdditionalInformation</td><td>String</td><td></td><td>False</td></tr><tr><td>AdressDetails</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ApprovalStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>Approved</td><td>Int32</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>BrandName</td><td>String</td><td></td><td>False</td></tr><tr><td>CampaignID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CanApprove</td><td>String</td><td></td><td>False</td></tr><tr><td>CreatedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>Deleted</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td><td>False</td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>EventContactAddress</td><td>String</td><td></td><td>False</td></tr><tr><td>EventContactEmailAddress</td><td>String</td><td></td><td>False</td></tr><tr><td>EventContactName</td><td>String</td><td></td><td>False</td></tr><tr><td>EventContactPhoneNumber</td><td>String</td><td></td><td>False</td></tr><tr><td>EventEndDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>EventImage</td><td>String</td><td></td><td>False</td></tr><tr><td>EventOwner</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td><td>False</td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td><td>False</td></tr><tr><td>EventStartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td><td>False</td></tr><tr><td>EventTeaser</td><td>String</td><td></td><td>False</td></tr><tr><td>EventType</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EventUrl</td><td>String</td><td></td><td>False</td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>External_ID</td><td>String</td><td></td><td>False</td></tr><tr><td>Facebook</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Instagram</td><td>String</td><td></td><td>False</td></tr><tr><td>IsVirtualEvent</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>LastRegistrationDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td></td><td>False</td></tr><tr><td>Nameforlink</td><td>String</td><td></td><td>False</td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td><td>False</td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td><td>False</td></tr><tr><td>OnlyOneRegistration</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>PrivacyPolicyLink</td><td>String</td><td></td><td>False</td></tr><tr><td>PrivacyPolicyText</td><td>String</td><td></td><td>False</td></tr><tr><td>PrivacyPolicyTextArea</td><td>String</td><td></td><td>False</td></tr><tr><td>ProgrammeID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>PushNotificationImage</td><td>String</td><td></td><td>False</td></tr><tr><td>QRCode</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ReferFriend</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>Region</td><td>Int32</td><td></td><td>False</td></tr><tr><td>RegistrationReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td><td>False</td></tr><tr><td>Twitter</td><td>String</td><td></td><td>False</td></tr><tr><td>UserFinalApproval</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>VenueID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>VenueName</td><td>String</td><td></td><td>False</td></tr><tr><td>WaitingList</td><td>Int32</td><td></td><td>False</td></tr><tr><td>WhatToBring</td><td>String</td><td></td><td>False</td></tr><tr><td>WhereToMeet</td><td>String</td><td></td><td>False</td></tr><tr><td>ZoomRecording</td><td>String</td><td></td><td>False</td></tr><tr><td>ZoomWebinarID</td><td>String</td><td></td><td>False</td></tr><tr><td>ZoomWebinarLink</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotDescription</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotDetails</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>SlotID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SlotName</td><td>String</td><td></td><td>False</td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>WaitingList</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>EventsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Events</td><td>List&lt;Event&gt;</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Result</td><td>String</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr><tr><td colspan=3><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Success\": true,\r\n  \"ID\": 2,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"Result\": \"sample string 3\",\r\n  \"Events\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"VenueID\": 3,\r\n      \"Description\": \"sample string 4\",\r\n      \"Date\": \"2026-03-25T07:30:08.7478042+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:08.7478042+00:00\",\r\n      \"EventSpecificURL\": \"sample string 7\",\r\n      \"EventAnonymousURL\": \"sample string 8\",\r\n      \"Slots\": [\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.7478042+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.7478042+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        },\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.7478042+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.7478042+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        }\r\n      ],\r\n      \"EventType\": 9,\r\n      \"BrandID\": 10,\r\n      \"BrandName\": \"sample string 11\",\r\n      \"Numberofinvitees\": 12,\r\n      \"MaxAttendees\": 13,\r\n      \"WaitingList\": 14,\r\n      \"NumberOfRegistrations\": 15,\r\n      \"CreatedBy\": \"sample string 16\",\r\n      \"ApprovalStatus\": \"sample string 17\",\r\n      \"ApprovalStatusTemplate\": \"sample string 18\",\r\n      \"CanApprove\": \"sample string 19\",\r\n      \"EUID\": \"sample string 20\",\r\n      \"HasImages\": true,\r\n      \"EventSurveyCode\": \"sample string 22\",\r\n      \"EventCampaignStatus\": \"sample string 23\",\r\n      \"EventWithCampaign\": true,\r\n      \"EventQRCodeURL\": \"sample string 25\",\r\n      \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"VenueID\": 3,\r\n      \"Description\": \"sample string 4\",\r\n      \"Date\": \"2026-03-25T07:30:08.7478042+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:08.7478042+00:00\",\r\n      \"EventSpecificURL\": \"sample string 7\",\r\n      \"EventAnonymousURL\": \"sample string 8\",\r\n      \"Slots\": [\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.7478042+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.7478042+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        },\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.7478042+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.7478042+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        }\r\n      ],\r\n      \"EventType\": 9,\r\n      \"BrandID\": 10,\r\n      \"BrandName\": \"sample string 11\",\r\n      \"Numberofinvitees\": 12,\r\n      \"MaxAttendees\": 13,\r\n      \"WaitingList\": 14,\r\n      \"NumberOfRegistrations\": 15,\r\n      \"CreatedBy\": \"sample string 16\",\r\n      \"ApprovalStatus\": \"sample string 17\",\r\n      \"ApprovalStatusTemplate\": \"sample string 18\",\r\n      \"CanApprove\": \"sample string 19\",\r\n      \"EUID\": \"sample string 20\",\r\n      \"HasImages\": true,\r\n      \"EventSurveyCode\": \"sample string 22\",\r\n      \"EventCampaignStatus\": \"sample string 23\",\r\n      \"EventWithCampaign\": true,\r\n      \"EventQRCodeURL\": \"sample string 25\",\r\n      \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"1cefe290-f34a-4501-ac77-16b6f59184d4"},{"name":"RegisterToEvent","id":"5fdcf333-0976-4f92-81ca-754a9415f79a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"EventID\": 2,\r\n  \"SlotID\": 3,\r\n  \"Registered\": 1,\r\n  \"Attended\": true\r\n}"},"url":"https://{{Host}}/api/Event/RegisterToEvent","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>RegisterEventInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Attended</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EventID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Registered</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SlotID</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>EventsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Events</td><td>List&lt;Event&gt;</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Result</td><td>String</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr><tr><td><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Event","RegisterToEvent"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"d8955aa1-11b4-44f6-a5e9-e3d651bf0176","name":"api/Event/RegisterToEvent Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"EventID\": 2,\r\n  \"SlotID\": 3,\r\n  \"Registered\": 1,\r\n  \"Attended\": true\r\n}"},"url":"https://{{Host}}/api/Event/RegisterToEvent","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>RegisterEventInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Attended</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EventID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Registered</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SlotID</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>EventsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Events</td><td>List&lt;Event&gt;</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>Result</td><td>String</td><td></td></tr><tr><td>Success</td><td>Boolean</td><td></td></tr><tr><td colspan=3><h4>Event Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ApprovalStatus</td><td>String</td><td></td></tr><tr><td>ApprovalStatusTemplate</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CanApprove</td><td>String</td><td></td></tr><tr><td>CreatedBy</td><td>String</td><td></td></tr><tr><td>Date</td><td>DateTime</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>EndDate</td><td>DateTime</td><td></td></tr><tr><td>EUID</td><td>String</td><td></td></tr><tr><td>EventAnonymousURL</td><td>String</td><td></td></tr><tr><td>EventCampaignStatus</td><td>String</td><td></td></tr><tr><td>EventCampaignStatusTemplate</td><td>String</td><td></td></tr><tr><td>EventQRCodeURL</td><td>String</td><td></td></tr><tr><td>EventSpecificURL</td><td>String</td><td></td></tr><tr><td>EventSurveyCode</td><td>String</td><td></td></tr><tr><td>EventType</td><td>Int32</td><td></td></tr><tr><td>EventWithCampaign</td><td>Boolean</td><td></td></tr><tr><td>HasImages</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>MaxAttendees</td><td>Int32</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>Numberofinvitees</td><td>Int32</td><td></td></tr><tr><td>NumberOfRegistrations</td><td>Int32</td><td></td></tr><tr><td>Slots</td><td>List&lt;_EventSlot&gt;</td><td></td></tr><tr><td>VenueID</td><td>Int32</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>_EventSlot Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxDelegates</td><td>Int32</td><td></td></tr><tr><td>SlotApprovalStatusDescription</td><td>String</td><td></td></tr><tr><td>SlotDescription</td><td>String</td><td></td></tr><tr><td>SlotDetails</td><td>String</td><td></td></tr><tr><td>SlotEndDate</td><td>DateTime</td><td></td></tr><tr><td>SlotID</td><td>Int32</td><td></td></tr><tr><td>SlotName</td><td>String</td><td></td></tr><tr><td>SlotStartDate</td><td>DateTime</td><td></td></tr><tr><td>WaitingList</td><td>Int32</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Success\": true,\r\n  \"ID\": 2,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"Result\": \"sample string 3\",\r\n  \"Events\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"VenueID\": 3,\r\n      \"Description\": \"sample string 4\",\r\n      \"Date\": \"2026-03-25T07:30:08.7634567+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:08.7634567+00:00\",\r\n      \"EventSpecificURL\": \"sample string 7\",\r\n      \"EventAnonymousURL\": \"sample string 8\",\r\n      \"Slots\": [\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.7634567+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.7634567+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        },\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.7634567+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.7634567+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        }\r\n      ],\r\n      \"EventType\": 9,\r\n      \"BrandID\": 10,\r\n      \"BrandName\": \"sample string 11\",\r\n      \"Numberofinvitees\": 12,\r\n      \"MaxAttendees\": 13,\r\n      \"WaitingList\": 14,\r\n      \"NumberOfRegistrations\": 15,\r\n      \"CreatedBy\": \"sample string 16\",\r\n      \"ApprovalStatus\": \"sample string 17\",\r\n      \"ApprovalStatusTemplate\": \"sample string 18\",\r\n      \"CanApprove\": \"sample string 19\",\r\n      \"EUID\": \"sample string 20\",\r\n      \"HasImages\": true,\r\n      \"EventSurveyCode\": \"sample string 22\",\r\n      \"EventCampaignStatus\": \"sample string 23\",\r\n      \"EventWithCampaign\": true,\r\n      \"EventQRCodeURL\": \"sample string 25\",\r\n      \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"VenueID\": 3,\r\n      \"Description\": \"sample string 4\",\r\n      \"Date\": \"2026-03-25T07:30:08.7634567+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:08.7634567+00:00\",\r\n      \"EventSpecificURL\": \"sample string 7\",\r\n      \"EventAnonymousURL\": \"sample string 8\",\r\n      \"Slots\": [\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.7634567+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.7634567+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        },\r\n        {\r\n          \"SlotID\": 1,\r\n          \"SlotName\": \"sample string 2\",\r\n          \"SlotStartDate\": \"2026-03-25T07:30:08.7634567+00:00\",\r\n          \"SlotEndDate\": \"2026-03-25T07:30:08.7634567+00:00\",\r\n          \"MaxDelegates\": 5,\r\n          \"WaitingList\": 6,\r\n          \"SlotDescription\": \"sample string 7\",\r\n          \"SlotDetails\": \"sample string 8\",\r\n          \"SlotApprovalStatusDescription\": \"sample string 9\"\r\n        }\r\n      ],\r\n      \"EventType\": 9,\r\n      \"BrandID\": 10,\r\n      \"BrandName\": \"sample string 11\",\r\n      \"Numberofinvitees\": 12,\r\n      \"MaxAttendees\": 13,\r\n      \"WaitingList\": 14,\r\n      \"NumberOfRegistrations\": 15,\r\n      \"CreatedBy\": \"sample string 16\",\r\n      \"ApprovalStatus\": \"sample string 17\",\r\n      \"ApprovalStatusTemplate\": \"sample string 18\",\r\n      \"CanApprove\": \"sample string 19\",\r\n      \"EUID\": \"sample string 20\",\r\n      \"HasImages\": true,\r\n      \"EventSurveyCode\": \"sample string 22\",\r\n      \"EventCampaignStatus\": \"sample string 23\",\r\n      \"EventWithCampaign\": true,\r\n      \"EventQRCodeURL\": \"sample string 25\",\r\n      \"EventCampaignStatusTemplate\": \"sample string 26\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"5fdcf333-0976-4f92-81ca-754a9415f79a"},{"name":"ScanQrCode","id":"1c40f7b5-da02-4f6d-b47d-e0724204ee8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Event/ScanQrCode?input=input-value","description":" <p>\n            Scan QrCode\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>EventattendanceOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>attendanceOutput</td><td>EventAttandance</td><td>return the attendance output.</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>return list of errors if exist.</td></tr><tr><td>Success</td><td>Boolean</td><td>boolean to return the call success status .</td></tr><tr><td><h4>EventAttandance Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>checkinDateTime</td><td>DateTime</td><td>The attendance date and time .</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the contact .</td></tr><tr><td>Email</td><td>String</td><td>The contact email .</td></tr><tr><td>EventID</td><td>Int32</td><td>The ID of the event .</td></tr><tr><td>FirstName</td><td>String</td><td>The contact first name</td></tr><tr><td>FullName</td><td>String</td><td>The contact fullname .</td></tr><tr><td>LastName</td><td>String</td><td>The contact last name</td></tr><tr><td>Message</td><td>String</td><td>The attendance message .</td></tr><tr><td>SlotID</td><td>Int32</td><td>The ID of the slot .</td></tr></table>","urlObject":{"protocol":"https","path":["api","Event","ScanQrCode"],"host":["{{Host}}"],"query":[{"key":"input","value":"input-value"}],"variable":[]}},"response":[{"id":"28e8ecf1-ebcd-440f-bd51-5bc5af55717c","name":"api/Event/ScanQrCode?input={input} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Event/ScanQrCode?input=input-value","protocol":"https","host":["{{Host}}"],"path":["api","Event","ScanQrCode"],"query":[{"key":"input","value":"input-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Scan QrCode\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>EventattendanceOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>attendanceOutput</td><td>EventAttandance</td><td>return the attendance output.</td></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>return list of errors if exist.</td></tr><tr><td>Success</td><td>Boolean</td><td>boolean to return the call success status .</td></tr><tr><td colspan=3><h4>EventAttandance Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>checkinDateTime</td><td>DateTime</td><td>The attendance date and time .</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the contact .</td></tr><tr><td>Email</td><td>String</td><td>The contact email .</td></tr><tr><td>EventID</td><td>Int32</td><td>The ID of the event .</td></tr><tr><td>FirstName</td><td>String</td><td>The contact first name</td></tr><tr><td>FullName</td><td>String</td><td>The contact fullname .</td></tr><tr><td>LastName</td><td>String</td><td>The contact last name</td></tr><tr><td>Message</td><td>String</td><td>The attendance message .</td></tr><tr><td>SlotID</td><td>Int32</td><td>The ID of the slot .</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Success\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"attendanceOutput\": {\r\n    \"EventID\": 1,\r\n    \"CtcID\": 2,\r\n    \"SlotID\": 3,\r\n    \"FullName\": \"sample string 4\",\r\n    \"FirstName\": \"sample string 5\",\r\n    \"LastName\": \"sample string 6\",\r\n    \"Email\": \"sample string 7\",\r\n    \"Message\": \"sample string 8\",\r\n    \"checkinDateTime\": \"2026-03-25T07:30:08.6539752+00:00\"\r\n  }\r\n}"}],"_postman_id":"1c40f7b5-da02-4f6d-b47d-e0724204ee8e"}],"id":"e3c803c5-5fc8-4eb3-a625-e9a9229961ae","description":"<p>Api Methods for Event</p>\n","_postman_id":"e3c803c5-5fc8-4eb3-a625-e9a9229961ae"},{"name":"GiftCard","item":[{"name":"Get","id":"d88d6741-5a7d-4e6c-aa26-d1697de58f4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/GiftCard/Get?GiftCard=GiftCard-value","description":" <p>\n            Get the balance of a Gift card \n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Balance</td><td>Double (nullable)</td><td>Balnace of the card</td></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","GiftCard","Get"],"host":["{{Host}}"],"query":[{"key":"GiftCard","value":"GiftCard-value"}],"variable":[]}},"response":[{"id":"ba1a4b35-c2e0-4f89-97c2-2ca7bba5be28","name":"api/GiftCard/Get?GiftCard={GiftCard} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/GiftCard/Get?GiftCard=GiftCard-value","protocol":"https","host":["{{Host}}"],"path":["api","GiftCard","Get"],"query":[{"key":"GiftCard","value":"GiftCard-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get the balance of a Gift card \r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Balance</td><td>Double (nullable)</td><td>Balnace of the card</td></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\",\r\n  \"Balance\": 1.1\r\n}"}],"_postman_id":"d88d6741-5a7d-4e6c-aa26-d1697de58f4d"},{"name":"Post","id":"73fe1383-47db-4f20-8e9f-20a2cb3ee2e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"GiftCard\": {\r\n      \"Quantity\": 1,\r\n      \"UnitPrice\": 2.1,\r\n      \"TotalPrice\": 3.1,\r\n      \"Message\": \"sample string 4\",\r\n      \"Source\": \"sample string 5\",\r\n      \"Description\": \"sample string 6\",\r\n      \"GiftCode\": \"sample string 7\",\r\n      \"ValidFromDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n      \"CreationDate\": \"2026-03-25T07:30:08.7790684+00:00\"\r\n    },\r\n    \"Purchaser\": {\r\n      \"Contact\": {\r\n        \"CtcID\": 1,\r\n        \"LastName\": \"sample string 2\",\r\n        \"CpyID\": 3,\r\n        \"PositionFreeText\": \"sample string 7\",\r\n        \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"SourceID\": \"sample string 10\",\r\n        \"OriginID\": \"sample string 11\",\r\n        \"DoNotExport\": true,\r\n        \"ParentEmailAddress\": \"sample string 14\",\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"Company\": {\r\n          \"CpyID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Building\": \"sample string 4\",\r\n          \"Street\": \"sample string 5\",\r\n          \"Zone\": \"sample string 6\",\r\n          \"City\": \"sample string 7\",\r\n          \"PostCode\": \"sample string 8\",\r\n          \"StateCode\": \"sample string 9\",\r\n          \"StateName\": \"sample string 10\",\r\n          \"CountryCode\": \"sample string 13\",\r\n          \"CountryName\": \"sample string 14\",\r\n          \"Phone\": \"sample string 15\",\r\n          \"Fax\": \"sample string 16\",\r\n          \"Web\": \"sample string 17\",\r\n          \"Email\": \"sample string 18\",\r\n          \"NationalID\": \"sample string 20\",\r\n          \"SourceID\": \"sample string 21\",\r\n          \"OriginID\": \"sample string 22\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"LastModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"ModifiedBy\": 1,\r\n          \"CpyNotes\": {\r\n            \"CtcCpyID\": 1,\r\n            \"NoteUserID\": 2,\r\n            \"SourceNote\": 3,\r\n            \"Comment\": \"sample string 4\",\r\n            \"LastModifiedBy\": \"sample string 5\",\r\n            \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n            \"AttachmentFilesList\": [\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              },\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              }\r\n            ],\r\n            \"AttachmentFilesListString\": [\r\n              \"sample string 1\",\r\n              \"sample string 2\"\r\n            ]\r\n          },\r\n          \"SupInfo\": [\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            },\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            }\r\n          ]\r\n        },\r\n        \"CtcNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"Gender\": null,\r\n        \"PredefinedGender\": 0,\r\n        \"ProcessMydata\": true,\r\n        \"DeleteMyData\": true,\r\n        \"HomeSiteID\": \"sample string 20\",\r\n        \"BrandID\": 1,\r\n        \"MemberNumbersList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CurrentMemberNumber\": \"sample string 21\",\r\n        \"CardTokensList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CardToken\": \"sample string 22\",\r\n        \"CurrentReferrerCode\": \"sample string 23\",\r\n        \"ReferrerCodeList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"ReferredByCode\": \"sample string 24\",\r\n        \"ReferrerCode\": \"sample string 25\",\r\n        \"UpdateIfPopulated\": true,\r\n        \"IsLeadCtc\": true,\r\n        \"IsFinanceCtc\": true,\r\n        \"CorporateName\": \"sample string 29\",\r\n        \"CorporateJobTitle\": 30,\r\n        \"Picture\": \"QEA=\",\r\n        \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"ContactSpendInLast12Months\": \"sample string 31\",\r\n        \"_Title\": \"sample string 33\",\r\n        \"FirstName\": \"sample string 34\",\r\n        \"Phone\": \"sample string 35\",\r\n        \"MobilPhone\": \"sample string 36\",\r\n        \"Email\": \"sample string 37\",\r\n        \"BirthDate\": \"2026-03-25T07:30:08.7790684+00:00\"\r\n      },\r\n      \"ContactOptin\": {\r\n        \"CustomerID\": 1,\r\n        \"EmailOptin\": true,\r\n        \"SmsOptin\": true,\r\n        \"MailOptin\": true,\r\n        \"PhoneOptin\": true,\r\n        \"ChangeDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"SourceID\": \"sample string 2\",\r\n        \"BrandID\": 1,\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"PushNotificationOptin\": true,\r\n        \"WebPushNotificationOptin\": true\r\n      }\r\n    },\r\n    \"Recipient\": {\r\n      \"Contact\": {\r\n        \"CtcID\": 1,\r\n        \"LastName\": \"sample string 2\",\r\n        \"CpyID\": 3,\r\n        \"PositionFreeText\": \"sample string 7\",\r\n        \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"SourceID\": \"sample string 10\",\r\n        \"OriginID\": \"sample string 11\",\r\n        \"DoNotExport\": true,\r\n        \"ParentEmailAddress\": \"sample string 14\",\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"Company\": {\r\n          \"CpyID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Building\": \"sample string 4\",\r\n          \"Street\": \"sample string 5\",\r\n          \"Zone\": \"sample string 6\",\r\n          \"City\": \"sample string 7\",\r\n          \"PostCode\": \"sample string 8\",\r\n          \"StateCode\": \"sample string 9\",\r\n          \"StateName\": \"sample string 10\",\r\n          \"CountryCode\": \"sample string 13\",\r\n          \"CountryName\": \"sample string 14\",\r\n          \"Phone\": \"sample string 15\",\r\n          \"Fax\": \"sample string 16\",\r\n          \"Web\": \"sample string 17\",\r\n          \"Email\": \"sample string 18\",\r\n          \"NationalID\": \"sample string 20\",\r\n          \"SourceID\": \"sample string 21\",\r\n          \"OriginID\": \"sample string 22\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"LastModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"ModifiedBy\": 1,\r\n          \"CpyNotes\": {\r\n            \"CtcCpyID\": 1,\r\n            \"NoteUserID\": 2,\r\n            \"SourceNote\": 3,\r\n            \"Comment\": \"sample string 4\",\r\n            \"LastModifiedBy\": \"sample string 5\",\r\n            \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n            \"AttachmentFilesList\": [\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              },\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              }\r\n            ],\r\n            \"AttachmentFilesListString\": [\r\n              \"sample string 1\",\r\n              \"sample string 2\"\r\n            ]\r\n          },\r\n          \"SupInfo\": [\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            },\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            }\r\n          ]\r\n        },\r\n        \"CtcNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"Gender\": null,\r\n        \"PredefinedGender\": 0,\r\n        \"ProcessMydata\": true,\r\n        \"DeleteMyData\": true,\r\n        \"HomeSiteID\": \"sample string 20\",\r\n        \"BrandID\": 1,\r\n        \"MemberNumbersList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CurrentMemberNumber\": \"sample string 21\",\r\n        \"CardTokensList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CardToken\": \"sample string 22\",\r\n        \"CurrentReferrerCode\": \"sample string 23\",\r\n        \"ReferrerCodeList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"ReferredByCode\": \"sample string 24\",\r\n        \"ReferrerCode\": \"sample string 25\",\r\n        \"UpdateIfPopulated\": true,\r\n        \"IsLeadCtc\": true,\r\n        \"IsFinanceCtc\": true,\r\n        \"CorporateName\": \"sample string 29\",\r\n        \"CorporateJobTitle\": 30,\r\n        \"Picture\": \"QEA=\",\r\n        \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"ContactSpendInLast12Months\": \"sample string 31\",\r\n        \"_Title\": \"sample string 33\",\r\n        \"FirstName\": \"sample string 34\",\r\n        \"Phone\": \"sample string 35\",\r\n        \"MobilPhone\": \"sample string 36\",\r\n        \"Email\": \"sample string 37\",\r\n        \"BirthDate\": \"2026-03-25T07:30:08.7790684+00:00\"\r\n      },\r\n      \"ContactOptin\": {\r\n        \"CustomerID\": 1,\r\n        \"EmailOptin\": true,\r\n        \"SmsOptin\": true,\r\n        \"MailOptin\": true,\r\n        \"PhoneOptin\": true,\r\n        \"ChangeDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"SourceID\": \"sample string 2\",\r\n        \"BrandID\": 1,\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"PushNotificationOptin\": true,\r\n        \"WebPushNotificationOptin\": true\r\n      }\r\n    },\r\n    \"Actions\": {\r\n      \"CreateInAtreemo\": true,\r\n      \"CreateInEagleEye\": true,\r\n      \"FeedInjection\": true\r\n    },\r\n    \"PurchaserIsRecipient\": true,\r\n    \"BrandID\": 1\r\n  },\r\n  {\r\n    \"GiftCard\": {\r\n      \"Quantity\": 1,\r\n      \"UnitPrice\": 2.1,\r\n      \"TotalPrice\": 3.1,\r\n      \"Message\": \"sample string 4\",\r\n      \"Source\": \"sample string 5\",\r\n      \"Description\": \"sample string 6\",\r\n      \"GiftCode\": \"sample string 7\",\r\n      \"ValidFromDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n      \"CreationDate\": \"2026-03-25T07:30:08.7790684+00:00\"\r\n    },\r\n    \"Purchaser\": {\r\n      \"Contact\": {\r\n        \"CtcID\": 1,\r\n        \"LastName\": \"sample string 2\",\r\n        \"CpyID\": 3,\r\n        \"PositionFreeText\": \"sample string 7\",\r\n        \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"SourceID\": \"sample string 10\",\r\n        \"OriginID\": \"sample string 11\",\r\n        \"DoNotExport\": true,\r\n        \"ParentEmailAddress\": \"sample string 14\",\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"Company\": {\r\n          \"CpyID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Building\": \"sample string 4\",\r\n          \"Street\": \"sample string 5\",\r\n          \"Zone\": \"sample string 6\",\r\n          \"City\": \"sample string 7\",\r\n          \"PostCode\": \"sample string 8\",\r\n          \"StateCode\": \"sample string 9\",\r\n          \"StateName\": \"sample string 10\",\r\n          \"CountryCode\": \"sample string 13\",\r\n          \"CountryName\": \"sample string 14\",\r\n          \"Phone\": \"sample string 15\",\r\n          \"Fax\": \"sample string 16\",\r\n          \"Web\": \"sample string 17\",\r\n          \"Email\": \"sample string 18\",\r\n          \"NationalID\": \"sample string 20\",\r\n          \"SourceID\": \"sample string 21\",\r\n          \"OriginID\": \"sample string 22\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"LastModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"ModifiedBy\": 1,\r\n          \"CpyNotes\": {\r\n            \"CtcCpyID\": 1,\r\n            \"NoteUserID\": 2,\r\n            \"SourceNote\": 3,\r\n            \"Comment\": \"sample string 4\",\r\n            \"LastModifiedBy\": \"sample string 5\",\r\n            \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n            \"AttachmentFilesList\": [\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              },\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              }\r\n            ],\r\n            \"AttachmentFilesListString\": [\r\n              \"sample string 1\",\r\n              \"sample string 2\"\r\n            ]\r\n          },\r\n          \"SupInfo\": [\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            },\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            }\r\n          ]\r\n        },\r\n        \"CtcNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"Gender\": null,\r\n        \"PredefinedGender\": 0,\r\n        \"ProcessMydata\": true,\r\n        \"DeleteMyData\": true,\r\n        \"HomeSiteID\": \"sample string 20\",\r\n        \"BrandID\": 1,\r\n        \"MemberNumbersList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CurrentMemberNumber\": \"sample string 21\",\r\n        \"CardTokensList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CardToken\": \"sample string 22\",\r\n        \"CurrentReferrerCode\": \"sample string 23\",\r\n        \"ReferrerCodeList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"ReferredByCode\": \"sample string 24\",\r\n        \"ReferrerCode\": \"sample string 25\",\r\n        \"UpdateIfPopulated\": true,\r\n        \"IsLeadCtc\": true,\r\n        \"IsFinanceCtc\": true,\r\n        \"CorporateName\": \"sample string 29\",\r\n        \"CorporateJobTitle\": 30,\r\n        \"Picture\": \"QEA=\",\r\n        \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"ContactSpendInLast12Months\": \"sample string 31\",\r\n        \"_Title\": \"sample string 33\",\r\n        \"FirstName\": \"sample string 34\",\r\n        \"Phone\": \"sample string 35\",\r\n        \"MobilPhone\": \"sample string 36\",\r\n        \"Email\": \"sample string 37\",\r\n        \"BirthDate\": \"2026-03-25T07:30:08.7790684+00:00\"\r\n      },\r\n      \"ContactOptin\": {\r\n        \"CustomerID\": 1,\r\n        \"EmailOptin\": true,\r\n        \"SmsOptin\": true,\r\n        \"MailOptin\": true,\r\n        \"PhoneOptin\": true,\r\n        \"ChangeDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"SourceID\": \"sample string 2\",\r\n        \"BrandID\": 1,\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"PushNotificationOptin\": true,\r\n        \"WebPushNotificationOptin\": true\r\n      }\r\n    },\r\n    \"Recipient\": {\r\n      \"Contact\": {\r\n        \"CtcID\": 1,\r\n        \"LastName\": \"sample string 2\",\r\n        \"CpyID\": 3,\r\n        \"PositionFreeText\": \"sample string 7\",\r\n        \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"SourceID\": \"sample string 10\",\r\n        \"OriginID\": \"sample string 11\",\r\n        \"DoNotExport\": true,\r\n        \"ParentEmailAddress\": \"sample string 14\",\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"Company\": {\r\n          \"CpyID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Building\": \"sample string 4\",\r\n          \"Street\": \"sample string 5\",\r\n          \"Zone\": \"sample string 6\",\r\n          \"City\": \"sample string 7\",\r\n          \"PostCode\": \"sample string 8\",\r\n          \"StateCode\": \"sample string 9\",\r\n          \"StateName\": \"sample string 10\",\r\n          \"CountryCode\": \"sample string 13\",\r\n          \"CountryName\": \"sample string 14\",\r\n          \"Phone\": \"sample string 15\",\r\n          \"Fax\": \"sample string 16\",\r\n          \"Web\": \"sample string 17\",\r\n          \"Email\": \"sample string 18\",\r\n          \"NationalID\": \"sample string 20\",\r\n          \"SourceID\": \"sample string 21\",\r\n          \"OriginID\": \"sample string 22\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"LastModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"ModifiedBy\": 1,\r\n          \"CpyNotes\": {\r\n            \"CtcCpyID\": 1,\r\n            \"NoteUserID\": 2,\r\n            \"SourceNote\": 3,\r\n            \"Comment\": \"sample string 4\",\r\n            \"LastModifiedBy\": \"sample string 5\",\r\n            \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n            \"AttachmentFilesList\": [\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              },\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              }\r\n            ],\r\n            \"AttachmentFilesListString\": [\r\n              \"sample string 1\",\r\n              \"sample string 2\"\r\n            ]\r\n          },\r\n          \"SupInfo\": [\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            },\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            }\r\n          ]\r\n        },\r\n        \"CtcNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"Gender\": null,\r\n        \"PredefinedGender\": 0,\r\n        \"ProcessMydata\": true,\r\n        \"DeleteMyData\": true,\r\n        \"HomeSiteID\": \"sample string 20\",\r\n        \"BrandID\": 1,\r\n        \"MemberNumbersList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CurrentMemberNumber\": \"sample string 21\",\r\n        \"CardTokensList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CardToken\": \"sample string 22\",\r\n        \"CurrentReferrerCode\": \"sample string 23\",\r\n        \"ReferrerCodeList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"ReferredByCode\": \"sample string 24\",\r\n        \"ReferrerCode\": \"sample string 25\",\r\n        \"UpdateIfPopulated\": true,\r\n        \"IsLeadCtc\": true,\r\n        \"IsFinanceCtc\": true,\r\n        \"CorporateName\": \"sample string 29\",\r\n        \"CorporateJobTitle\": 30,\r\n        \"Picture\": \"QEA=\",\r\n        \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"ContactSpendInLast12Months\": \"sample string 31\",\r\n        \"_Title\": \"sample string 33\",\r\n        \"FirstName\": \"sample string 34\",\r\n        \"Phone\": \"sample string 35\",\r\n        \"MobilPhone\": \"sample string 36\",\r\n        \"Email\": \"sample string 37\",\r\n        \"BirthDate\": \"2026-03-25T07:30:08.7790684+00:00\"\r\n      },\r\n      \"ContactOptin\": {\r\n        \"CustomerID\": 1,\r\n        \"EmailOptin\": true,\r\n        \"SmsOptin\": true,\r\n        \"MailOptin\": true,\r\n        \"PhoneOptin\": true,\r\n        \"ChangeDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"SourceID\": \"sample string 2\",\r\n        \"BrandID\": 1,\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"PushNotificationOptin\": true,\r\n        \"WebPushNotificationOptin\": true\r\n      }\r\n    },\r\n    \"Actions\": {\r\n      \"CreateInAtreemo\": true,\r\n      \"CreateInEagleEye\": true,\r\n      \"FeedInjection\": true\r\n    },\r\n    \"PurchaserIsRecipient\": true,\r\n    \"BrandID\": 1\r\n  }\r\n]"},"url":"https://{{Host}}/api/GiftCard/Post","description":" <p>\n            Add/Update a gift card in Atreemo (GiftCode is the field used to check the existance)\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>GiftCardPostInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Actions</td><td>Actions</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>GiftCard</td><td>GiftCard</td><td></td><td>False</td></tr><tr><td>Purchaser</td><td>ContactWithOptin</td><td></td><td>False</td></tr><tr><td>PurchaserIsRecipient</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>Recipient</td><td>ContactWithOptin</td><td></td><td>False</td></tr><tr><td><h4>Actions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateInAtreemo</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>CreateInEagleEye</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>FeedInjection</td><td>Boolean</td><td></td><td>False</td></tr><tr><td><h4>GiftCard Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreationDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>GiftCode</td><td>String</td><td></td><td>False</td></tr><tr><td>Message</td><td>String</td><td></td><td>False</td></tr><tr><td>Quantity</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Source</td><td>String</td><td></td><td>False</td></tr><tr><td>TotalPrice</td><td>Double</td><td></td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td></td><td>False</td></tr><tr><td>ValidFromDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td><h4>ContactWithOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Contact</td><td>Contact</td><td></td><td>False</td></tr><tr><td>ContactOptin</td><td>CommsPreferenceInput</td><td></td><td>False</td></tr><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>CommsPreferenceInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The brand ID where the change should be applied</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>True</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>ContactWithOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Contact</td><td>Contact</td><td></td><td>False</td></tr><tr><td>ContactOptin</td><td>CommsPreferenceInput</td><td></td><td>False</td></tr><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>CommsPreferenceInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The brand ID where the change should be applied</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>True</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","GiftCard","Post"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"07841344-e928-49f9-a20a-cac5e8393d1a","name":"api/GiftCard/Post Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"GiftCard\": {\r\n      \"Quantity\": 1,\r\n      \"UnitPrice\": 2.1,\r\n      \"TotalPrice\": 3.1,\r\n      \"Message\": \"sample string 4\",\r\n      \"Source\": \"sample string 5\",\r\n      \"Description\": \"sample string 6\",\r\n      \"GiftCode\": \"sample string 7\",\r\n      \"ValidFromDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n      \"CreationDate\": \"2026-03-25T07:30:08.7790684+00:00\"\r\n    },\r\n    \"Purchaser\": {\r\n      \"Contact\": {\r\n        \"CtcID\": 1,\r\n        \"LastName\": \"sample string 2\",\r\n        \"CpyID\": 3,\r\n        \"PositionFreeText\": \"sample string 7\",\r\n        \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"SourceID\": \"sample string 10\",\r\n        \"OriginID\": \"sample string 11\",\r\n        \"DoNotExport\": true,\r\n        \"ParentEmailAddress\": \"sample string 14\",\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"Company\": {\r\n          \"CpyID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Building\": \"sample string 4\",\r\n          \"Street\": \"sample string 5\",\r\n          \"Zone\": \"sample string 6\",\r\n          \"City\": \"sample string 7\",\r\n          \"PostCode\": \"sample string 8\",\r\n          \"StateCode\": \"sample string 9\",\r\n          \"StateName\": \"sample string 10\",\r\n          \"CountryCode\": \"sample string 13\",\r\n          \"CountryName\": \"sample string 14\",\r\n          \"Phone\": \"sample string 15\",\r\n          \"Fax\": \"sample string 16\",\r\n          \"Web\": \"sample string 17\",\r\n          \"Email\": \"sample string 18\",\r\n          \"NationalID\": \"sample string 20\",\r\n          \"SourceID\": \"sample string 21\",\r\n          \"OriginID\": \"sample string 22\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"LastModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"ModifiedBy\": 1,\r\n          \"CpyNotes\": {\r\n            \"CtcCpyID\": 1,\r\n            \"NoteUserID\": 2,\r\n            \"SourceNote\": 3,\r\n            \"Comment\": \"sample string 4\",\r\n            \"LastModifiedBy\": \"sample string 5\",\r\n            \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n            \"AttachmentFilesList\": [\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              },\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              }\r\n            ],\r\n            \"AttachmentFilesListString\": [\r\n              \"sample string 1\",\r\n              \"sample string 2\"\r\n            ]\r\n          },\r\n          \"SupInfo\": [\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            },\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            }\r\n          ]\r\n        },\r\n        \"CtcNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"Gender\": null,\r\n        \"PredefinedGender\": 0,\r\n        \"ProcessMydata\": true,\r\n        \"DeleteMyData\": true,\r\n        \"HomeSiteID\": \"sample string 20\",\r\n        \"BrandID\": 1,\r\n        \"MemberNumbersList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CurrentMemberNumber\": \"sample string 21\",\r\n        \"CardTokensList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CardToken\": \"sample string 22\",\r\n        \"CurrentReferrerCode\": \"sample string 23\",\r\n        \"ReferrerCodeList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"ReferredByCode\": \"sample string 24\",\r\n        \"ReferrerCode\": \"sample string 25\",\r\n        \"UpdateIfPopulated\": true,\r\n        \"IsLeadCtc\": true,\r\n        \"IsFinanceCtc\": true,\r\n        \"CorporateName\": \"sample string 29\",\r\n        \"CorporateJobTitle\": 30,\r\n        \"Picture\": \"QEA=\",\r\n        \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"ContactSpendInLast12Months\": \"sample string 31\",\r\n        \"_Title\": \"sample string 33\",\r\n        \"FirstName\": \"sample string 34\",\r\n        \"Phone\": \"sample string 35\",\r\n        \"MobilPhone\": \"sample string 36\",\r\n        \"Email\": \"sample string 37\",\r\n        \"BirthDate\": \"2026-03-25T07:30:08.7790684+00:00\"\r\n      },\r\n      \"ContactOptin\": {\r\n        \"CustomerID\": 1,\r\n        \"EmailOptin\": true,\r\n        \"SmsOptin\": true,\r\n        \"MailOptin\": true,\r\n        \"PhoneOptin\": true,\r\n        \"ChangeDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"SourceID\": \"sample string 2\",\r\n        \"BrandID\": 1,\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"PushNotificationOptin\": true,\r\n        \"WebPushNotificationOptin\": true\r\n      }\r\n    },\r\n    \"Recipient\": {\r\n      \"Contact\": {\r\n        \"CtcID\": 1,\r\n        \"LastName\": \"sample string 2\",\r\n        \"CpyID\": 3,\r\n        \"PositionFreeText\": \"sample string 7\",\r\n        \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"SourceID\": \"sample string 10\",\r\n        \"OriginID\": \"sample string 11\",\r\n        \"DoNotExport\": true,\r\n        \"ParentEmailAddress\": \"sample string 14\",\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"Company\": {\r\n          \"CpyID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Building\": \"sample string 4\",\r\n          \"Street\": \"sample string 5\",\r\n          \"Zone\": \"sample string 6\",\r\n          \"City\": \"sample string 7\",\r\n          \"PostCode\": \"sample string 8\",\r\n          \"StateCode\": \"sample string 9\",\r\n          \"StateName\": \"sample string 10\",\r\n          \"CountryCode\": \"sample string 13\",\r\n          \"CountryName\": \"sample string 14\",\r\n          \"Phone\": \"sample string 15\",\r\n          \"Fax\": \"sample string 16\",\r\n          \"Web\": \"sample string 17\",\r\n          \"Email\": \"sample string 18\",\r\n          \"NationalID\": \"sample string 20\",\r\n          \"SourceID\": \"sample string 21\",\r\n          \"OriginID\": \"sample string 22\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"LastModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"ModifiedBy\": 1,\r\n          \"CpyNotes\": {\r\n            \"CtcCpyID\": 1,\r\n            \"NoteUserID\": 2,\r\n            \"SourceNote\": 3,\r\n            \"Comment\": \"sample string 4\",\r\n            \"LastModifiedBy\": \"sample string 5\",\r\n            \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n            \"AttachmentFilesList\": [\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              },\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              }\r\n            ],\r\n            \"AttachmentFilesListString\": [\r\n              \"sample string 1\",\r\n              \"sample string 2\"\r\n            ]\r\n          },\r\n          \"SupInfo\": [\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            },\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            }\r\n          ]\r\n        },\r\n        \"CtcNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"Gender\": null,\r\n        \"PredefinedGender\": 0,\r\n        \"ProcessMydata\": true,\r\n        \"DeleteMyData\": true,\r\n        \"HomeSiteID\": \"sample string 20\",\r\n        \"BrandID\": 1,\r\n        \"MemberNumbersList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CurrentMemberNumber\": \"sample string 21\",\r\n        \"CardTokensList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CardToken\": \"sample string 22\",\r\n        \"CurrentReferrerCode\": \"sample string 23\",\r\n        \"ReferrerCodeList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"ReferredByCode\": \"sample string 24\",\r\n        \"ReferrerCode\": \"sample string 25\",\r\n        \"UpdateIfPopulated\": true,\r\n        \"IsLeadCtc\": true,\r\n        \"IsFinanceCtc\": true,\r\n        \"CorporateName\": \"sample string 29\",\r\n        \"CorporateJobTitle\": 30,\r\n        \"Picture\": \"QEA=\",\r\n        \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"ContactSpendInLast12Months\": \"sample string 31\",\r\n        \"_Title\": \"sample string 33\",\r\n        \"FirstName\": \"sample string 34\",\r\n        \"Phone\": \"sample string 35\",\r\n        \"MobilPhone\": \"sample string 36\",\r\n        \"Email\": \"sample string 37\",\r\n        \"BirthDate\": \"2026-03-25T07:30:08.7790684+00:00\"\r\n      },\r\n      \"ContactOptin\": {\r\n        \"CustomerID\": 1,\r\n        \"EmailOptin\": true,\r\n        \"SmsOptin\": true,\r\n        \"MailOptin\": true,\r\n        \"PhoneOptin\": true,\r\n        \"ChangeDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"SourceID\": \"sample string 2\",\r\n        \"BrandID\": 1,\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"PushNotificationOptin\": true,\r\n        \"WebPushNotificationOptin\": true\r\n      }\r\n    },\r\n    \"Actions\": {\r\n      \"CreateInAtreemo\": true,\r\n      \"CreateInEagleEye\": true,\r\n      \"FeedInjection\": true\r\n    },\r\n    \"PurchaserIsRecipient\": true,\r\n    \"BrandID\": 1\r\n  },\r\n  {\r\n    \"GiftCard\": {\r\n      \"Quantity\": 1,\r\n      \"UnitPrice\": 2.1,\r\n      \"TotalPrice\": 3.1,\r\n      \"Message\": \"sample string 4\",\r\n      \"Source\": \"sample string 5\",\r\n      \"Description\": \"sample string 6\",\r\n      \"GiftCode\": \"sample string 7\",\r\n      \"ValidFromDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n      \"CreationDate\": \"2026-03-25T07:30:08.7790684+00:00\"\r\n    },\r\n    \"Purchaser\": {\r\n      \"Contact\": {\r\n        \"CtcID\": 1,\r\n        \"LastName\": \"sample string 2\",\r\n        \"CpyID\": 3,\r\n        \"PositionFreeText\": \"sample string 7\",\r\n        \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"SourceID\": \"sample string 10\",\r\n        \"OriginID\": \"sample string 11\",\r\n        \"DoNotExport\": true,\r\n        \"ParentEmailAddress\": \"sample string 14\",\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"Company\": {\r\n          \"CpyID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Building\": \"sample string 4\",\r\n          \"Street\": \"sample string 5\",\r\n          \"Zone\": \"sample string 6\",\r\n          \"City\": \"sample string 7\",\r\n          \"PostCode\": \"sample string 8\",\r\n          \"StateCode\": \"sample string 9\",\r\n          \"StateName\": \"sample string 10\",\r\n          \"CountryCode\": \"sample string 13\",\r\n          \"CountryName\": \"sample string 14\",\r\n          \"Phone\": \"sample string 15\",\r\n          \"Fax\": \"sample string 16\",\r\n          \"Web\": \"sample string 17\",\r\n          \"Email\": \"sample string 18\",\r\n          \"NationalID\": \"sample string 20\",\r\n          \"SourceID\": \"sample string 21\",\r\n          \"OriginID\": \"sample string 22\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"LastModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"ModifiedBy\": 1,\r\n          \"CpyNotes\": {\r\n            \"CtcCpyID\": 1,\r\n            \"NoteUserID\": 2,\r\n            \"SourceNote\": 3,\r\n            \"Comment\": \"sample string 4\",\r\n            \"LastModifiedBy\": \"sample string 5\",\r\n            \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n            \"AttachmentFilesList\": [\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              },\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              }\r\n            ],\r\n            \"AttachmentFilesListString\": [\r\n              \"sample string 1\",\r\n              \"sample string 2\"\r\n            ]\r\n          },\r\n          \"SupInfo\": [\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            },\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            }\r\n          ]\r\n        },\r\n        \"CtcNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"Gender\": null,\r\n        \"PredefinedGender\": 0,\r\n        \"ProcessMydata\": true,\r\n        \"DeleteMyData\": true,\r\n        \"HomeSiteID\": \"sample string 20\",\r\n        \"BrandID\": 1,\r\n        \"MemberNumbersList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CurrentMemberNumber\": \"sample string 21\",\r\n        \"CardTokensList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CardToken\": \"sample string 22\",\r\n        \"CurrentReferrerCode\": \"sample string 23\",\r\n        \"ReferrerCodeList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"ReferredByCode\": \"sample string 24\",\r\n        \"ReferrerCode\": \"sample string 25\",\r\n        \"UpdateIfPopulated\": true,\r\n        \"IsLeadCtc\": true,\r\n        \"IsFinanceCtc\": true,\r\n        \"CorporateName\": \"sample string 29\",\r\n        \"CorporateJobTitle\": 30,\r\n        \"Picture\": \"QEA=\",\r\n        \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"ContactSpendInLast12Months\": \"sample string 31\",\r\n        \"_Title\": \"sample string 33\",\r\n        \"FirstName\": \"sample string 34\",\r\n        \"Phone\": \"sample string 35\",\r\n        \"MobilPhone\": \"sample string 36\",\r\n        \"Email\": \"sample string 37\",\r\n        \"BirthDate\": \"2026-03-25T07:30:08.7790684+00:00\"\r\n      },\r\n      \"ContactOptin\": {\r\n        \"CustomerID\": 1,\r\n        \"EmailOptin\": true,\r\n        \"SmsOptin\": true,\r\n        \"MailOptin\": true,\r\n        \"PhoneOptin\": true,\r\n        \"ChangeDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"SourceID\": \"sample string 2\",\r\n        \"BrandID\": 1,\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"PushNotificationOptin\": true,\r\n        \"WebPushNotificationOptin\": true\r\n      }\r\n    },\r\n    \"Recipient\": {\r\n      \"Contact\": {\r\n        \"CtcID\": 1,\r\n        \"LastName\": \"sample string 2\",\r\n        \"CpyID\": 3,\r\n        \"PositionFreeText\": \"sample string 7\",\r\n        \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"SourceID\": \"sample string 10\",\r\n        \"OriginID\": \"sample string 11\",\r\n        \"DoNotExport\": true,\r\n        \"ParentEmailAddress\": \"sample string 14\",\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"Company\": {\r\n          \"CpyID\": 1,\r\n          \"Name\": \"sample string 2\",\r\n          \"Building\": \"sample string 4\",\r\n          \"Street\": \"sample string 5\",\r\n          \"Zone\": \"sample string 6\",\r\n          \"City\": \"sample string 7\",\r\n          \"PostCode\": \"sample string 8\",\r\n          \"StateCode\": \"sample string 9\",\r\n          \"StateName\": \"sample string 10\",\r\n          \"CountryCode\": \"sample string 13\",\r\n          \"CountryName\": \"sample string 14\",\r\n          \"Phone\": \"sample string 15\",\r\n          \"Fax\": \"sample string 16\",\r\n          \"Web\": \"sample string 17\",\r\n          \"Email\": \"sample string 18\",\r\n          \"NationalID\": \"sample string 20\",\r\n          \"SourceID\": \"sample string 21\",\r\n          \"OriginID\": \"sample string 22\",\r\n          \"CreateDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"LastModifDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"ModifiedBy\": 1,\r\n          \"CpyNotes\": {\r\n            \"CtcCpyID\": 1,\r\n            \"NoteUserID\": 2,\r\n            \"SourceNote\": 3,\r\n            \"Comment\": \"sample string 4\",\r\n            \"LastModifiedBy\": \"sample string 5\",\r\n            \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n            \"AttachmentFilesList\": [\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              },\r\n              {\r\n                \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n                \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n                \"<FileName>k__BackingField\": \"sample string 3\",\r\n                \"<FileContent>k__BackingField\": \"sample string 4\",\r\n                \"<ContentType>k__BackingField\": \"sample string 5\",\r\n                \"<FileSize>k__BackingField\": 1,\r\n                \"<ID>k__BackingField\": 1,\r\n                \"<HasContent>k__BackingField\": true\r\n              }\r\n            ],\r\n            \"AttachmentFilesListString\": [\r\n              \"sample string 1\",\r\n              \"sample string 2\"\r\n            ]\r\n          },\r\n          \"SupInfo\": [\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            },\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldContent\": \"sample string 4\"\r\n            }\r\n          ]\r\n        },\r\n        \"CtcNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"Gender\": null,\r\n        \"PredefinedGender\": 0,\r\n        \"ProcessMydata\": true,\r\n        \"DeleteMyData\": true,\r\n        \"HomeSiteID\": \"sample string 20\",\r\n        \"BrandID\": 1,\r\n        \"MemberNumbersList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CurrentMemberNumber\": \"sample string 21\",\r\n        \"CardTokensList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"CardToken\": \"sample string 22\",\r\n        \"CurrentReferrerCode\": \"sample string 23\",\r\n        \"ReferrerCodeList\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ],\r\n        \"ReferredByCode\": \"sample string 24\",\r\n        \"ReferrerCode\": \"sample string 25\",\r\n        \"UpdateIfPopulated\": true,\r\n        \"IsLeadCtc\": true,\r\n        \"IsFinanceCtc\": true,\r\n        \"CorporateName\": \"sample string 29\",\r\n        \"CorporateJobTitle\": 30,\r\n        \"Picture\": \"QEA=\",\r\n        \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n        \"ContactSpendInLast12Months\": \"sample string 31\",\r\n        \"_Title\": \"sample string 33\",\r\n        \"FirstName\": \"sample string 34\",\r\n        \"Phone\": \"sample string 35\",\r\n        \"MobilPhone\": \"sample string 36\",\r\n        \"Email\": \"sample string 37\",\r\n        \"BirthDate\": \"2026-03-25T07:30:08.7790684+00:00\"\r\n      },\r\n      \"ContactOptin\": {\r\n        \"CustomerID\": 1,\r\n        \"EmailOptin\": true,\r\n        \"SmsOptin\": true,\r\n        \"MailOptin\": true,\r\n        \"PhoneOptin\": true,\r\n        \"ChangeDate\": \"2026-03-25T07:30:08.7790684+00:00\",\r\n        \"SourceID\": \"sample string 2\",\r\n        \"BrandID\": 1,\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ],\r\n        \"PushNotificationOptin\": true,\r\n        \"WebPushNotificationOptin\": true\r\n      }\r\n    },\r\n    \"Actions\": {\r\n      \"CreateInAtreemo\": true,\r\n      \"CreateInEagleEye\": true,\r\n      \"FeedInjection\": true\r\n    },\r\n    \"PurchaserIsRecipient\": true,\r\n    \"BrandID\": 1\r\n  }\r\n]"},"url":"https://{{Host}}/api/GiftCard/Post","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add/Update a gift card in Atreemo (GiftCode is the field used to check the existance)\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>GiftCardPostInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Actions</td><td>Actions</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>GiftCard</td><td>GiftCard</td><td></td><td>False</td></tr><tr><td>Purchaser</td><td>ContactWithOptin</td><td></td><td>False</td></tr><tr><td>PurchaserIsRecipient</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>Recipient</td><td>ContactWithOptin</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Actions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateInAtreemo</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>CreateInEagleEye</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>FeedInjection</td><td>Boolean</td><td></td><td>False</td></tr><tr><td colspan=4><h4>GiftCard Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreationDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>GiftCode</td><td>String</td><td></td><td>False</td></tr><tr><td>Message</td><td>String</td><td></td><td>False</td></tr><tr><td>Quantity</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Source</td><td>String</td><td></td><td>False</td></tr><tr><td>TotalPrice</td><td>Double</td><td></td><td>False</td></tr><tr><td>UnitPrice</td><td>Double</td><td></td><td>False</td></tr><tr><td>ValidFromDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>ContactWithOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Contact</td><td>Contact</td><td></td><td>False</td></tr><tr><td>ContactOptin</td><td>CommsPreferenceInput</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td colspan=4><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>CommsPreferenceInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The brand ID where the change should be applied</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>True</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>ContactWithOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Contact</td><td>Contact</td><td></td><td>False</td></tr><tr><td>ContactOptin</td><td>CommsPreferenceInput</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td colspan=4><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>CommsPreferenceInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The brand ID where the change should be applied</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>True</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"73fe1383-47db-4f20-8e9f-20a2cb3ee2e3"},{"name":"Refund","id":"85d73556-8904-455d-9525-5d49102f0f9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"GiftCard\": \"sample string 1\",\r\n  \"Amount\": 2.1,\r\n  \"ExternalID\": \"sample string 3\",\r\n  \"LocationID\": \"sample string 4\",\r\n  \"Date\": \"2026-03-25T07:30:08.8415822+00:00\"\r\n}"},"url":"https://{{Host}}/api/GiftCard/Refund","description":" <p>\n            refund the amount of a gift card\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>RefundInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Amount</td><td>Double</td><td>Amount to be deducted</td><td>False</td></tr><tr><td>Date</td><td>DateTime (nullable)</td><td>Widhraw date</td><td>False</td></tr><tr><td>ExternalID</td><td>String</td><td>Widhraw external ID</td><td>False</td></tr><tr><td>GiftCard</td><td>String</td><td>Gift Card Number</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location where the transction has been made</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>RefundOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>RemainingBalance</td><td>Double</td><td>Remaining balance in the card</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","GiftCard","Refund"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"c52e06eb-3c15-47e5-ac33-bf4ab4365892","name":"api/GiftCard/Refund Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"GiftCard\": \"sample string 1\",\r\n  \"Amount\": 2.1,\r\n  \"ExternalID\": \"sample string 3\",\r\n  \"LocationID\": \"sample string 4\",\r\n  \"Date\": \"2026-03-25T07:30:08.8415822+00:00\"\r\n}"},"url":"https://{{Host}}/api/GiftCard/Refund","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            refund the amount of a gift card\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>RefundInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Amount</td><td>Double</td><td>Amount to be deducted</td><td>False</td></tr><tr><td>Date</td><td>DateTime (nullable)</td><td>Widhraw date</td><td>False</td></tr><tr><td>ExternalID</td><td>String</td><td>Widhraw external ID</td><td>False</td></tr><tr><td>GiftCard</td><td>String</td><td>Gift Card Number</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location where the transction has been made</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>RefundOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>RemainingBalance</td><td>Double</td><td>Remaining balance in the card</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\",\r\n  \"RemainingBalance\": 3.1\r\n}"}],"_postman_id":"85d73556-8904-455d-9525-5d49102f0f9a"},{"name":"Withdraw","id":"cac8674b-6128-42b4-aef9-c0b4e0e546f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"GiftCard\": \"sample string 1\",\r\n  \"Amount\": 2.1,\r\n  \"ExternalID\": \"sample string 3\",\r\n  \"LocationID\": \"sample string 4\",\r\n  \"Date\": \"2026-03-25T07:30:08.8415822+00:00\",\r\n  \"Actions\": {\r\n    \"CreateInAtreemo\": true,\r\n    \"CreateInEagleEye\": true,\r\n    \"FeedInjection\": true\r\n  }\r\n}"},"url":"https://{{Host}}/api/GiftCard/Withdraw","description":" <p>\n            Withdraw the amount of a gift card\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>WithdrawInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Actions</td><td>Actions</td><td></td><td>False</td></tr><tr><td>Amount</td><td>Double</td><td>Amount to be deducted</td><td>False</td></tr><tr><td>Date</td><td>DateTime (nullable)</td><td>Widhraw date</td><td>False</td></tr><tr><td>ExternalID</td><td>String</td><td>Widhraw external ID</td><td>False</td></tr><tr><td>GiftCard</td><td>String</td><td>Gift Card Number</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location where the transction has been made</td><td>False</td></tr><tr><td><h4>Actions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateInAtreemo</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>CreateInEagleEye</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>FeedInjection</td><td>Boolean</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>WithdrawOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>RemainingBalance</td><td>Double</td><td>Remaining balance in the card</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","GiftCard","Withdraw"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"afa78215-4328-4dce-9d9b-99dcb14d5c40","name":"api/GiftCard/Withdraw Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"GiftCard\": \"sample string 1\",\r\n  \"Amount\": 2.1,\r\n  \"ExternalID\": \"sample string 3\",\r\n  \"LocationID\": \"sample string 4\",\r\n  \"Date\": \"2026-03-25T07:30:08.8415822+00:00\",\r\n  \"Actions\": {\r\n    \"CreateInAtreemo\": true,\r\n    \"CreateInEagleEye\": true,\r\n    \"FeedInjection\": true\r\n  }\r\n}"},"url":"https://{{Host}}/api/GiftCard/Withdraw","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Withdraw the amount of a gift card\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>WithdrawInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Actions</td><td>Actions</td><td></td><td>False</td></tr><tr><td>Amount</td><td>Double</td><td>Amount to be deducted</td><td>False</td></tr><tr><td>Date</td><td>DateTime (nullable)</td><td>Widhraw date</td><td>False</td></tr><tr><td>ExternalID</td><td>String</td><td>Widhraw external ID</td><td>False</td></tr><tr><td>GiftCard</td><td>String</td><td>Gift Card Number</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location where the transction has been made</td><td>False</td></tr><tr><td colspan=4><h4>Actions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateInAtreemo</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>CreateInEagleEye</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>FeedInjection</td><td>Boolean</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>WithdrawOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>RemainingBalance</td><td>Double</td><td>Remaining balance in the card</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\",\r\n  \"RemainingBalance\": 3.1\r\n}"}],"_postman_id":"cac8674b-6128-42b4-aef9-c0b4e0e546f7"}],"id":"25cbbdd8-1fa2-44f7-a3ae-0b92de2e0de4","description":"<p>Api Methods for GiftCard</p>\n","_postman_id":"25cbbdd8-1fa2-44f7-a3ae-0b92de2e0de4"},{"name":"HotelBooking","item":[{"name":"FindHotelBooking","id":"0516577e-fd7c-444a-81a9-dc45bef2fc6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"HotelBookingRef\": \"sample string 1\",\r\n  \"HotelBookingID\": 1,\r\n  \"HotelBookerRef\": \"sample string 2\",\r\n  \"HotelBookerCtcID\": 3,\r\n  \"ExternalBookingReference\": \"sample string 4\"\r\n}"},"url":"https://{{Host}}/api/HotelBooking/FindHotelBooking","description":" <p>\n            Find hotel bookings\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>FindHotelBookingPayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalBookingReference</td><td>String</td><td>External Booking Reference</td><td>False</td></tr><tr><td>HotelBookerCtcID</td><td>Int32</td><td>Hotel Booker Ctcid</td><td>False</td></tr><tr><td>HotelBookerRef</td><td>String</td><td>Hotel Booker Reference</td><td>False</td></tr><tr><td>HotelBookingID</td><td>Int64 (nullable)</td><td>Hotel Booking Acteol ID</td><td>False</td></tr><tr><td>HotelBookingRef</td><td>String</td><td>Internal PMS Hotel Booking Reference</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>FindHotelBookingOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>List&lt;HotelBookingDetails&gt;</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>HotelBookingDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingNightsNumber</td><td>Int32</td><td>Booking Nights Number</td></tr><tr><td>ChannelID</td><td>String</td><td>Hotel Booking Channel ID</td></tr><tr><td>CheckInDate</td><td>DateTime</td><td>Hotel Booking CheckIn Date</td></tr><tr><td>CheckOutDate</td><td>DateTime</td><td>Hotel Booking CheckOut Date</td></tr><tr><td>CreationDate</td><td>DateTime</td><td>Hotel Booking Date</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td>Collection of extra booking informations</td></tr><tr><td>EstimatedSpend</td><td>Double (nullable)</td><td>Hotel Booking Estimated Spend</td></tr><tr><td>ExternalBookingReference</td><td>String</td><td>External Booking Reference</td></tr><tr><td>HotelBookingBookerCtcID</td><td>Int32</td><td>Hotel Booking Booker Ctcid</td></tr><tr><td>HotelBookingID</td><td>Int64</td><td>Hotel Booking Acteol ID</td></tr><tr><td>HotelBookingRef</td><td>String</td><td>Internal PMS Hotel Booking Reference</td></tr><tr><td>IsOTA</td><td>Boolean</td><td>Hotel Booking Is OTA</td></tr><tr><td>LastUpdatedDate</td><td>DateTime (nullable)</td><td>Hotel Booking Last Updated Date</td></tr><tr><td>LinkedBookings</td><td>List&lt;LinkedBooking&gt;</td><td>Other Bookings</td></tr><tr><td>Location</td><td>ApiLocation</td><td>Hotel Booking Location</td></tr><tr><td>MarketSegment</td><td>String</td><td>Hotel Booking Market Segment</td></tr><tr><td>ModifyURL</td><td>String</td><td>Hotel Booking Modify URL</td></tr><tr><td>Notes</td><td>List&lt;String&gt;</td><td>Booking Notes</td></tr><tr><td>OrderUniqueID</td><td>Int64 (nullable)</td><td>Hotel Booking Transaction ID</td></tr><tr><td>Reason</td><td>String</td><td>Hotel Booking Reason</td></tr><tr><td>Rooms</td><td>List&lt;HotelBookingRoom&gt;</td><td>List of Rooms</td></tr><tr><td>SourceOfBusiness</td><td>String</td><td></td></tr><tr><td>Spend</td><td>Double (nullable)</td><td>Hotel Booking Spend</td></tr><tr><td>Status</td><td>BookingStatus</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td></tr><tr><td>Supplier</td><td>Supplier</td><td></td></tr><tr><td><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td></tr><tr><td><h4>LinkedBooking Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>LinkedBookingRef</td><td>String</td><td>Linked Booking Reference</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Linked Booking Supplier</td></tr><tr><td><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td></tr><tr><td><h4>HotelBookingRoom Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CancelPenalties</td><td>List&lt;RoomCancelPenalty&gt;</td><td></td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td></td></tr><tr><td>GuaranteeCode</td><td>String</td><td></td></tr><tr><td>Guests</td><td>List&lt;Guest&gt;</td><td>Room Guests</td></tr><tr><td>Revenues</td><td>List&lt;RoomRevenue&gt;</td><td>Room Revenues</td></tr><tr><td>RoomAdultsNumber</td><td>Int32</td><td>Room Adults Number</td></tr><tr><td>RoomCapacity</td><td>String</td><td>Hotel Booking Room Capacity</td></tr><tr><td>RoomCheckInDate</td><td>DateTime</td><td>Room CheckIn Date</td></tr><tr><td>RoomCheckOutDate</td><td>DateTime</td><td>Room CheckOut Date</td></tr><tr><td>RoomChildrenNumber</td><td>Int32</td><td>Room Children Number</td></tr><tr><td>RoomDiningNumber</td><td>Int32</td><td>Room Dining Number</td></tr><tr><td>RoomEstimatedSpend</td><td>Double (nullable)</td><td>Room Estimated Spend</td></tr><tr><td>RoomInfantsNumber</td><td>Int32</td><td>Room Infants Number</td></tr><tr><td>RoomNightsNumber</td><td>Int32</td><td>Room Nights Number</td></tr><tr><td>RoomPetsNumber</td><td>Int32</td><td>Room Pets Number</td></tr><tr><td>RoomRatePlan</td><td>String</td><td>Room Rate Plan</td></tr><tr><td>RoomRef</td><td>String</td><td>Hotel Booking Room Reference</td></tr><tr><td>RoomStatus</td><td>BookingStatus</td><td>Hotel Booking Room Status \n            Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td></tr><tr><td>RoomType</td><td>String</td><td>Hotel Booking Room Type</td></tr><tr><td>RoomVoucherCode</td><td>String</td><td>Room Voucher Code</td></tr><tr><td>SpecialRequests</td><td>List&lt;RoomSpecialRequest&gt;</td><td></td></tr><tr><td><h4>RoomCancelPenalty Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AmountPercent</td><td>Double (nullable)</td><td></td></tr><tr><td>Code</td><td>String</td><td></td></tr><tr><td>Deadline</td><td>DateTime (nullable)</td><td></td></tr><tr><td><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td></tr><tr><td><h4>Guest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>GuestCtcID</td><td>Int32</td><td>Hotel Room Guest Ctcid</td></tr><tr><td>GuestDetails</td><td>CustomerPayload</td><td>Hotel Room Guest Details</td></tr><tr><td>GuestRef</td><td>String</td><td>Hotel Room Guest Reference</td></tr><tr><td><h4>CustomerPayload Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td></tr><tr><td><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td></tr><tr><td><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td></tr><tr><td><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td></tr><tr><td><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td></tr><tr><td>Title</td><td>String</td><td>Person title</td></tr><tr><td><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>RoomRevenue Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AnalysisCode</td><td>String</td><td>Room Revenue Analysis Code</td></tr><tr><td>EffectiveDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ExpireDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>GrossAmount</td><td>Double (nullable)</td><td>Room Revenue Gross Amount</td></tr><tr><td>RevenueType</td><td>String</td><td>Room Revenue Type</td></tr><tr><td>TaxAmount</td><td>Double (nullable)</td><td>Room Revenue Tax Amount</td></tr><tr><td>TotalAmount</td><td>Double (nullable)</td><td>Room Revenue Total Amount</td></tr><tr><td><h4>RoomSpecialRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RequestCode</td><td>String</td><td></td></tr><tr><td><h4>Supplier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>SupplierCode</td><td>Int32</td><td>The Supplier Unique ID</td></tr><tr><td>SupplierName</td><td>String</td><td>The Supplier Name</td></tr></table>","urlObject":{"protocol":"https","path":["api","HotelBooking","FindHotelBooking"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"f980a6a1-4311-444c-b3c2-9973be291e82","name":"api/HotelBooking/FindHotelBooking Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"HotelBookingRef\": \"sample string 1\",\r\n  \"HotelBookingID\": 1,\r\n  \"HotelBookerRef\": \"sample string 2\",\r\n  \"HotelBookerCtcID\": 3,\r\n  \"ExternalBookingReference\": \"sample string 4\"\r\n}"},"url":"https://{{Host}}/api/HotelBooking/FindHotelBooking","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Find hotel bookings\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>FindHotelBookingPayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalBookingReference</td><td>String</td><td>External Booking Reference</td><td>False</td></tr><tr><td>HotelBookerCtcID</td><td>Int32</td><td>Hotel Booker Ctcid</td><td>False</td></tr><tr><td>HotelBookerRef</td><td>String</td><td>Hotel Booker Reference</td><td>False</td></tr><tr><td>HotelBookingID</td><td>Int64 (nullable)</td><td>Hotel Booking Acteol ID</td><td>False</td></tr><tr><td>HotelBookingRef</td><td>String</td><td>Internal PMS Hotel Booking Reference</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>FindHotelBookingOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>List&lt;HotelBookingDetails&gt;</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>HotelBookingDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingNightsNumber</td><td>Int32</td><td>Booking Nights Number</td></tr><tr><td>ChannelID</td><td>String</td><td>Hotel Booking Channel ID</td></tr><tr><td>CheckInDate</td><td>DateTime</td><td>Hotel Booking CheckIn Date</td></tr><tr><td>CheckOutDate</td><td>DateTime</td><td>Hotel Booking CheckOut Date</td></tr><tr><td>CreationDate</td><td>DateTime</td><td>Hotel Booking Date</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td>Collection of extra booking informations</td></tr><tr><td>EstimatedSpend</td><td>Double (nullable)</td><td>Hotel Booking Estimated Spend</td></tr><tr><td>ExternalBookingReference</td><td>String</td><td>External Booking Reference</td></tr><tr><td>HotelBookingBookerCtcID</td><td>Int32</td><td>Hotel Booking Booker Ctcid</td></tr><tr><td>HotelBookingID</td><td>Int64</td><td>Hotel Booking Acteol ID</td></tr><tr><td>HotelBookingRef</td><td>String</td><td>Internal PMS Hotel Booking Reference</td></tr><tr><td>IsOTA</td><td>Boolean</td><td>Hotel Booking Is OTA</td></tr><tr><td>LastUpdatedDate</td><td>DateTime (nullable)</td><td>Hotel Booking Last Updated Date</td></tr><tr><td>LinkedBookings</td><td>List&lt;LinkedBooking&gt;</td><td>Other Bookings</td></tr><tr><td>Location</td><td>ApiLocation</td><td>Hotel Booking Location</td></tr><tr><td>MarketSegment</td><td>String</td><td>Hotel Booking Market Segment</td></tr><tr><td>ModifyURL</td><td>String</td><td>Hotel Booking Modify URL</td></tr><tr><td>Notes</td><td>List&lt;String&gt;</td><td>Booking Notes</td></tr><tr><td>OrderUniqueID</td><td>Int64 (nullable)</td><td>Hotel Booking Transaction ID</td></tr><tr><td>Reason</td><td>String</td><td>Hotel Booking Reason</td></tr><tr><td>Rooms</td><td>List&lt;HotelBookingRoom&gt;</td><td>List of Rooms</td></tr><tr><td>SourceOfBusiness</td><td>String</td><td></td></tr><tr><td>Spend</td><td>Double (nullable)</td><td>Hotel Booking Spend</td></tr><tr><td>Status</td><td>BookingStatus</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td></tr><tr><td>Supplier</td><td>Supplier</td><td></td></tr><tr><td colspan=3><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td></tr><tr><td colspan=3><h4>LinkedBooking Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>LinkedBookingRef</td><td>String</td><td>Linked Booking Reference</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Linked Booking Supplier</td></tr><tr><td colspan=3><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td></tr><tr><td colspan=3><h4>HotelBookingRoom Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CancelPenalties</td><td>List&lt;RoomCancelPenalty&gt;</td><td></td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td></td></tr><tr><td>GuaranteeCode</td><td>String</td><td></td></tr><tr><td>Guests</td><td>List&lt;Guest&gt;</td><td>Room Guests</td></tr><tr><td>Revenues</td><td>List&lt;RoomRevenue&gt;</td><td>Room Revenues</td></tr><tr><td>RoomAdultsNumber</td><td>Int32</td><td>Room Adults Number</td></tr><tr><td>RoomCapacity</td><td>String</td><td>Hotel Booking Room Capacity</td></tr><tr><td>RoomCheckInDate</td><td>DateTime</td><td>Room CheckIn Date</td></tr><tr><td>RoomCheckOutDate</td><td>DateTime</td><td>Room CheckOut Date</td></tr><tr><td>RoomChildrenNumber</td><td>Int32</td><td>Room Children Number</td></tr><tr><td>RoomDiningNumber</td><td>Int32</td><td>Room Dining Number</td></tr><tr><td>RoomEstimatedSpend</td><td>Double (nullable)</td><td>Room Estimated Spend</td></tr><tr><td>RoomInfantsNumber</td><td>Int32</td><td>Room Infants Number</td></tr><tr><td>RoomNightsNumber</td><td>Int32</td><td>Room Nights Number</td></tr><tr><td>RoomPetsNumber</td><td>Int32</td><td>Room Pets Number</td></tr><tr><td>RoomRatePlan</td><td>String</td><td>Room Rate Plan</td></tr><tr><td>RoomRef</td><td>String</td><td>Hotel Booking Room Reference</td></tr><tr><td>RoomStatus</td><td>BookingStatus</td><td>Hotel Booking Room Status \n            Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td></tr><tr><td>RoomType</td><td>String</td><td>Hotel Booking Room Type</td></tr><tr><td>RoomVoucherCode</td><td>String</td><td>Room Voucher Code</td></tr><tr><td>SpecialRequests</td><td>List&lt;RoomSpecialRequest&gt;</td><td></td></tr><tr><td colspan=3><h4>RoomCancelPenalty Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AmountPercent</td><td>Double (nullable)</td><td></td></tr><tr><td>Code</td><td>String</td><td></td></tr><tr><td>Deadline</td><td>DateTime (nullable)</td><td></td></tr><tr><td colspan=3><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td></tr><tr><td colspan=3><h4>Guest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>GuestCtcID</td><td>Int32</td><td>Hotel Room Guest Ctcid</td></tr><tr><td>GuestDetails</td><td>CustomerPayload</td><td>Hotel Room Guest Details</td></tr><tr><td>GuestRef</td><td>String</td><td>Hotel Room Guest Reference</td></tr><tr><td colspan=3><h4>CustomerPayload Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td></tr><tr><td colspan=3><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td></tr><tr><td colspan=3><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td></tr><tr><td colspan=3><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td></tr><tr><td colspan=3><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td></tr><tr><td colspan=3><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td></tr><tr><td>Title</td><td>String</td><td>Person title</td></tr><tr><td colspan=3><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>RoomRevenue Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AnalysisCode</td><td>String</td><td>Room Revenue Analysis Code</td></tr><tr><td>EffectiveDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ExpireDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>GrossAmount</td><td>Double (nullable)</td><td>Room Revenue Gross Amount</td></tr><tr><td>RevenueType</td><td>String</td><td>Room Revenue Type</td></tr><tr><td>TaxAmount</td><td>Double (nullable)</td><td>Room Revenue Tax Amount</td></tr><tr><td>TotalAmount</td><td>Double (nullable)</td><td>Room Revenue Total Amount</td></tr><tr><td colspan=3><h4>RoomSpecialRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RequestCode</td><td>String</td><td></td></tr><tr><td colspan=3><h4>Supplier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>SupplierCode</td><td>Int32</td><td>The Supplier Unique ID</td></tr><tr><td>SupplierName</td><td>String</td><td>The Supplier Name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseData\": [\r\n    {\r\n      \"HotelBookingID\": 1,\r\n      \"HotelBookingBookerCtcID\": 2,\r\n      \"Supplier\": {\r\n        \"SupplierCode\": 1,\r\n        \"SupplierName\": \"sample string 2\"\r\n      },\r\n      \"HotelBookingRef\": \"sample string 3\",\r\n      \"CreationDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n      \"LastUpdatedDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n      \"Reason\": \"sample string 5\",\r\n      \"ChannelID\": \"sample string 6\",\r\n      \"Status\": 1,\r\n      \"IsOTA\": true,\r\n      \"CheckInDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n      \"CheckOutDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n      \"Location\": {\r\n        \"ActeolSiteID\": 1,\r\n        \"ExternalLocationID\": \"sample string 2\"\r\n      },\r\n      \"Spend\": 1.1,\r\n      \"EstimatedSpend\": 1.1,\r\n      \"OrderUniqueID\": 1,\r\n      \"CustomFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"Rooms\": [\r\n        {\r\n          \"RoomRef\": \"sample string 1\",\r\n          \"RoomStatus\": 1,\r\n          \"RoomType\": \"sample string 2\",\r\n          \"RoomCapacity\": \"sample string 3\",\r\n          \"RoomCheckInDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n          \"RoomCheckOutDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n          \"RoomDiningNumber\": 6,\r\n          \"RoomNightsNumber\": 7,\r\n          \"RoomAdultsNumber\": 8,\r\n          \"RoomChildrenNumber\": 9,\r\n          \"RoomInfantsNumber\": 10,\r\n          \"RoomPetsNumber\": 11,\r\n          \"RoomRatePlan\": \"sample string 12\",\r\n          \"RoomVoucherCode\": \"sample string 13\",\r\n          \"RoomEstimatedSpend\": 1.1,\r\n          \"Guests\": [\r\n            {\r\n              \"GuestDetails\": {\r\n                \"PersonalInfo\": {\r\n                  \"Title\": \"sample string 1\",\r\n                  \"FirstName\": \"sample string 2\",\r\n                  \"LastName\": \"sample string 3\",\r\n                  \"Email\": \"sample string 4\",\r\n                  \"MobilePhone\": \"sample string 5\",\r\n                  \"Phone\": \"sample string 6\",\r\n                  \"BirthDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"JobTitle\": \"sample string 7\",\r\n                  \"ParentEmailAddress\": \"sample string 8\",\r\n                  \"Gender\": 0,\r\n                  \"CustomerAddress\": {\r\n                    \"Address1\": \"sample string 2\",\r\n                    \"Address2\": \"sample string 3\",\r\n                    \"Address3\": \"sample string 4\",\r\n                    \"City\": \"sample string 5\",\r\n                    \"PostCode\": \"sample string 6\",\r\n                    \"StateName\": \"sample string 7\",\r\n                    \"CountryCode\": \"sample string 8\",\r\n                    \"Phone\": \"sample string 9\"\r\n                  },\r\n                  \"DoNotExport\": true\r\n                },\r\n                \"ExternalIdentifier\": {\r\n                  \"ExternalID\": \"sample string 1\",\r\n                  \"ExternalSource\": \"sample string 2\"\r\n                },\r\n                \"MarketingOptin\": {\r\n                  \"ChangeDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"EmailOptin\": true,\r\n                  \"SmsOptin\": true,\r\n                  \"MailOptin\": true,\r\n                  \"PhoneOptin\": true,\r\n                  \"PushNotificationOptin\": true,\r\n                  \"WebPushNotificationOptin\": true,\r\n                  \"WhatsAppOptin\": true,\r\n                  \"AppOptin\": true\r\n                },\r\n                \"SupInfo\": [\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  },\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  }\r\n                ],\r\n                \"CustomerPicture\": {\r\n                  \"PictureName\": \"sample string 1\",\r\n                  \"PictureExtension\": \"sample string 2\",\r\n                  \"PictureData\": \"sample string 3\"\r\n                },\r\n                \"CustomerNotes\": [\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  },\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  }\r\n                ]\r\n              },\r\n              \"GuestRef\": \"sample string 1\",\r\n              \"GuestCtcID\": 2\r\n            },\r\n            {\r\n              \"GuestDetails\": {\r\n                \"PersonalInfo\": {\r\n                  \"Title\": \"sample string 1\",\r\n                  \"FirstName\": \"sample string 2\",\r\n                  \"LastName\": \"sample string 3\",\r\n                  \"Email\": \"sample string 4\",\r\n                  \"MobilePhone\": \"sample string 5\",\r\n                  \"Phone\": \"sample string 6\",\r\n                  \"BirthDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"JobTitle\": \"sample string 7\",\r\n                  \"ParentEmailAddress\": \"sample string 8\",\r\n                  \"Gender\": 0,\r\n                  \"CustomerAddress\": {\r\n                    \"Address1\": \"sample string 2\",\r\n                    \"Address2\": \"sample string 3\",\r\n                    \"Address3\": \"sample string 4\",\r\n                    \"City\": \"sample string 5\",\r\n                    \"PostCode\": \"sample string 6\",\r\n                    \"StateName\": \"sample string 7\",\r\n                    \"CountryCode\": \"sample string 8\",\r\n                    \"Phone\": \"sample string 9\"\r\n                  },\r\n                  \"DoNotExport\": true\r\n                },\r\n                \"ExternalIdentifier\": {\r\n                  \"ExternalID\": \"sample string 1\",\r\n                  \"ExternalSource\": \"sample string 2\"\r\n                },\r\n                \"MarketingOptin\": {\r\n                  \"ChangeDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"EmailOptin\": true,\r\n                  \"SmsOptin\": true,\r\n                  \"MailOptin\": true,\r\n                  \"PhoneOptin\": true,\r\n                  \"PushNotificationOptin\": true,\r\n                  \"WebPushNotificationOptin\": true,\r\n                  \"WhatsAppOptin\": true,\r\n                  \"AppOptin\": true\r\n                },\r\n                \"SupInfo\": [\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  },\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  }\r\n                ],\r\n                \"CustomerPicture\": {\r\n                  \"PictureName\": \"sample string 1\",\r\n                  \"PictureExtension\": \"sample string 2\",\r\n                  \"PictureData\": \"sample string 3\"\r\n                },\r\n                \"CustomerNotes\": [\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  },\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  }\r\n                ]\r\n              },\r\n              \"GuestRef\": \"sample string 1\",\r\n              \"GuestCtcID\": 2\r\n            }\r\n          ],\r\n          \"Revenues\": [\r\n            {\r\n              \"RevenueType\": \"sample string 1\",\r\n              \"AnalysisCode\": \"sample string 2\",\r\n              \"GrossAmount\": 1.1,\r\n              \"TaxAmount\": 1.1,\r\n              \"TotalAmount\": 1.1,\r\n              \"EffectiveDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"ExpireDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n            },\r\n            {\r\n              \"RevenueType\": \"sample string 1\",\r\n              \"AnalysisCode\": \"sample string 2\",\r\n              \"GrossAmount\": 1.1,\r\n              \"TaxAmount\": 1.1,\r\n              \"TotalAmount\": 1.1,\r\n              \"EffectiveDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"ExpireDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n            }\r\n          ],\r\n          \"GuaranteeCode\": \"sample string 14\",\r\n          \"SpecialRequests\": [\r\n            {\r\n              \"RequestCode\": \"sample string 1\"\r\n            },\r\n            {\r\n              \"RequestCode\": \"sample string 1\"\r\n            }\r\n          ],\r\n          \"CancelPenalties\": [\r\n            {\r\n              \"Code\": \"sample string 1\",\r\n              \"Deadline\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"AmountPercent\": 1.1\r\n            },\r\n            {\r\n              \"Code\": \"sample string 1\",\r\n              \"Deadline\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"AmountPercent\": 1.1\r\n            }\r\n          ],\r\n          \"CustomFields\": [\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldValue\": \"sample string 2\"\r\n            },\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldValue\": \"sample string 2\"\r\n            }\r\n          ]\r\n        },\r\n        {\r\n          \"RoomRef\": \"sample string 1\",\r\n          \"RoomStatus\": 1,\r\n          \"RoomType\": \"sample string 2\",\r\n          \"RoomCapacity\": \"sample string 3\",\r\n          \"RoomCheckInDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n          \"RoomCheckOutDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n          \"RoomDiningNumber\": 6,\r\n          \"RoomNightsNumber\": 7,\r\n          \"RoomAdultsNumber\": 8,\r\n          \"RoomChildrenNumber\": 9,\r\n          \"RoomInfantsNumber\": 10,\r\n          \"RoomPetsNumber\": 11,\r\n          \"RoomRatePlan\": \"sample string 12\",\r\n          \"RoomVoucherCode\": \"sample string 13\",\r\n          \"RoomEstimatedSpend\": 1.1,\r\n          \"Guests\": [\r\n            {\r\n              \"GuestDetails\": {\r\n                \"PersonalInfo\": {\r\n                  \"Title\": \"sample string 1\",\r\n                  \"FirstName\": \"sample string 2\",\r\n                  \"LastName\": \"sample string 3\",\r\n                  \"Email\": \"sample string 4\",\r\n                  \"MobilePhone\": \"sample string 5\",\r\n                  \"Phone\": \"sample string 6\",\r\n                  \"BirthDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"JobTitle\": \"sample string 7\",\r\n                  \"ParentEmailAddress\": \"sample string 8\",\r\n                  \"Gender\": 0,\r\n                  \"CustomerAddress\": {\r\n                    \"Address1\": \"sample string 2\",\r\n                    \"Address2\": \"sample string 3\",\r\n                    \"Address3\": \"sample string 4\",\r\n                    \"City\": \"sample string 5\",\r\n                    \"PostCode\": \"sample string 6\",\r\n                    \"StateName\": \"sample string 7\",\r\n                    \"CountryCode\": \"sample string 8\",\r\n                    \"Phone\": \"sample string 9\"\r\n                  },\r\n                  \"DoNotExport\": true\r\n                },\r\n                \"ExternalIdentifier\": {\r\n                  \"ExternalID\": \"sample string 1\",\r\n                  \"ExternalSource\": \"sample string 2\"\r\n                },\r\n                \"MarketingOptin\": {\r\n                  \"ChangeDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"EmailOptin\": true,\r\n                  \"SmsOptin\": true,\r\n                  \"MailOptin\": true,\r\n                  \"PhoneOptin\": true,\r\n                  \"PushNotificationOptin\": true,\r\n                  \"WebPushNotificationOptin\": true,\r\n                  \"WhatsAppOptin\": true,\r\n                  \"AppOptin\": true\r\n                },\r\n                \"SupInfo\": [\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  },\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  }\r\n                ],\r\n                \"CustomerPicture\": {\r\n                  \"PictureName\": \"sample string 1\",\r\n                  \"PictureExtension\": \"sample string 2\",\r\n                  \"PictureData\": \"sample string 3\"\r\n                },\r\n                \"CustomerNotes\": [\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  },\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  }\r\n                ]\r\n              },\r\n              \"GuestRef\": \"sample string 1\",\r\n              \"GuestCtcID\": 2\r\n            },\r\n            {\r\n              \"GuestDetails\": {\r\n                \"PersonalInfo\": {\r\n                  \"Title\": \"sample string 1\",\r\n                  \"FirstName\": \"sample string 2\",\r\n                  \"LastName\": \"sample string 3\",\r\n                  \"Email\": \"sample string 4\",\r\n                  \"MobilePhone\": \"sample string 5\",\r\n                  \"Phone\": \"sample string 6\",\r\n                  \"BirthDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"JobTitle\": \"sample string 7\",\r\n                  \"ParentEmailAddress\": \"sample string 8\",\r\n                  \"Gender\": 0,\r\n                  \"CustomerAddress\": {\r\n                    \"Address1\": \"sample string 2\",\r\n                    \"Address2\": \"sample string 3\",\r\n                    \"Address3\": \"sample string 4\",\r\n                    \"City\": \"sample string 5\",\r\n                    \"PostCode\": \"sample string 6\",\r\n                    \"StateName\": \"sample string 7\",\r\n                    \"CountryCode\": \"sample string 8\",\r\n                    \"Phone\": \"sample string 9\"\r\n                  },\r\n                  \"DoNotExport\": true\r\n                },\r\n                \"ExternalIdentifier\": {\r\n                  \"ExternalID\": \"sample string 1\",\r\n                  \"ExternalSource\": \"sample string 2\"\r\n                },\r\n                \"MarketingOptin\": {\r\n                  \"ChangeDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"EmailOptin\": true,\r\n                  \"SmsOptin\": true,\r\n                  \"MailOptin\": true,\r\n                  \"PhoneOptin\": true,\r\n                  \"PushNotificationOptin\": true,\r\n                  \"WebPushNotificationOptin\": true,\r\n                  \"WhatsAppOptin\": true,\r\n                  \"AppOptin\": true\r\n                },\r\n                \"SupInfo\": [\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  },\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  }\r\n                ],\r\n                \"CustomerPicture\": {\r\n                  \"PictureName\": \"sample string 1\",\r\n                  \"PictureExtension\": \"sample string 2\",\r\n                  \"PictureData\": \"sample string 3\"\r\n                },\r\n                \"CustomerNotes\": [\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  },\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  }\r\n                ]\r\n              },\r\n              \"GuestRef\": \"sample string 1\",\r\n              \"GuestCtcID\": 2\r\n            }\r\n          ],\r\n          \"Revenues\": [\r\n            {\r\n              \"RevenueType\": \"sample string 1\",\r\n              \"AnalysisCode\": \"sample string 2\",\r\n              \"GrossAmount\": 1.1,\r\n              \"TaxAmount\": 1.1,\r\n              \"TotalAmount\": 1.1,\r\n              \"EffectiveDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"ExpireDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n            },\r\n            {\r\n              \"RevenueType\": \"sample string 1\",\r\n              \"AnalysisCode\": \"sample string 2\",\r\n              \"GrossAmount\": 1.1,\r\n              \"TaxAmount\": 1.1,\r\n              \"TotalAmount\": 1.1,\r\n              \"EffectiveDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"ExpireDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n            }\r\n          ],\r\n          \"GuaranteeCode\": \"sample string 14\",\r\n          \"SpecialRequests\": [\r\n            {\r\n              \"RequestCode\": \"sample string 1\"\r\n            },\r\n            {\r\n              \"RequestCode\": \"sample string 1\"\r\n            }\r\n          ],\r\n          \"CancelPenalties\": [\r\n            {\r\n              \"Code\": \"sample string 1\",\r\n              \"Deadline\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"AmountPercent\": 1.1\r\n            },\r\n            {\r\n              \"Code\": \"sample string 1\",\r\n              \"Deadline\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"AmountPercent\": 1.1\r\n            }\r\n          ],\r\n          \"CustomFields\": [\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldValue\": \"sample string 2\"\r\n            },\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldValue\": \"sample string 2\"\r\n            }\r\n          ]\r\n        }\r\n      ],\r\n      \"LinkedBookings\": [\r\n        {\r\n          \"LinkedBookingRef\": \"sample string 1\",\r\n          \"SupplierCode\": 1\r\n        },\r\n        {\r\n          \"LinkedBookingRef\": \"sample string 1\",\r\n          \"SupplierCode\": 1\r\n        }\r\n      ],\r\n      \"Notes\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"MarketSegment\": \"sample string 10\",\r\n      \"ModifyURL\": \"sample string 11\",\r\n      \"BookingNightsNumber\": 12,\r\n      \"ExternalBookingReference\": \"sample string 13\",\r\n      \"SourceOfBusiness\": \"sample string 14\"\r\n    },\r\n    {\r\n      \"HotelBookingID\": 1,\r\n      \"HotelBookingBookerCtcID\": 2,\r\n      \"Supplier\": {\r\n        \"SupplierCode\": 1,\r\n        \"SupplierName\": \"sample string 2\"\r\n      },\r\n      \"HotelBookingRef\": \"sample string 3\",\r\n      \"CreationDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n      \"LastUpdatedDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n      \"Reason\": \"sample string 5\",\r\n      \"ChannelID\": \"sample string 6\",\r\n      \"Status\": 1,\r\n      \"IsOTA\": true,\r\n      \"CheckInDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n      \"CheckOutDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n      \"Location\": {\r\n        \"ActeolSiteID\": 1,\r\n        \"ExternalLocationID\": \"sample string 2\"\r\n      },\r\n      \"Spend\": 1.1,\r\n      \"EstimatedSpend\": 1.1,\r\n      \"OrderUniqueID\": 1,\r\n      \"CustomFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"Rooms\": [\r\n        {\r\n          \"RoomRef\": \"sample string 1\",\r\n          \"RoomStatus\": 1,\r\n          \"RoomType\": \"sample string 2\",\r\n          \"RoomCapacity\": \"sample string 3\",\r\n          \"RoomCheckInDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n          \"RoomCheckOutDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n          \"RoomDiningNumber\": 6,\r\n          \"RoomNightsNumber\": 7,\r\n          \"RoomAdultsNumber\": 8,\r\n          \"RoomChildrenNumber\": 9,\r\n          \"RoomInfantsNumber\": 10,\r\n          \"RoomPetsNumber\": 11,\r\n          \"RoomRatePlan\": \"sample string 12\",\r\n          \"RoomVoucherCode\": \"sample string 13\",\r\n          \"RoomEstimatedSpend\": 1.1,\r\n          \"Guests\": [\r\n            {\r\n              \"GuestDetails\": {\r\n                \"PersonalInfo\": {\r\n                  \"Title\": \"sample string 1\",\r\n                  \"FirstName\": \"sample string 2\",\r\n                  \"LastName\": \"sample string 3\",\r\n                  \"Email\": \"sample string 4\",\r\n                  \"MobilePhone\": \"sample string 5\",\r\n                  \"Phone\": \"sample string 6\",\r\n                  \"BirthDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"JobTitle\": \"sample string 7\",\r\n                  \"ParentEmailAddress\": \"sample string 8\",\r\n                  \"Gender\": 0,\r\n                  \"CustomerAddress\": {\r\n                    \"Address1\": \"sample string 2\",\r\n                    \"Address2\": \"sample string 3\",\r\n                    \"Address3\": \"sample string 4\",\r\n                    \"City\": \"sample string 5\",\r\n                    \"PostCode\": \"sample string 6\",\r\n                    \"StateName\": \"sample string 7\",\r\n                    \"CountryCode\": \"sample string 8\",\r\n                    \"Phone\": \"sample string 9\"\r\n                  },\r\n                  \"DoNotExport\": true\r\n                },\r\n                \"ExternalIdentifier\": {\r\n                  \"ExternalID\": \"sample string 1\",\r\n                  \"ExternalSource\": \"sample string 2\"\r\n                },\r\n                \"MarketingOptin\": {\r\n                  \"ChangeDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"EmailOptin\": true,\r\n                  \"SmsOptin\": true,\r\n                  \"MailOptin\": true,\r\n                  \"PhoneOptin\": true,\r\n                  \"PushNotificationOptin\": true,\r\n                  \"WebPushNotificationOptin\": true,\r\n                  \"WhatsAppOptin\": true,\r\n                  \"AppOptin\": true\r\n                },\r\n                \"SupInfo\": [\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  },\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  }\r\n                ],\r\n                \"CustomerPicture\": {\r\n                  \"PictureName\": \"sample string 1\",\r\n                  \"PictureExtension\": \"sample string 2\",\r\n                  \"PictureData\": \"sample string 3\"\r\n                },\r\n                \"CustomerNotes\": [\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  },\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  }\r\n                ]\r\n              },\r\n              \"GuestRef\": \"sample string 1\",\r\n              \"GuestCtcID\": 2\r\n            },\r\n            {\r\n              \"GuestDetails\": {\r\n                \"PersonalInfo\": {\r\n                  \"Title\": \"sample string 1\",\r\n                  \"FirstName\": \"sample string 2\",\r\n                  \"LastName\": \"sample string 3\",\r\n                  \"Email\": \"sample string 4\",\r\n                  \"MobilePhone\": \"sample string 5\",\r\n                  \"Phone\": \"sample string 6\",\r\n                  \"BirthDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"JobTitle\": \"sample string 7\",\r\n                  \"ParentEmailAddress\": \"sample string 8\",\r\n                  \"Gender\": 0,\r\n                  \"CustomerAddress\": {\r\n                    \"Address1\": \"sample string 2\",\r\n                    \"Address2\": \"sample string 3\",\r\n                    \"Address3\": \"sample string 4\",\r\n                    \"City\": \"sample string 5\",\r\n                    \"PostCode\": \"sample string 6\",\r\n                    \"StateName\": \"sample string 7\",\r\n                    \"CountryCode\": \"sample string 8\",\r\n                    \"Phone\": \"sample string 9\"\r\n                  },\r\n                  \"DoNotExport\": true\r\n                },\r\n                \"ExternalIdentifier\": {\r\n                  \"ExternalID\": \"sample string 1\",\r\n                  \"ExternalSource\": \"sample string 2\"\r\n                },\r\n                \"MarketingOptin\": {\r\n                  \"ChangeDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"EmailOptin\": true,\r\n                  \"SmsOptin\": true,\r\n                  \"MailOptin\": true,\r\n                  \"PhoneOptin\": true,\r\n                  \"PushNotificationOptin\": true,\r\n                  \"WebPushNotificationOptin\": true,\r\n                  \"WhatsAppOptin\": true,\r\n                  \"AppOptin\": true\r\n                },\r\n                \"SupInfo\": [\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  },\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  }\r\n                ],\r\n                \"CustomerPicture\": {\r\n                  \"PictureName\": \"sample string 1\",\r\n                  \"PictureExtension\": \"sample string 2\",\r\n                  \"PictureData\": \"sample string 3\"\r\n                },\r\n                \"CustomerNotes\": [\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  },\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  }\r\n                ]\r\n              },\r\n              \"GuestRef\": \"sample string 1\",\r\n              \"GuestCtcID\": 2\r\n            }\r\n          ],\r\n          \"Revenues\": [\r\n            {\r\n              \"RevenueType\": \"sample string 1\",\r\n              \"AnalysisCode\": \"sample string 2\",\r\n              \"GrossAmount\": 1.1,\r\n              \"TaxAmount\": 1.1,\r\n              \"TotalAmount\": 1.1,\r\n              \"EffectiveDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"ExpireDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n            },\r\n            {\r\n              \"RevenueType\": \"sample string 1\",\r\n              \"AnalysisCode\": \"sample string 2\",\r\n              \"GrossAmount\": 1.1,\r\n              \"TaxAmount\": 1.1,\r\n              \"TotalAmount\": 1.1,\r\n              \"EffectiveDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"ExpireDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n            }\r\n          ],\r\n          \"GuaranteeCode\": \"sample string 14\",\r\n          \"SpecialRequests\": [\r\n            {\r\n              \"RequestCode\": \"sample string 1\"\r\n            },\r\n            {\r\n              \"RequestCode\": \"sample string 1\"\r\n            }\r\n          ],\r\n          \"CancelPenalties\": [\r\n            {\r\n              \"Code\": \"sample string 1\",\r\n              \"Deadline\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"AmountPercent\": 1.1\r\n            },\r\n            {\r\n              \"Code\": \"sample string 1\",\r\n              \"Deadline\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"AmountPercent\": 1.1\r\n            }\r\n          ],\r\n          \"CustomFields\": [\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldValue\": \"sample string 2\"\r\n            },\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldValue\": \"sample string 2\"\r\n            }\r\n          ]\r\n        },\r\n        {\r\n          \"RoomRef\": \"sample string 1\",\r\n          \"RoomStatus\": 1,\r\n          \"RoomType\": \"sample string 2\",\r\n          \"RoomCapacity\": \"sample string 3\",\r\n          \"RoomCheckInDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n          \"RoomCheckOutDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n          \"RoomDiningNumber\": 6,\r\n          \"RoomNightsNumber\": 7,\r\n          \"RoomAdultsNumber\": 8,\r\n          \"RoomChildrenNumber\": 9,\r\n          \"RoomInfantsNumber\": 10,\r\n          \"RoomPetsNumber\": 11,\r\n          \"RoomRatePlan\": \"sample string 12\",\r\n          \"RoomVoucherCode\": \"sample string 13\",\r\n          \"RoomEstimatedSpend\": 1.1,\r\n          \"Guests\": [\r\n            {\r\n              \"GuestDetails\": {\r\n                \"PersonalInfo\": {\r\n                  \"Title\": \"sample string 1\",\r\n                  \"FirstName\": \"sample string 2\",\r\n                  \"LastName\": \"sample string 3\",\r\n                  \"Email\": \"sample string 4\",\r\n                  \"MobilePhone\": \"sample string 5\",\r\n                  \"Phone\": \"sample string 6\",\r\n                  \"BirthDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"JobTitle\": \"sample string 7\",\r\n                  \"ParentEmailAddress\": \"sample string 8\",\r\n                  \"Gender\": 0,\r\n                  \"CustomerAddress\": {\r\n                    \"Address1\": \"sample string 2\",\r\n                    \"Address2\": \"sample string 3\",\r\n                    \"Address3\": \"sample string 4\",\r\n                    \"City\": \"sample string 5\",\r\n                    \"PostCode\": \"sample string 6\",\r\n                    \"StateName\": \"sample string 7\",\r\n                    \"CountryCode\": \"sample string 8\",\r\n                    \"Phone\": \"sample string 9\"\r\n                  },\r\n                  \"DoNotExport\": true\r\n                },\r\n                \"ExternalIdentifier\": {\r\n                  \"ExternalID\": \"sample string 1\",\r\n                  \"ExternalSource\": \"sample string 2\"\r\n                },\r\n                \"MarketingOptin\": {\r\n                  \"ChangeDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"EmailOptin\": true,\r\n                  \"SmsOptin\": true,\r\n                  \"MailOptin\": true,\r\n                  \"PhoneOptin\": true,\r\n                  \"PushNotificationOptin\": true,\r\n                  \"WebPushNotificationOptin\": true,\r\n                  \"WhatsAppOptin\": true,\r\n                  \"AppOptin\": true\r\n                },\r\n                \"SupInfo\": [\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  },\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  }\r\n                ],\r\n                \"CustomerPicture\": {\r\n                  \"PictureName\": \"sample string 1\",\r\n                  \"PictureExtension\": \"sample string 2\",\r\n                  \"PictureData\": \"sample string 3\"\r\n                },\r\n                \"CustomerNotes\": [\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  },\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  }\r\n                ]\r\n              },\r\n              \"GuestRef\": \"sample string 1\",\r\n              \"GuestCtcID\": 2\r\n            },\r\n            {\r\n              \"GuestDetails\": {\r\n                \"PersonalInfo\": {\r\n                  \"Title\": \"sample string 1\",\r\n                  \"FirstName\": \"sample string 2\",\r\n                  \"LastName\": \"sample string 3\",\r\n                  \"Email\": \"sample string 4\",\r\n                  \"MobilePhone\": \"sample string 5\",\r\n                  \"Phone\": \"sample string 6\",\r\n                  \"BirthDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"JobTitle\": \"sample string 7\",\r\n                  \"ParentEmailAddress\": \"sample string 8\",\r\n                  \"Gender\": 0,\r\n                  \"CustomerAddress\": {\r\n                    \"Address1\": \"sample string 2\",\r\n                    \"Address2\": \"sample string 3\",\r\n                    \"Address3\": \"sample string 4\",\r\n                    \"City\": \"sample string 5\",\r\n                    \"PostCode\": \"sample string 6\",\r\n                    \"StateName\": \"sample string 7\",\r\n                    \"CountryCode\": \"sample string 8\",\r\n                    \"Phone\": \"sample string 9\"\r\n                  },\r\n                  \"DoNotExport\": true\r\n                },\r\n                \"ExternalIdentifier\": {\r\n                  \"ExternalID\": \"sample string 1\",\r\n                  \"ExternalSource\": \"sample string 2\"\r\n                },\r\n                \"MarketingOptin\": {\r\n                  \"ChangeDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n                  \"EmailOptin\": true,\r\n                  \"SmsOptin\": true,\r\n                  \"MailOptin\": true,\r\n                  \"PhoneOptin\": true,\r\n                  \"PushNotificationOptin\": true,\r\n                  \"WebPushNotificationOptin\": true,\r\n                  \"WhatsAppOptin\": true,\r\n                  \"AppOptin\": true\r\n                },\r\n                \"SupInfo\": [\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  },\r\n                  {\r\n                    \"FieldName\": \"sample string 1\",\r\n                    \"FieldContent\": \"sample string 4\"\r\n                  }\r\n                ],\r\n                \"CustomerPicture\": {\r\n                  \"PictureName\": \"sample string 1\",\r\n                  \"PictureExtension\": \"sample string 2\",\r\n                  \"PictureData\": \"sample string 3\"\r\n                },\r\n                \"CustomerNotes\": [\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  },\r\n                  {\r\n                    \"Note\": \"sample string 1\",\r\n                    \"CreateDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n                  }\r\n                ]\r\n              },\r\n              \"GuestRef\": \"sample string 1\",\r\n              \"GuestCtcID\": 2\r\n            }\r\n          ],\r\n          \"Revenues\": [\r\n            {\r\n              \"RevenueType\": \"sample string 1\",\r\n              \"AnalysisCode\": \"sample string 2\",\r\n              \"GrossAmount\": 1.1,\r\n              \"TaxAmount\": 1.1,\r\n              \"TotalAmount\": 1.1,\r\n              \"EffectiveDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"ExpireDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n            },\r\n            {\r\n              \"RevenueType\": \"sample string 1\",\r\n              \"AnalysisCode\": \"sample string 2\",\r\n              \"GrossAmount\": 1.1,\r\n              \"TaxAmount\": 1.1,\r\n              \"TotalAmount\": 1.1,\r\n              \"EffectiveDate\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"ExpireDate\": \"2026-03-25T07:30:08.8728242+00:00\"\r\n            }\r\n          ],\r\n          \"GuaranteeCode\": \"sample string 14\",\r\n          \"SpecialRequests\": [\r\n            {\r\n              \"RequestCode\": \"sample string 1\"\r\n            },\r\n            {\r\n              \"RequestCode\": \"sample string 1\"\r\n            }\r\n          ],\r\n          \"CancelPenalties\": [\r\n            {\r\n              \"Code\": \"sample string 1\",\r\n              \"Deadline\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"AmountPercent\": 1.1\r\n            },\r\n            {\r\n              \"Code\": \"sample string 1\",\r\n              \"Deadline\": \"2026-03-25T07:30:08.8728242+00:00\",\r\n              \"AmountPercent\": 1.1\r\n            }\r\n          ],\r\n          \"CustomFields\": [\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldValue\": \"sample string 2\"\r\n            },\r\n            {\r\n              \"FieldName\": \"sample string 1\",\r\n              \"FieldValue\": \"sample string 2\"\r\n            }\r\n          ]\r\n        }\r\n      ],\r\n      \"LinkedBookings\": [\r\n        {\r\n          \"LinkedBookingRef\": \"sample string 1\",\r\n          \"SupplierCode\": 1\r\n        },\r\n        {\r\n          \"LinkedBookingRef\": \"sample string 1\",\r\n          \"SupplierCode\": 1\r\n        }\r\n      ],\r\n      \"Notes\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"MarketSegment\": \"sample string 10\",\r\n      \"ModifyURL\": \"sample string 11\",\r\n      \"BookingNightsNumber\": 12,\r\n      \"ExternalBookingReference\": \"sample string 13\",\r\n      \"SourceOfBusiness\": \"sample string 14\"\r\n    }\r\n  ],\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"0516577e-fd7c-444a-81a9-dc45bef2fc6b"},{"name":"Patch","id":"e1486bf3-d441-4f88-ad09-3c6aee4bb0bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/HotelBooking/Patch?HotelBookingRef=HotelBookingRef-value","description":" <p>\n            Patch hotel booking \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>HotelBookingPatch Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingNightsNumber</td><td>Int32 (nullable)</td><td>Hotel booking number of nights.</td><td>False</td></tr><tr><td>ChannelID</td><td>String</td><td>Hotel booking channel ID.</td><td>False</td></tr><tr><td>CheckInDate</td><td>DateTime (nullable)</td><td>Hotel booking checkin date.</td><td>False</td></tr><tr><td>CheckOutDate</td><td>DateTime (nullable)</td><td>Hotel booking checkout date.</td><td>False</td></tr><tr><td>CreationDate</td><td>DateTime (nullable)</td><td>Hotel booking creation date.</td><td>False</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td>Hotel booking list of custom fields.</td><td>False</td></tr><tr><td>LastUpdatedDate</td><td>DateTime (nullable)</td><td>Hotel booking last updated date.</td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td>Hotel booking location.</td><td>False</td></tr><tr><td>Rooms</td><td>List&lt;HotelBookingRoomPatch&gt;</td><td>Hotel booking list of rooms.</td><td>False</td></tr><tr><td>SourceOfBusiness</td><td>String</td><td></td><td>False</td></tr><tr><td>Spend</td><td>Double (nullable)</td><td>Hotel booking spend.</td><td>False</td></tr><tr><td>Status</td><td>BookingStatus (nullable)</td><td>Hotel booking status.</td><td>False</td></tr><tr><td><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td><h4>HotelBookingRoomPatch Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CancelPenalties</td><td>List&lt;RoomCancelPenalty&gt;</td><td></td><td>False</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td></td><td>False</td></tr><tr><td>GuaranteeCode</td><td>String</td><td></td><td>False</td></tr><tr><td>Guests</td><td>List&lt;Guest&gt;</td><td></td><td>False</td></tr><tr><td>Revenues</td><td>List&lt;RoomRevenue&gt;</td><td></td><td>False</td></tr><tr><td>RoomAdultsNumber</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>RoomCapacity</td><td>String</td><td></td><td>False</td></tr><tr><td>RoomCheckInDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>RoomCheckOutDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>RoomChildrenNumber</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>RoomDiningNumber</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>RoomEstimatedSpend</td><td>Double (nullable)</td><td></td><td>False</td></tr><tr><td>RoomInfantsNumber</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>RoomNightsNumber</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>RoomPetsNumber</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>RoomRatePlan</td><td>String</td><td></td><td>False</td></tr><tr><td>RoomRef</td><td>String</td><td></td><td>False</td></tr><tr><td>RoomStatus</td><td>BookingStatus (nullable)</td><td></td><td>False</td></tr><tr><td>RoomType</td><td>String</td><td></td><td>False</td></tr><tr><td>RoomVoucherCode</td><td>String</td><td></td><td>False</td></tr><tr><td>SpecialRequests</td><td>List&lt;RoomSpecialRequest&gt;</td><td></td><td>False</td></tr><tr><td><h4>RoomCancelPenalty Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPercent</td><td>Double (nullable)</td><td></td><td>False</td></tr><tr><td>Code</td><td>String</td><td></td><td>False</td></tr><tr><td>Deadline</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td><h4>Guest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>GuestCtcID</td><td>Int32</td><td>Hotel Room Guest Ctcid</td><td>False</td></tr><tr><td>GuestDetails</td><td>CustomerPayload</td><td>Hotel Room Guest Details</td><td>False</td></tr><tr><td>GuestRef</td><td>String</td><td>Hotel Room Guest Reference</td><td>False</td></tr><tr><td><h4>CustomerPayload Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>RoomRevenue Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AnalysisCode</td><td>String</td><td>Room Revenue Analysis Code</td><td>False</td></tr><tr><td>EffectiveDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ExpireDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>GrossAmount</td><td>Double (nullable)</td><td>Room Revenue Gross Amount</td><td>False</td></tr><tr><td>RevenueType</td><td>String</td><td>Room Revenue Type</td><td>False</td></tr><tr><td>TaxAmount</td><td>Double (nullable)</td><td>Room Revenue Tax Amount</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double (nullable)</td><td>Room Revenue Total Amount</td><td>False</td></tr><tr><td><h4>RoomSpecialRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>RequestCode</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>HotelBookingOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>HotelBookingID</td><td>Int64 (nullable)</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","HotelBooking","Patch"],"host":["{{Host}}"],"query":[{"key":"HotelBookingRef","value":"HotelBookingRef-value"}],"variable":[]}},"response":[{"id":"f9c061d8-d6a2-4e97-8819-66e310dea655","name":"api/HotelBooking/Patch?HotelBookingRef={HotelBookingRef} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/HotelBooking/Patch?HotelBookingRef=HotelBookingRef-value","protocol":"https","host":["{{Host}}"],"path":["api","HotelBooking","Patch"],"query":[{"key":"HotelBookingRef","value":"HotelBookingRef-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Patch hotel booking \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>HotelBookingPatch Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingNightsNumber</td><td>Int32 (nullable)</td><td>Hotel booking number of nights.</td><td>False</td></tr><tr><td>ChannelID</td><td>String</td><td>Hotel booking channel ID.</td><td>False</td></tr><tr><td>CheckInDate</td><td>DateTime (nullable)</td><td>Hotel booking checkin date.</td><td>False</td></tr><tr><td>CheckOutDate</td><td>DateTime (nullable)</td><td>Hotel booking checkout date.</td><td>False</td></tr><tr><td>CreationDate</td><td>DateTime (nullable)</td><td>Hotel booking creation date.</td><td>False</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td>Hotel booking list of custom fields.</td><td>False</td></tr><tr><td>LastUpdatedDate</td><td>DateTime (nullable)</td><td>Hotel booking last updated date.</td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td>Hotel booking location.</td><td>False</td></tr><tr><td>Rooms</td><td>List&lt;HotelBookingRoomPatch&gt;</td><td>Hotel booking list of rooms.</td><td>False</td></tr><tr><td>SourceOfBusiness</td><td>String</td><td></td><td>False</td></tr><tr><td>Spend</td><td>Double (nullable)</td><td>Hotel booking spend.</td><td>False</td></tr><tr><td>Status</td><td>BookingStatus (nullable)</td><td>Hotel booking status.</td><td>False</td></tr><tr><td colspan=4><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td colspan=4><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td colspan=4><h4>HotelBookingRoomPatch Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CancelPenalties</td><td>List&lt;RoomCancelPenalty&gt;</td><td></td><td>False</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td></td><td>False</td></tr><tr><td>GuaranteeCode</td><td>String</td><td></td><td>False</td></tr><tr><td>Guests</td><td>List&lt;Guest&gt;</td><td></td><td>False</td></tr><tr><td>Revenues</td><td>List&lt;RoomRevenue&gt;</td><td></td><td>False</td></tr><tr><td>RoomAdultsNumber</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>RoomCapacity</td><td>String</td><td></td><td>False</td></tr><tr><td>RoomCheckInDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>RoomCheckOutDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>RoomChildrenNumber</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>RoomDiningNumber</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>RoomEstimatedSpend</td><td>Double (nullable)</td><td></td><td>False</td></tr><tr><td>RoomInfantsNumber</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>RoomNightsNumber</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>RoomPetsNumber</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>RoomRatePlan</td><td>String</td><td></td><td>False</td></tr><tr><td>RoomRef</td><td>String</td><td></td><td>False</td></tr><tr><td>RoomStatus</td><td>BookingStatus (nullable)</td><td></td><td>False</td></tr><tr><td>RoomType</td><td>String</td><td></td><td>False</td></tr><tr><td>RoomVoucherCode</td><td>String</td><td></td><td>False</td></tr><tr><td>SpecialRequests</td><td>List&lt;RoomSpecialRequest&gt;</td><td></td><td>False</td></tr><tr><td colspan=4><h4>RoomCancelPenalty Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPercent</td><td>Double (nullable)</td><td></td><td>False</td></tr><tr><td>Code</td><td>String</td><td></td><td>False</td></tr><tr><td>Deadline</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td colspan=4><h4>Guest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>GuestCtcID</td><td>Int32</td><td>Hotel Room Guest Ctcid</td><td>False</td></tr><tr><td>GuestDetails</td><td>CustomerPayload</td><td>Hotel Room Guest Details</td><td>False</td></tr><tr><td>GuestRef</td><td>String</td><td>Hotel Room Guest Reference</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPayload Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td colspan=4><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td colspan=4><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td colspan=4><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td colspan=4><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>RoomRevenue Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AnalysisCode</td><td>String</td><td>Room Revenue Analysis Code</td><td>False</td></tr><tr><td>EffectiveDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ExpireDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>GrossAmount</td><td>Double (nullable)</td><td>Room Revenue Gross Amount</td><td>False</td></tr><tr><td>RevenueType</td><td>String</td><td>Room Revenue Type</td><td>False</td></tr><tr><td>TaxAmount</td><td>Double (nullable)</td><td>Room Revenue Tax Amount</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double (nullable)</td><td>Room Revenue Total Amount</td><td>False</td></tr><tr><td colspan=4><h4>RoomSpecialRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>RequestCode</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>HotelBookingOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>HotelBookingID</td><td>Int64 (nullable)</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"HotelBookingID\": 1,\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"e1486bf3-d441-4f88-ad09-3c6aee4bb0bb"},{"name":"Post","id":"7f786e21-6d50-411d-9441-ca11c01ccea4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"BookerDetails\": {\r\n    \"PersonalInfo\": {\r\n      \"Title\": \"sample string 1\",\r\n      \"FirstName\": \"sample string 2\",\r\n      \"LastName\": \"sample string 3\",\r\n      \"Email\": \"sample string 4\",\r\n      \"MobilePhone\": \"sample string 5\",\r\n      \"Phone\": \"sample string 6\",\r\n      \"BirthDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n      \"JobTitle\": \"sample string 7\",\r\n      \"ParentEmailAddress\": \"sample string 8\",\r\n      \"Gender\": 0,\r\n      \"CustomerAddress\": {\r\n        \"Address1\": \"sample string 2\",\r\n        \"Address2\": \"sample string 3\",\r\n        \"Address3\": \"sample string 4\",\r\n        \"City\": \"sample string 5\",\r\n        \"PostCode\": \"sample string 6\",\r\n        \"StateName\": \"sample string 7\",\r\n        \"CountryCode\": \"sample string 8\",\r\n        \"Phone\": \"sample string 9\"\r\n      },\r\n      \"DoNotExport\": true\r\n    },\r\n    \"ExternalIdentifier\": {\r\n      \"ExternalID\": \"sample string 1\",\r\n      \"ExternalSource\": \"sample string 2\"\r\n    },\r\n    \"MarketingOptin\": {\r\n      \"ChangeDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n      \"EmailOptin\": true,\r\n      \"SmsOptin\": true,\r\n      \"MailOptin\": true,\r\n      \"PhoneOptin\": true,\r\n      \"PushNotificationOptin\": true,\r\n      \"WebPushNotificationOptin\": true,\r\n      \"WhatsAppOptin\": true,\r\n      \"AppOptin\": true\r\n    },\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"CustomerPicture\": {\r\n      \"PictureName\": \"sample string 1\",\r\n      \"PictureExtension\": \"sample string 2\",\r\n      \"PictureData\": \"sample string 3\"\r\n    },\r\n    \"CustomerNotes\": [\r\n      {\r\n        \"Note\": \"sample string 1\",\r\n        \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n      },\r\n      {\r\n        \"Note\": \"sample string 1\",\r\n        \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n      }\r\n    ]\r\n  },\r\n  \"BookerRef\": \"sample string 1\",\r\n  \"BookerCtcID\": 2,\r\n  \"HotelBookingRef\": \"sample string 3\",\r\n  \"CreationDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n  \"LastUpdatedDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n  \"Reason\": \"sample string 5\",\r\n  \"ChannelID\": \"sample string 6\",\r\n  \"Status\": 1,\r\n  \"IsOTA\": true,\r\n  \"CheckInDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n  \"CheckOutDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n  \"Location\": {\r\n    \"ActeolSiteID\": 1,\r\n    \"ExternalLocationID\": \"sample string 2\"\r\n  },\r\n  \"Spend\": 1.1,\r\n  \"EstimatedSpend\": 1.1,\r\n  \"OrderUniqueID\": 1,\r\n  \"CustomFields\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldValue\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldValue\": \"sample string 2\"\r\n    }\r\n  ],\r\n  \"Rooms\": [\r\n    {\r\n      \"RoomRef\": \"sample string 1\",\r\n      \"RoomStatus\": 1,\r\n      \"RoomType\": \"sample string 2\",\r\n      \"RoomCapacity\": \"sample string 3\",\r\n      \"RoomCheckInDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n      \"RoomCheckOutDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n      \"RoomDiningNumber\": 6,\r\n      \"RoomNightsNumber\": 7,\r\n      \"RoomAdultsNumber\": 8,\r\n      \"RoomChildrenNumber\": 9,\r\n      \"RoomInfantsNumber\": 10,\r\n      \"RoomPetsNumber\": 11,\r\n      \"RoomRatePlan\": \"sample string 12\",\r\n      \"RoomVoucherCode\": \"sample string 13\",\r\n      \"RoomEstimatedSpend\": 1.1,\r\n      \"Guests\": [\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        },\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        }\r\n      ],\r\n      \"Revenues\": [\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n        },\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n        }\r\n      ],\r\n      \"GuaranteeCode\": \"sample string 14\",\r\n      \"SpecialRequests\": [\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        },\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        }\r\n      ],\r\n      \"CancelPenalties\": [\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        },\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        }\r\n      ],\r\n      \"CustomFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"RoomRef\": \"sample string 1\",\r\n      \"RoomStatus\": 1,\r\n      \"RoomType\": \"sample string 2\",\r\n      \"RoomCapacity\": \"sample string 3\",\r\n      \"RoomCheckInDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n      \"RoomCheckOutDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n      \"RoomDiningNumber\": 6,\r\n      \"RoomNightsNumber\": 7,\r\n      \"RoomAdultsNumber\": 8,\r\n      \"RoomChildrenNumber\": 9,\r\n      \"RoomInfantsNumber\": 10,\r\n      \"RoomPetsNumber\": 11,\r\n      \"RoomRatePlan\": \"sample string 12\",\r\n      \"RoomVoucherCode\": \"sample string 13\",\r\n      \"RoomEstimatedSpend\": 1.1,\r\n      \"Guests\": [\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        },\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        }\r\n      ],\r\n      \"Revenues\": [\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n        },\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n        }\r\n      ],\r\n      \"GuaranteeCode\": \"sample string 14\",\r\n      \"SpecialRequests\": [\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        },\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        }\r\n      ],\r\n      \"CancelPenalties\": [\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        },\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        }\r\n      ],\r\n      \"CustomFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"LinkedBookings\": [\r\n    {\r\n      \"LinkedBookingRef\": \"sample string 1\",\r\n      \"SupplierCode\": 1\r\n    },\r\n    {\r\n      \"LinkedBookingRef\": \"sample string 1\",\r\n      \"SupplierCode\": 1\r\n    }\r\n  ],\r\n  \"Notes\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"MarketSegment\": \"sample string 10\",\r\n  \"ModifyURL\": \"sample string 11\",\r\n  \"BookingNightsNumber\": 12,\r\n  \"ExternalBookingReference\": \"sample string 13\",\r\n  \"SourceOfBusiness\": \"sample string 14\"\r\n}"},"url":"https://{{Host}}/api/HotelBooking/Post","description":" <p>\n            Post hotel booking \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>PostHotelBookingPayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookerCtcID</td><td>Int32</td><td>Hotel Booker Ctcid</td><td>False</td></tr><tr><td>BookerDetails</td><td>CustomerPayload</td><td>Hotel Booker Details</td><td>False</td></tr><tr><td>BookerRef</td><td>String</td><td>Hotel Booker Reference</td><td>False</td></tr><tr><td>BookingNightsNumber</td><td>Int32</td><td>Booking Nights Number</td><td>False</td></tr><tr><td>ChannelID</td><td>String</td><td>Hotel Booking Channel ID</td><td>False</td></tr><tr><td>CheckInDate</td><td>DateTime</td><td>Hotel Booking CheckIn Date</td><td>True</td></tr><tr><td>CheckOutDate</td><td>DateTime</td><td>Hotel Booking CheckOut Date</td><td>True</td></tr><tr><td>CreationDate</td><td>DateTime</td><td>Hotel Booking Date</td><td>True</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td>Collection of extra booking informations</td><td>False</td></tr><tr><td>EstimatedSpend</td><td>Double (nullable)</td><td>Hotel Booking Estimated Spend</td><td>False</td></tr><tr><td>ExternalBookingReference</td><td>String</td><td>External Booking Reference</td><td>False</td></tr><tr><td>HotelBookingRef</td><td>String</td><td>Internal PMS Hotel Booking Reference</td><td>True</td></tr><tr><td>IsOTA</td><td>Boolean</td><td>Hotel Booking Is OTA</td><td>False</td></tr><tr><td>LastUpdatedDate</td><td>DateTime (nullable)</td><td>Hotel Booking Last Updated Date</td><td>False</td></tr><tr><td>LinkedBookings</td><td>List&lt;LinkedBooking&gt;</td><td>Other Bookings</td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td>Hotel Booking Location</td><td>False</td></tr><tr><td>MarketSegment</td><td>String</td><td>Hotel Booking Market Segment</td><td>False</td></tr><tr><td>ModifyURL</td><td>String</td><td>Hotel Booking Modify URL</td><td>False</td></tr><tr><td>Notes</td><td>List&lt;String&gt;</td><td>Booking Notes</td><td>False</td></tr><tr><td>OrderUniqueID</td><td>Int64 (nullable)</td><td>Hotel Booking Transaction ID</td><td>False</td></tr><tr><td>Reason</td><td>String</td><td>Hotel Booking Reason</td><td>False</td></tr><tr><td>Rooms</td><td>List&lt;HotelBookingRoom&gt;</td><td>List of Rooms</td><td>False</td></tr><tr><td>SourceOfBusiness</td><td>String</td><td></td><td>False</td></tr><tr><td>Spend</td><td>Double (nullable)</td><td>Hotel Booking Spend</td><td>False</td></tr><tr><td>Status</td><td>BookingStatus</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td><td>True</td></tr><tr><td><h4>CustomerPayload Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td><h4>LinkedBooking Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>LinkedBookingRef</td><td>String</td><td>Linked Booking Reference</td><td>True</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Linked Booking Supplier</td><td>False</td></tr><tr><td><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td><h4>HotelBookingRoom Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CancelPenalties</td><td>List&lt;RoomCancelPenalty&gt;</td><td></td><td>False</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td></td><td>False</td></tr><tr><td>GuaranteeCode</td><td>String</td><td></td><td>False</td></tr><tr><td>Guests</td><td>List&lt;Guest&gt;</td><td>Room Guests</td><td>False</td></tr><tr><td>Revenues</td><td>List&lt;RoomRevenue&gt;</td><td>Room Revenues</td><td>False</td></tr><tr><td>RoomAdultsNumber</td><td>Int32</td><td>Room Adults Number</td><td>False</td></tr><tr><td>RoomCapacity</td><td>String</td><td>Hotel Booking Room Capacity</td><td>False</td></tr><tr><td>RoomCheckInDate</td><td>DateTime</td><td>Room CheckIn Date</td><td>False</td></tr><tr><td>RoomCheckOutDate</td><td>DateTime</td><td>Room CheckOut Date</td><td>False</td></tr><tr><td>RoomChildrenNumber</td><td>Int32</td><td>Room Children Number</td><td>False</td></tr><tr><td>RoomDiningNumber</td><td>Int32</td><td>Room Dining Number</td><td>False</td></tr><tr><td>RoomEstimatedSpend</td><td>Double (nullable)</td><td>Room Estimated Spend</td><td>False</td></tr><tr><td>RoomInfantsNumber</td><td>Int32</td><td>Room Infants Number</td><td>False</td></tr><tr><td>RoomNightsNumber</td><td>Int32</td><td>Room Nights Number</td><td>False</td></tr><tr><td>RoomPetsNumber</td><td>Int32</td><td>Room Pets Number</td><td>False</td></tr><tr><td>RoomRatePlan</td><td>String</td><td>Room Rate Plan</td><td>False</td></tr><tr><td>RoomRef</td><td>String</td><td>Hotel Booking Room Reference</td><td>True</td></tr><tr><td>RoomStatus</td><td>BookingStatus</td><td>Hotel Booking Room Status \n            Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td><td>False</td></tr><tr><td>RoomType</td><td>String</td><td>Hotel Booking Room Type</td><td>False</td></tr><tr><td>RoomVoucherCode</td><td>String</td><td>Room Voucher Code</td><td>False</td></tr><tr><td>SpecialRequests</td><td>List&lt;RoomSpecialRequest&gt;</td><td></td><td>False</td></tr><tr><td><h4>RoomCancelPenalty Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPercent</td><td>Double (nullable)</td><td></td><td>False</td></tr><tr><td>Code</td><td>String</td><td></td><td>False</td></tr><tr><td>Deadline</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td><h4>Guest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>GuestCtcID</td><td>Int32</td><td>Hotel Room Guest Ctcid</td><td>False</td></tr><tr><td>GuestDetails</td><td>CustomerPayload</td><td>Hotel Room Guest Details</td><td>False</td></tr><tr><td>GuestRef</td><td>String</td><td>Hotel Room Guest Reference</td><td>False</td></tr><tr><td><h4>CustomerPayload Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>RoomRevenue Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AnalysisCode</td><td>String</td><td>Room Revenue Analysis Code</td><td>False</td></tr><tr><td>EffectiveDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ExpireDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>GrossAmount</td><td>Double (nullable)</td><td>Room Revenue Gross Amount</td><td>False</td></tr><tr><td>RevenueType</td><td>String</td><td>Room Revenue Type</td><td>False</td></tr><tr><td>TaxAmount</td><td>Double (nullable)</td><td>Room Revenue Tax Amount</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double (nullable)</td><td>Room Revenue Total Amount</td><td>False</td></tr><tr><td><h4>RoomSpecialRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>RequestCode</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>HotelBookingOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>HotelBookingID</td><td>Int64 (nullable)</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","HotelBooking","Post"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"4f8c45f7-55e1-4e9d-a34a-d47b1cd88c7f","name":"api/HotelBooking/Post Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"BookerDetails\": {\r\n    \"PersonalInfo\": {\r\n      \"Title\": \"sample string 1\",\r\n      \"FirstName\": \"sample string 2\",\r\n      \"LastName\": \"sample string 3\",\r\n      \"Email\": \"sample string 4\",\r\n      \"MobilePhone\": \"sample string 5\",\r\n      \"Phone\": \"sample string 6\",\r\n      \"BirthDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n      \"JobTitle\": \"sample string 7\",\r\n      \"ParentEmailAddress\": \"sample string 8\",\r\n      \"Gender\": 0,\r\n      \"CustomerAddress\": {\r\n        \"Address1\": \"sample string 2\",\r\n        \"Address2\": \"sample string 3\",\r\n        \"Address3\": \"sample string 4\",\r\n        \"City\": \"sample string 5\",\r\n        \"PostCode\": \"sample string 6\",\r\n        \"StateName\": \"sample string 7\",\r\n        \"CountryCode\": \"sample string 8\",\r\n        \"Phone\": \"sample string 9\"\r\n      },\r\n      \"DoNotExport\": true\r\n    },\r\n    \"ExternalIdentifier\": {\r\n      \"ExternalID\": \"sample string 1\",\r\n      \"ExternalSource\": \"sample string 2\"\r\n    },\r\n    \"MarketingOptin\": {\r\n      \"ChangeDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n      \"EmailOptin\": true,\r\n      \"SmsOptin\": true,\r\n      \"MailOptin\": true,\r\n      \"PhoneOptin\": true,\r\n      \"PushNotificationOptin\": true,\r\n      \"WebPushNotificationOptin\": true,\r\n      \"WhatsAppOptin\": true,\r\n      \"AppOptin\": true\r\n    },\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"CustomerPicture\": {\r\n      \"PictureName\": \"sample string 1\",\r\n      \"PictureExtension\": \"sample string 2\",\r\n      \"PictureData\": \"sample string 3\"\r\n    },\r\n    \"CustomerNotes\": [\r\n      {\r\n        \"Note\": \"sample string 1\",\r\n        \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n      },\r\n      {\r\n        \"Note\": \"sample string 1\",\r\n        \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n      }\r\n    ]\r\n  },\r\n  \"BookerRef\": \"sample string 1\",\r\n  \"BookerCtcID\": 2,\r\n  \"HotelBookingRef\": \"sample string 3\",\r\n  \"CreationDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n  \"LastUpdatedDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n  \"Reason\": \"sample string 5\",\r\n  \"ChannelID\": \"sample string 6\",\r\n  \"Status\": 1,\r\n  \"IsOTA\": true,\r\n  \"CheckInDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n  \"CheckOutDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n  \"Location\": {\r\n    \"ActeolSiteID\": 1,\r\n    \"ExternalLocationID\": \"sample string 2\"\r\n  },\r\n  \"Spend\": 1.1,\r\n  \"EstimatedSpend\": 1.1,\r\n  \"OrderUniqueID\": 1,\r\n  \"CustomFields\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldValue\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldValue\": \"sample string 2\"\r\n    }\r\n  ],\r\n  \"Rooms\": [\r\n    {\r\n      \"RoomRef\": \"sample string 1\",\r\n      \"RoomStatus\": 1,\r\n      \"RoomType\": \"sample string 2\",\r\n      \"RoomCapacity\": \"sample string 3\",\r\n      \"RoomCheckInDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n      \"RoomCheckOutDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n      \"RoomDiningNumber\": 6,\r\n      \"RoomNightsNumber\": 7,\r\n      \"RoomAdultsNumber\": 8,\r\n      \"RoomChildrenNumber\": 9,\r\n      \"RoomInfantsNumber\": 10,\r\n      \"RoomPetsNumber\": 11,\r\n      \"RoomRatePlan\": \"sample string 12\",\r\n      \"RoomVoucherCode\": \"sample string 13\",\r\n      \"RoomEstimatedSpend\": 1.1,\r\n      \"Guests\": [\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        },\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        }\r\n      ],\r\n      \"Revenues\": [\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n        },\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n        }\r\n      ],\r\n      \"GuaranteeCode\": \"sample string 14\",\r\n      \"SpecialRequests\": [\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        },\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        }\r\n      ],\r\n      \"CancelPenalties\": [\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        },\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        }\r\n      ],\r\n      \"CustomFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"RoomRef\": \"sample string 1\",\r\n      \"RoomStatus\": 1,\r\n      \"RoomType\": \"sample string 2\",\r\n      \"RoomCapacity\": \"sample string 3\",\r\n      \"RoomCheckInDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n      \"RoomCheckOutDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n      \"RoomDiningNumber\": 6,\r\n      \"RoomNightsNumber\": 7,\r\n      \"RoomAdultsNumber\": 8,\r\n      \"RoomChildrenNumber\": 9,\r\n      \"RoomInfantsNumber\": 10,\r\n      \"RoomPetsNumber\": 11,\r\n      \"RoomRatePlan\": \"sample string 12\",\r\n      \"RoomVoucherCode\": \"sample string 13\",\r\n      \"RoomEstimatedSpend\": 1.1,\r\n      \"Guests\": [\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        },\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        }\r\n      ],\r\n      \"Revenues\": [\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n        },\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:08.9665648+00:00\"\r\n        }\r\n      ],\r\n      \"GuaranteeCode\": \"sample string 14\",\r\n      \"SpecialRequests\": [\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        },\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        }\r\n      ],\r\n      \"CancelPenalties\": [\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        },\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:08.9665648+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        }\r\n      ],\r\n      \"CustomFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"LinkedBookings\": [\r\n    {\r\n      \"LinkedBookingRef\": \"sample string 1\",\r\n      \"SupplierCode\": 1\r\n    },\r\n    {\r\n      \"LinkedBookingRef\": \"sample string 1\",\r\n      \"SupplierCode\": 1\r\n    }\r\n  ],\r\n  \"Notes\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"MarketSegment\": \"sample string 10\",\r\n  \"ModifyURL\": \"sample string 11\",\r\n  \"BookingNightsNumber\": 12,\r\n  \"ExternalBookingReference\": \"sample string 13\",\r\n  \"SourceOfBusiness\": \"sample string 14\"\r\n}"},"url":"https://{{Host}}/api/HotelBooking/Post","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post hotel booking \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PostHotelBookingPayLoad Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookerCtcID</td><td>Int32</td><td>Hotel Booker Ctcid</td><td>False</td></tr><tr><td>BookerDetails</td><td>CustomerPayload</td><td>Hotel Booker Details</td><td>False</td></tr><tr><td>BookerRef</td><td>String</td><td>Hotel Booker Reference</td><td>False</td></tr><tr><td>BookingNightsNumber</td><td>Int32</td><td>Booking Nights Number</td><td>False</td></tr><tr><td>ChannelID</td><td>String</td><td>Hotel Booking Channel ID</td><td>False</td></tr><tr><td>CheckInDate</td><td>DateTime</td><td>Hotel Booking CheckIn Date</td><td>True</td></tr><tr><td>CheckOutDate</td><td>DateTime</td><td>Hotel Booking CheckOut Date</td><td>True</td></tr><tr><td>CreationDate</td><td>DateTime</td><td>Hotel Booking Date</td><td>True</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td>Collection of extra booking informations</td><td>False</td></tr><tr><td>EstimatedSpend</td><td>Double (nullable)</td><td>Hotel Booking Estimated Spend</td><td>False</td></tr><tr><td>ExternalBookingReference</td><td>String</td><td>External Booking Reference</td><td>False</td></tr><tr><td>HotelBookingRef</td><td>String</td><td>Internal PMS Hotel Booking Reference</td><td>True</td></tr><tr><td>IsOTA</td><td>Boolean</td><td>Hotel Booking Is OTA</td><td>False</td></tr><tr><td>LastUpdatedDate</td><td>DateTime (nullable)</td><td>Hotel Booking Last Updated Date</td><td>False</td></tr><tr><td>LinkedBookings</td><td>List&lt;LinkedBooking&gt;</td><td>Other Bookings</td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td>Hotel Booking Location</td><td>False</td></tr><tr><td>MarketSegment</td><td>String</td><td>Hotel Booking Market Segment</td><td>False</td></tr><tr><td>ModifyURL</td><td>String</td><td>Hotel Booking Modify URL</td><td>False</td></tr><tr><td>Notes</td><td>List&lt;String&gt;</td><td>Booking Notes</td><td>False</td></tr><tr><td>OrderUniqueID</td><td>Int64 (nullable)</td><td>Hotel Booking Transaction ID</td><td>False</td></tr><tr><td>Reason</td><td>String</td><td>Hotel Booking Reason</td><td>False</td></tr><tr><td>Rooms</td><td>List&lt;HotelBookingRoom&gt;</td><td>List of Rooms</td><td>False</td></tr><tr><td>SourceOfBusiness</td><td>String</td><td></td><td>False</td></tr><tr><td>Spend</td><td>Double (nullable)</td><td>Hotel Booking Spend</td><td>False</td></tr><tr><td>Status</td><td>BookingStatus</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td><td>True</td></tr><tr><td colspan=4><h4>CustomerPayload Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td colspan=4><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td colspan=4><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td colspan=4><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td colspan=4><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td colspan=4><h4>LinkedBooking Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>LinkedBookingRef</td><td>String</td><td>Linked Booking Reference</td><td>True</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Linked Booking Supplier</td><td>False</td></tr><tr><td colspan=4><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td colspan=4><h4>HotelBookingRoom Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CancelPenalties</td><td>List&lt;RoomCancelPenalty&gt;</td><td></td><td>False</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td></td><td>False</td></tr><tr><td>GuaranteeCode</td><td>String</td><td></td><td>False</td></tr><tr><td>Guests</td><td>List&lt;Guest&gt;</td><td>Room Guests</td><td>False</td></tr><tr><td>Revenues</td><td>List&lt;RoomRevenue&gt;</td><td>Room Revenues</td><td>False</td></tr><tr><td>RoomAdultsNumber</td><td>Int32</td><td>Room Adults Number</td><td>False</td></tr><tr><td>RoomCapacity</td><td>String</td><td>Hotel Booking Room Capacity</td><td>False</td></tr><tr><td>RoomCheckInDate</td><td>DateTime</td><td>Room CheckIn Date</td><td>False</td></tr><tr><td>RoomCheckOutDate</td><td>DateTime</td><td>Room CheckOut Date</td><td>False</td></tr><tr><td>RoomChildrenNumber</td><td>Int32</td><td>Room Children Number</td><td>False</td></tr><tr><td>RoomDiningNumber</td><td>Int32</td><td>Room Dining Number</td><td>False</td></tr><tr><td>RoomEstimatedSpend</td><td>Double (nullable)</td><td>Room Estimated Spend</td><td>False</td></tr><tr><td>RoomInfantsNumber</td><td>Int32</td><td>Room Infants Number</td><td>False</td></tr><tr><td>RoomNightsNumber</td><td>Int32</td><td>Room Nights Number</td><td>False</td></tr><tr><td>RoomPetsNumber</td><td>Int32</td><td>Room Pets Number</td><td>False</td></tr><tr><td>RoomRatePlan</td><td>String</td><td>Room Rate Plan</td><td>False</td></tr><tr><td>RoomRef</td><td>String</td><td>Hotel Booking Room Reference</td><td>True</td></tr><tr><td>RoomStatus</td><td>BookingStatus</td><td>Hotel Booking Room Status \n            Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td><td>False</td></tr><tr><td>RoomType</td><td>String</td><td>Hotel Booking Room Type</td><td>False</td></tr><tr><td>RoomVoucherCode</td><td>String</td><td>Room Voucher Code</td><td>False</td></tr><tr><td>SpecialRequests</td><td>List&lt;RoomSpecialRequest&gt;</td><td></td><td>False</td></tr><tr><td colspan=4><h4>RoomCancelPenalty Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPercent</td><td>Double (nullable)</td><td></td><td>False</td></tr><tr><td>Code</td><td>String</td><td></td><td>False</td></tr><tr><td>Deadline</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td colspan=4><h4>Guest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>GuestCtcID</td><td>Int32</td><td>Hotel Room Guest Ctcid</td><td>False</td></tr><tr><td>GuestDetails</td><td>CustomerPayload</td><td>Hotel Room Guest Details</td><td>False</td></tr><tr><td>GuestRef</td><td>String</td><td>Hotel Room Guest Reference</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPayload Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td colspan=4><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td colspan=4><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td colspan=4><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td colspan=4><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>RoomRevenue Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AnalysisCode</td><td>String</td><td>Room Revenue Analysis Code</td><td>False</td></tr><tr><td>EffectiveDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ExpireDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>GrossAmount</td><td>Double (nullable)</td><td>Room Revenue Gross Amount</td><td>False</td></tr><tr><td>RevenueType</td><td>String</td><td>Room Revenue Type</td><td>False</td></tr><tr><td>TaxAmount</td><td>Double (nullable)</td><td>Room Revenue Tax Amount</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double (nullable)</td><td>Room Revenue Total Amount</td><td>False</td></tr><tr><td colspan=4><h4>RoomSpecialRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>RequestCode</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>HotelBookingOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>HotelBookingID</td><td>Int64 (nullable)</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"HotelBookingID\": 1,\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"7f786e21-6d50-411d-9441-ca11c01ccea4"},{"name":"Put","id":"c13bdb7a-bb8c-434b-a4f6-f226dff29b4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"HotelBookingRef\": \"sample string 1\",\r\n  \"CreationDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n  \"LastUpdatedDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n  \"Reason\": \"sample string 3\",\r\n  \"ChannelID\": \"sample string 4\",\r\n  \"Status\": 1,\r\n  \"IsOTA\": true,\r\n  \"CheckInDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n  \"CheckOutDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n  \"Location\": {\r\n    \"ActeolSiteID\": 1,\r\n    \"ExternalLocationID\": \"sample string 2\"\r\n  },\r\n  \"Spend\": 1.1,\r\n  \"EstimatedSpend\": 1.1,\r\n  \"OrderUniqueID\": 1,\r\n  \"CustomFields\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldValue\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldValue\": \"sample string 2\"\r\n    }\r\n  ],\r\n  \"Rooms\": [\r\n    {\r\n      \"RoomRef\": \"sample string 1\",\r\n      \"RoomStatus\": 1,\r\n      \"RoomType\": \"sample string 2\",\r\n      \"RoomCapacity\": \"sample string 3\",\r\n      \"RoomCheckInDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n      \"RoomCheckOutDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n      \"RoomDiningNumber\": 6,\r\n      \"RoomNightsNumber\": 7,\r\n      \"RoomAdultsNumber\": 8,\r\n      \"RoomChildrenNumber\": 9,\r\n      \"RoomInfantsNumber\": 10,\r\n      \"RoomPetsNumber\": 11,\r\n      \"RoomRatePlan\": \"sample string 12\",\r\n      \"RoomVoucherCode\": \"sample string 13\",\r\n      \"RoomEstimatedSpend\": 1.1,\r\n      \"Guests\": [\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        },\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        }\r\n      ],\r\n      \"Revenues\": [\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n        },\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n        }\r\n      ],\r\n      \"GuaranteeCode\": \"sample string 14\",\r\n      \"SpecialRequests\": [\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        },\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        }\r\n      ],\r\n      \"CancelPenalties\": [\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        },\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        }\r\n      ],\r\n      \"CustomFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"RoomRef\": \"sample string 1\",\r\n      \"RoomStatus\": 1,\r\n      \"RoomType\": \"sample string 2\",\r\n      \"RoomCapacity\": \"sample string 3\",\r\n      \"RoomCheckInDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n      \"RoomCheckOutDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n      \"RoomDiningNumber\": 6,\r\n      \"RoomNightsNumber\": 7,\r\n      \"RoomAdultsNumber\": 8,\r\n      \"RoomChildrenNumber\": 9,\r\n      \"RoomInfantsNumber\": 10,\r\n      \"RoomPetsNumber\": 11,\r\n      \"RoomRatePlan\": \"sample string 12\",\r\n      \"RoomVoucherCode\": \"sample string 13\",\r\n      \"RoomEstimatedSpend\": 1.1,\r\n      \"Guests\": [\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        },\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        }\r\n      ],\r\n      \"Revenues\": [\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n        },\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n        }\r\n      ],\r\n      \"GuaranteeCode\": \"sample string 14\",\r\n      \"SpecialRequests\": [\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        },\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        }\r\n      ],\r\n      \"CancelPenalties\": [\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        },\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        }\r\n      ],\r\n      \"CustomFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"LinkedBookings\": [\r\n    {\r\n      \"LinkedBookingRef\": \"sample string 1\",\r\n      \"SupplierCode\": 1\r\n    },\r\n    {\r\n      \"LinkedBookingRef\": \"sample string 1\",\r\n      \"SupplierCode\": 1\r\n    }\r\n  ],\r\n  \"Notes\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"MarketSegment\": \"sample string 8\",\r\n  \"ModifyURL\": \"sample string 9\",\r\n  \"BookingNightsNumber\": 10,\r\n  \"ExternalBookingReference\": \"sample string 11\",\r\n  \"SourceOfBusiness\": \"sample string 12\"\r\n}"},"url":"https://{{Host}}/api/HotelBooking/Put","description":" <p>\n            Put hotel booking \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>HotelBooking Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingNightsNumber</td><td>Int32</td><td>Booking Nights Number</td><td>False</td></tr><tr><td>ChannelID</td><td>String</td><td>Hotel Booking Channel ID</td><td>False</td></tr><tr><td>CheckInDate</td><td>DateTime</td><td>Hotel Booking CheckIn Date</td><td>True</td></tr><tr><td>CheckOutDate</td><td>DateTime</td><td>Hotel Booking CheckOut Date</td><td>True</td></tr><tr><td>CreationDate</td><td>DateTime</td><td>Hotel Booking Date</td><td>True</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td>Collection of extra booking informations</td><td>False</td></tr><tr><td>EstimatedSpend</td><td>Double (nullable)</td><td>Hotel Booking Estimated Spend</td><td>False</td></tr><tr><td>ExternalBookingReference</td><td>String</td><td>External Booking Reference</td><td>False</td></tr><tr><td>HotelBookingRef</td><td>String</td><td>Internal PMS Hotel Booking Reference</td><td>True</td></tr><tr><td>IsOTA</td><td>Boolean</td><td>Hotel Booking Is OTA</td><td>False</td></tr><tr><td>LastUpdatedDate</td><td>DateTime (nullable)</td><td>Hotel Booking Last Updated Date</td><td>False</td></tr><tr><td>LinkedBookings</td><td>List&lt;LinkedBooking&gt;</td><td>Other Bookings</td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td>Hotel Booking Location</td><td>False</td></tr><tr><td>MarketSegment</td><td>String</td><td>Hotel Booking Market Segment</td><td>False</td></tr><tr><td>ModifyURL</td><td>String</td><td>Hotel Booking Modify URL</td><td>False</td></tr><tr><td>Notes</td><td>List&lt;String&gt;</td><td>Booking Notes</td><td>False</td></tr><tr><td>OrderUniqueID</td><td>Int64 (nullable)</td><td>Hotel Booking Transaction ID</td><td>False</td></tr><tr><td>Reason</td><td>String</td><td>Hotel Booking Reason</td><td>False</td></tr><tr><td>Rooms</td><td>List&lt;HotelBookingRoom&gt;</td><td>List of Rooms</td><td>False</td></tr><tr><td>SourceOfBusiness</td><td>String</td><td></td><td>False</td></tr><tr><td>Spend</td><td>Double (nullable)</td><td>Hotel Booking Spend</td><td>False</td></tr><tr><td>Status</td><td>BookingStatus</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td><td>True</td></tr><tr><td><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td><h4>LinkedBooking Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>LinkedBookingRef</td><td>String</td><td>Linked Booking Reference</td><td>True</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Linked Booking Supplier</td><td>False</td></tr><tr><td><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td><h4>HotelBookingRoom Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CancelPenalties</td><td>List&lt;RoomCancelPenalty&gt;</td><td></td><td>False</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td></td><td>False</td></tr><tr><td>GuaranteeCode</td><td>String</td><td></td><td>False</td></tr><tr><td>Guests</td><td>List&lt;Guest&gt;</td><td>Room Guests</td><td>False</td></tr><tr><td>Revenues</td><td>List&lt;RoomRevenue&gt;</td><td>Room Revenues</td><td>False</td></tr><tr><td>RoomAdultsNumber</td><td>Int32</td><td>Room Adults Number</td><td>False</td></tr><tr><td>RoomCapacity</td><td>String</td><td>Hotel Booking Room Capacity</td><td>False</td></tr><tr><td>RoomCheckInDate</td><td>DateTime</td><td>Room CheckIn Date</td><td>False</td></tr><tr><td>RoomCheckOutDate</td><td>DateTime</td><td>Room CheckOut Date</td><td>False</td></tr><tr><td>RoomChildrenNumber</td><td>Int32</td><td>Room Children Number</td><td>False</td></tr><tr><td>RoomDiningNumber</td><td>Int32</td><td>Room Dining Number</td><td>False</td></tr><tr><td>RoomEstimatedSpend</td><td>Double (nullable)</td><td>Room Estimated Spend</td><td>False</td></tr><tr><td>RoomInfantsNumber</td><td>Int32</td><td>Room Infants Number</td><td>False</td></tr><tr><td>RoomNightsNumber</td><td>Int32</td><td>Room Nights Number</td><td>False</td></tr><tr><td>RoomPetsNumber</td><td>Int32</td><td>Room Pets Number</td><td>False</td></tr><tr><td>RoomRatePlan</td><td>String</td><td>Room Rate Plan</td><td>False</td></tr><tr><td>RoomRef</td><td>String</td><td>Hotel Booking Room Reference</td><td>True</td></tr><tr><td>RoomStatus</td><td>BookingStatus</td><td>Hotel Booking Room Status \n            Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td><td>False</td></tr><tr><td>RoomType</td><td>String</td><td>Hotel Booking Room Type</td><td>False</td></tr><tr><td>RoomVoucherCode</td><td>String</td><td>Room Voucher Code</td><td>False</td></tr><tr><td>SpecialRequests</td><td>List&lt;RoomSpecialRequest&gt;</td><td></td><td>False</td></tr><tr><td><h4>RoomCancelPenalty Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPercent</td><td>Double (nullable)</td><td></td><td>False</td></tr><tr><td>Code</td><td>String</td><td></td><td>False</td></tr><tr><td>Deadline</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td><h4>Guest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>GuestCtcID</td><td>Int32</td><td>Hotel Room Guest Ctcid</td><td>False</td></tr><tr><td>GuestDetails</td><td>CustomerPayload</td><td>Hotel Room Guest Details</td><td>False</td></tr><tr><td>GuestRef</td><td>String</td><td>Hotel Room Guest Reference</td><td>False</td></tr><tr><td><h4>CustomerPayload Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>RoomRevenue Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AnalysisCode</td><td>String</td><td>Room Revenue Analysis Code</td><td>False</td></tr><tr><td>EffectiveDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ExpireDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>GrossAmount</td><td>Double (nullable)</td><td>Room Revenue Gross Amount</td><td>False</td></tr><tr><td>RevenueType</td><td>String</td><td>Room Revenue Type</td><td>False</td></tr><tr><td>TaxAmount</td><td>Double (nullable)</td><td>Room Revenue Tax Amount</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double (nullable)</td><td>Room Revenue Total Amount</td><td>False</td></tr><tr><td><h4>RoomSpecialRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>RequestCode</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>HotelBookingOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>HotelBookingID</td><td>Int64 (nullable)</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","HotelBooking","Put"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"c7230b7d-dc93-41f8-800c-0273b81bc8d9","name":"api/HotelBooking/Put Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"HotelBookingRef\": \"sample string 1\",\r\n  \"CreationDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n  \"LastUpdatedDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n  \"Reason\": \"sample string 3\",\r\n  \"ChannelID\": \"sample string 4\",\r\n  \"Status\": 1,\r\n  \"IsOTA\": true,\r\n  \"CheckInDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n  \"CheckOutDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n  \"Location\": {\r\n    \"ActeolSiteID\": 1,\r\n    \"ExternalLocationID\": \"sample string 2\"\r\n  },\r\n  \"Spend\": 1.1,\r\n  \"EstimatedSpend\": 1.1,\r\n  \"OrderUniqueID\": 1,\r\n  \"CustomFields\": [\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldValue\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"FieldName\": \"sample string 1\",\r\n      \"FieldValue\": \"sample string 2\"\r\n    }\r\n  ],\r\n  \"Rooms\": [\r\n    {\r\n      \"RoomRef\": \"sample string 1\",\r\n      \"RoomStatus\": 1,\r\n      \"RoomType\": \"sample string 2\",\r\n      \"RoomCapacity\": \"sample string 3\",\r\n      \"RoomCheckInDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n      \"RoomCheckOutDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n      \"RoomDiningNumber\": 6,\r\n      \"RoomNightsNumber\": 7,\r\n      \"RoomAdultsNumber\": 8,\r\n      \"RoomChildrenNumber\": 9,\r\n      \"RoomInfantsNumber\": 10,\r\n      \"RoomPetsNumber\": 11,\r\n      \"RoomRatePlan\": \"sample string 12\",\r\n      \"RoomVoucherCode\": \"sample string 13\",\r\n      \"RoomEstimatedSpend\": 1.1,\r\n      \"Guests\": [\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        },\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        }\r\n      ],\r\n      \"Revenues\": [\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n        },\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n        }\r\n      ],\r\n      \"GuaranteeCode\": \"sample string 14\",\r\n      \"SpecialRequests\": [\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        },\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        }\r\n      ],\r\n      \"CancelPenalties\": [\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        },\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        }\r\n      ],\r\n      \"CustomFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"RoomRef\": \"sample string 1\",\r\n      \"RoomStatus\": 1,\r\n      \"RoomType\": \"sample string 2\",\r\n      \"RoomCapacity\": \"sample string 3\",\r\n      \"RoomCheckInDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n      \"RoomCheckOutDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n      \"RoomDiningNumber\": 6,\r\n      \"RoomNightsNumber\": 7,\r\n      \"RoomAdultsNumber\": 8,\r\n      \"RoomChildrenNumber\": 9,\r\n      \"RoomInfantsNumber\": 10,\r\n      \"RoomPetsNumber\": 11,\r\n      \"RoomRatePlan\": \"sample string 12\",\r\n      \"RoomVoucherCode\": \"sample string 13\",\r\n      \"RoomEstimatedSpend\": 1.1,\r\n      \"Guests\": [\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        },\r\n        {\r\n          \"GuestDetails\": {\r\n            \"PersonalInfo\": {\r\n              \"Title\": \"sample string 1\",\r\n              \"FirstName\": \"sample string 2\",\r\n              \"LastName\": \"sample string 3\",\r\n              \"Email\": \"sample string 4\",\r\n              \"MobilePhone\": \"sample string 5\",\r\n              \"Phone\": \"sample string 6\",\r\n              \"BirthDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"JobTitle\": \"sample string 7\",\r\n              \"ParentEmailAddress\": \"sample string 8\",\r\n              \"Gender\": 0,\r\n              \"CustomerAddress\": {\r\n                \"Address1\": \"sample string 2\",\r\n                \"Address2\": \"sample string 3\",\r\n                \"Address3\": \"sample string 4\",\r\n                \"City\": \"sample string 5\",\r\n                \"PostCode\": \"sample string 6\",\r\n                \"StateName\": \"sample string 7\",\r\n                \"CountryCode\": \"sample string 8\",\r\n                \"Phone\": \"sample string 9\"\r\n              },\r\n              \"DoNotExport\": true\r\n            },\r\n            \"ExternalIdentifier\": {\r\n              \"ExternalID\": \"sample string 1\",\r\n              \"ExternalSource\": \"sample string 2\"\r\n            },\r\n            \"MarketingOptin\": {\r\n              \"ChangeDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n              \"EmailOptin\": true,\r\n              \"SmsOptin\": true,\r\n              \"MailOptin\": true,\r\n              \"PhoneOptin\": true,\r\n              \"PushNotificationOptin\": true,\r\n              \"WebPushNotificationOptin\": true,\r\n              \"WhatsAppOptin\": true,\r\n              \"AppOptin\": true\r\n            },\r\n            \"SupInfo\": [\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              },\r\n              {\r\n                \"FieldName\": \"sample string 1\",\r\n                \"FieldContent\": \"sample string 4\"\r\n              }\r\n            ],\r\n            \"CustomerPicture\": {\r\n              \"PictureName\": \"sample string 1\",\r\n              \"PictureExtension\": \"sample string 2\",\r\n              \"PictureData\": \"sample string 3\"\r\n            },\r\n            \"CustomerNotes\": [\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              },\r\n              {\r\n                \"Note\": \"sample string 1\",\r\n                \"CreateDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n              }\r\n            ]\r\n          },\r\n          \"GuestRef\": \"sample string 1\",\r\n          \"GuestCtcID\": 2\r\n        }\r\n      ],\r\n      \"Revenues\": [\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n        },\r\n        {\r\n          \"RevenueType\": \"sample string 1\",\r\n          \"AnalysisCode\": \"sample string 2\",\r\n          \"GrossAmount\": 1.1,\r\n          \"TaxAmount\": 1.1,\r\n          \"TotalAmount\": 1.1,\r\n          \"EffectiveDate\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"ExpireDate\": \"2026-03-25T07:30:09.0134416+00:00\"\r\n        }\r\n      ],\r\n      \"GuaranteeCode\": \"sample string 14\",\r\n      \"SpecialRequests\": [\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        },\r\n        {\r\n          \"RequestCode\": \"sample string 1\"\r\n        }\r\n      ],\r\n      \"CancelPenalties\": [\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        },\r\n        {\r\n          \"Code\": \"sample string 1\",\r\n          \"Deadline\": \"2026-03-25T07:30:09.0134416+00:00\",\r\n          \"AmountPercent\": 1.1\r\n        }\r\n      ],\r\n      \"CustomFields\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldValue\": \"sample string 2\"\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"LinkedBookings\": [\r\n    {\r\n      \"LinkedBookingRef\": \"sample string 1\",\r\n      \"SupplierCode\": 1\r\n    },\r\n    {\r\n      \"LinkedBookingRef\": \"sample string 1\",\r\n      \"SupplierCode\": 1\r\n    }\r\n  ],\r\n  \"Notes\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"MarketSegment\": \"sample string 8\",\r\n  \"ModifyURL\": \"sample string 9\",\r\n  \"BookingNightsNumber\": 10,\r\n  \"ExternalBookingReference\": \"sample string 11\",\r\n  \"SourceOfBusiness\": \"sample string 12\"\r\n}"},"url":"https://{{Host}}/api/HotelBooking/Put","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Put hotel booking \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>HotelBooking Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingNightsNumber</td><td>Int32</td><td>Booking Nights Number</td><td>False</td></tr><tr><td>ChannelID</td><td>String</td><td>Hotel Booking Channel ID</td><td>False</td></tr><tr><td>CheckInDate</td><td>DateTime</td><td>Hotel Booking CheckIn Date</td><td>True</td></tr><tr><td>CheckOutDate</td><td>DateTime</td><td>Hotel Booking CheckOut Date</td><td>True</td></tr><tr><td>CreationDate</td><td>DateTime</td><td>Hotel Booking Date</td><td>True</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td>Collection of extra booking informations</td><td>False</td></tr><tr><td>EstimatedSpend</td><td>Double (nullable)</td><td>Hotel Booking Estimated Spend</td><td>False</td></tr><tr><td>ExternalBookingReference</td><td>String</td><td>External Booking Reference</td><td>False</td></tr><tr><td>HotelBookingRef</td><td>String</td><td>Internal PMS Hotel Booking Reference</td><td>True</td></tr><tr><td>IsOTA</td><td>Boolean</td><td>Hotel Booking Is OTA</td><td>False</td></tr><tr><td>LastUpdatedDate</td><td>DateTime (nullable)</td><td>Hotel Booking Last Updated Date</td><td>False</td></tr><tr><td>LinkedBookings</td><td>List&lt;LinkedBooking&gt;</td><td>Other Bookings</td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td>Hotel Booking Location</td><td>False</td></tr><tr><td>MarketSegment</td><td>String</td><td>Hotel Booking Market Segment</td><td>False</td></tr><tr><td>ModifyURL</td><td>String</td><td>Hotel Booking Modify URL</td><td>False</td></tr><tr><td>Notes</td><td>List&lt;String&gt;</td><td>Booking Notes</td><td>False</td></tr><tr><td>OrderUniqueID</td><td>Int64 (nullable)</td><td>Hotel Booking Transaction ID</td><td>False</td></tr><tr><td>Reason</td><td>String</td><td>Hotel Booking Reason</td><td>False</td></tr><tr><td>Rooms</td><td>List&lt;HotelBookingRoom&gt;</td><td>List of Rooms</td><td>False</td></tr><tr><td>SourceOfBusiness</td><td>String</td><td></td><td>False</td></tr><tr><td>Spend</td><td>Double (nullable)</td><td>Hotel Booking Spend</td><td>False</td></tr><tr><td>Status</td><td>BookingStatus</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td><td>True</td></tr><tr><td colspan=4><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td colspan=4><h4>LinkedBooking Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>LinkedBookingRef</td><td>String</td><td>Linked Booking Reference</td><td>True</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Linked Booking Supplier</td><td>False</td></tr><tr><td colspan=4><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td colspan=4><h4>HotelBookingRoom Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CancelPenalties</td><td>List&lt;RoomCancelPenalty&gt;</td><td></td><td>False</td></tr><tr><td>CustomFields</td><td>List&lt;HotelBookingCustomFields&gt;</td><td></td><td>False</td></tr><tr><td>GuaranteeCode</td><td>String</td><td></td><td>False</td></tr><tr><td>Guests</td><td>List&lt;Guest&gt;</td><td>Room Guests</td><td>False</td></tr><tr><td>Revenues</td><td>List&lt;RoomRevenue&gt;</td><td>Room Revenues</td><td>False</td></tr><tr><td>RoomAdultsNumber</td><td>Int32</td><td>Room Adults Number</td><td>False</td></tr><tr><td>RoomCapacity</td><td>String</td><td>Hotel Booking Room Capacity</td><td>False</td></tr><tr><td>RoomCheckInDate</td><td>DateTime</td><td>Room CheckIn Date</td><td>False</td></tr><tr><td>RoomCheckOutDate</td><td>DateTime</td><td>Room CheckOut Date</td><td>False</td></tr><tr><td>RoomChildrenNumber</td><td>Int32</td><td>Room Children Number</td><td>False</td></tr><tr><td>RoomDiningNumber</td><td>Int32</td><td>Room Dining Number</td><td>False</td></tr><tr><td>RoomEstimatedSpend</td><td>Double (nullable)</td><td>Room Estimated Spend</td><td>False</td></tr><tr><td>RoomInfantsNumber</td><td>Int32</td><td>Room Infants Number</td><td>False</td></tr><tr><td>RoomNightsNumber</td><td>Int32</td><td>Room Nights Number</td><td>False</td></tr><tr><td>RoomPetsNumber</td><td>Int32</td><td>Room Pets Number</td><td>False</td></tr><tr><td>RoomRatePlan</td><td>String</td><td>Room Rate Plan</td><td>False</td></tr><tr><td>RoomRef</td><td>String</td><td>Hotel Booking Room Reference</td><td>True</td></tr><tr><td>RoomStatus</td><td>BookingStatus</td><td>Hotel Booking Room Status \n            Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td><td>False</td></tr><tr><td>RoomType</td><td>String</td><td>Hotel Booking Room Type</td><td>False</td></tr><tr><td>RoomVoucherCode</td><td>String</td><td>Room Voucher Code</td><td>False</td></tr><tr><td>SpecialRequests</td><td>List&lt;RoomSpecialRequest&gt;</td><td></td><td>False</td></tr><tr><td colspan=4><h4>RoomCancelPenalty Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPercent</td><td>Double (nullable)</td><td></td><td>False</td></tr><tr><td>Code</td><td>String</td><td></td><td>False</td></tr><tr><td>Deadline</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>HotelBookingCustomFields Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td>FieldValue</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td colspan=4><h4>Guest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>GuestCtcID</td><td>Int32</td><td>Hotel Room Guest Ctcid</td><td>False</td></tr><tr><td>GuestDetails</td><td>CustomerPayload</td><td>Hotel Room Guest Details</td><td>False</td></tr><tr><td>GuestRef</td><td>String</td><td>Hotel Room Guest Reference</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPayload Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerNotes</td><td>List&lt;CustomerNote&gt;</td><td>collection Notes linked to this customer</td><td>False</td></tr><tr><td>CustomerPicture</td><td>CustomerPicture</td><td>The picture of the customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> should be unique in the database. These values can be used for future Get calls to pull back the contacts data.</td><td>True</td></tr><tr><td>MarketingOptin</td><td>MarketingOptin</td><td>Marketing optin preferences</td><td>False</td></tr><tr><td>PersonalInfo</td><td>CustomerPD</td><td>Customer personal details</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of customer supplementary information</td><td>False</td></tr><tr><td colspan=4><h4>CustomerNote Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CreateDate</td><td>DateTime</td><td>Creation Date :if empty ,we will use the current datetime</td><td>False</td></tr><tr><td>Note</td><td>String</td><td>copy text of the note</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPicture Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PictureData</td><td>String</td><td>The data of the customer picture</td><td>False</td></tr><tr><td>PictureExtension</td><td>String</td><td>The extension of the customer picture</td><td>False</td></tr><tr><td>PictureName</td><td>String</td><td>The name of the customer picture</td><td>False</td></tr><tr><td colspan=4><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td colspan=4><h4>MarketingOptin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving Atreemo app messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (we use customer ModifiedDate if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving emails.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving post.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving phone calls.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving text messages.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving web push notifications.  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td>WhatsAppOptin</td><td>Boolean (nullable)</td><td>True if contact opted into receiving app Whatsapp messages .  If no clear opt out was made then value should be null</td><td>False</td></tr><tr><td colspan=4><h4>CustomerPD Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>CustomerAddress</td><td>CustomerAddress</td><td>The postal address of the customer</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>Gender</td><td>GenderCollection (nullable)</td><td>Gender :\n             0 : Unknown,\n             1 : Male,\n             2 : Female,\n             3 : PreferNotToSay,</td><td>False</td></tr><tr><td>JobTitle</td><td>String</td><td>Job title</td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td>Mobile number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number (start with 00[international code]).\n            Example : UK 0044 xxx xxx xxxx</td><td>False</td></tr><tr><td>Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td colspan=4><h4>CustomerAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Address1</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>Address2</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>Address3</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td>this should contain the ISO country code with two characters (UK,TN,...)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>RoomRevenue Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AnalysisCode</td><td>String</td><td>Room Revenue Analysis Code</td><td>False</td></tr><tr><td>EffectiveDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ExpireDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>GrossAmount</td><td>Double (nullable)</td><td>Room Revenue Gross Amount</td><td>False</td></tr><tr><td>RevenueType</td><td>String</td><td>Room Revenue Type</td><td>False</td></tr><tr><td>TaxAmount</td><td>Double (nullable)</td><td>Room Revenue Tax Amount</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double (nullable)</td><td>Room Revenue Total Amount</td><td>False</td></tr><tr><td colspan=4><h4>RoomSpecialRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>RequestCode</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>HotelBookingOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>HotelBookingID</td><td>Int64 (nullable)</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"HotelBookingID\": 1,\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"c13bdb7a-bb8c-434b-a4f6-f226dff29b4f"}],"id":"37e0062f-6e3e-49a0-b9ad-0b932a0fdebe","description":"<p>API methods to manage hotel bookings (Find/Add)\n<br /></p>\n<h2>Standard API Responses</h2>\n<li><strong>200</strong> Success</li>\n<li><strong>401</strong> Unauthorized (no valid access token provided)</li>\n<li><strong>403</strong> Forbidden Forbidden (indicates you do not have access to this method)</li>\n<li><strong>404</strong> Not Found (indicates invalid parameters or missing API endpoint)</li>\n<li><strong>500</strong> Internal Server Error (indicates something went wrong on our end)</li>\n<br /><br />for 200-level responses there is a field named <strong>ResponseStatus</strong> which will give you the status of the call :<li><b>true</b> Success</li>\n<li><b>false</b> there is an error (you will find the error code and the description in the object <b>Errors</b>) </li><br /><br />\n<h2>Possible Errors</h2><li>\n<strong>1</strong> Missing mandatory fields</li>\n<li><strong>2</strong> Internal Error</li>\n<li><strong>45</strong> No Supplier found for the user</li>\n<li><strong>46</strong> HotelBookingRef already exists</li>\n<li><strong>47</strong> Invalid booking status</li>\n<li><strong>48</strong> Missing mandatory fields for rooms parameter</li>\n<li><strong>49</strong> Rooms contains invalid RoomStatus parameter</li>\n<li><strong>50</strong> No Booking Found With Such Details</li>","_postman_id":"37e0062f-6e3e-49a0-b9ad-0b932a0fdebe"},{"name":"Location","item":[{"name":"Get","id":"66db292a-c5e9-4451-b842-92ccfa6f03e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Location/Get","description":" <p>\n            Get list of locations\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetLocationsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Locations</td><td>List&lt;Location&gt;</td><td>List Of locations</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td><h4>Location Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsGeneric</td><td>Boolean</td><td></td></tr><tr><td>LocationEmailAddress</td><td>String</td><td></td></tr><tr><td>LocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>LocationName</td><td>String</td><td>Name of locations</td></tr><tr><td>LocationNodecode</td><td>Int32 (nullable)</td><td></td></tr><tr><td>OriginLocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>Region unique identifier</td></tr><tr><td>RegionName</td><td>String</td><td>Name of the region</td></tr><tr><td>Suspended</td><td>Boolean</td><td>Suspension status</td></tr></table>","urlObject":{"protocol":"https","path":["api","Location","Get"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"ddc7ebb4-782d-4540-8eec-1ad9b2601995","name":"api/Location/Get Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Location/Get","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get list of locations\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetLocationsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Locations</td><td>List&lt;Location&gt;</td><td>List Of locations</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td colspan=3><h4>Location Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsGeneric</td><td>Boolean</td><td></td></tr><tr><td>LocationEmailAddress</td><td>String</td><td></td></tr><tr><td>LocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>LocationName</td><td>String</td><td>Name of locations</td></tr><tr><td>LocationNodecode</td><td>Int32 (nullable)</td><td></td></tr><tr><td>OriginLocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>Region unique identifier</td></tr><tr><td>RegionName</td><td>String</td><td>Name of the region</td></tr><tr><td>Suspended</td><td>Boolean</td><td>Suspension status</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Locations\": [\r\n    {\r\n      \"LocationID\": \"sample string 1\",\r\n      \"LocationName\": \"sample string 2\",\r\n      \"Suspended\": true,\r\n      \"OriginLocationID\": \"sample string 4\",\r\n      \"RegionID\": 1,\r\n      \"RegionName\": \"sample string 5\",\r\n      \"LocationEmailAddress\": \"sample string 8\",\r\n      \"LocationNodecode\": 1,\r\n      \"IsGeneric\": true\r\n    },\r\n    {\r\n      \"LocationID\": \"sample string 1\",\r\n      \"LocationName\": \"sample string 2\",\r\n      \"Suspended\": true,\r\n      \"OriginLocationID\": \"sample string 4\",\r\n      \"RegionID\": 1,\r\n      \"RegionName\": \"sample string 5\",\r\n      \"LocationEmailAddress\": \"sample string 8\",\r\n      \"LocationNodecode\": 1,\r\n      \"IsGeneric\": true\r\n    }\r\n  ],\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"66db292a-c5e9-4451-b842-92ccfa6f03e5"},{"name":"GetByUserID","id":"15a62ca7-1b78-44b2-8775-d32be95ba4e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Location/GetByUserID?Generic=Generic-value","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>GetLocationsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Locations</td><td>List&lt;Location&gt;</td><td>List Of locations</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td><h4>Location Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsGeneric</td><td>Boolean</td><td></td></tr><tr><td>LocationEmailAddress</td><td>String</td><td></td></tr><tr><td>LocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>LocationName</td><td>String</td><td>Name of locations</td></tr><tr><td>LocationNodecode</td><td>Int32 (nullable)</td><td></td></tr><tr><td>OriginLocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>Region unique identifier</td></tr><tr><td>RegionName</td><td>String</td><td>Name of the region</td></tr><tr><td>Suspended</td><td>Boolean</td><td>Suspension status</td></tr></table>","urlObject":{"protocol":"https","path":["api","Location","GetByUserID"],"host":["{{Host}}"],"query":[{"key":"Generic","value":"Generic-value"}],"variable":[]}},"response":[{"id":"af5ae0ea-faab-4905-b52e-516acbf1af07","name":"api/Location/GetByUserID?Generic={Generic} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Location/GetByUserID?Generic=Generic-value","protocol":"https","host":["{{Host}}"],"path":["api","Location","GetByUserID"],"query":[{"key":"Generic","value":"Generic-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetLocationsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Locations</td><td>List&lt;Location&gt;</td><td>List Of locations</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td colspan=3><h4>Location Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsGeneric</td><td>Boolean</td><td></td></tr><tr><td>LocationEmailAddress</td><td>String</td><td></td></tr><tr><td>LocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>LocationName</td><td>String</td><td>Name of locations</td></tr><tr><td>LocationNodecode</td><td>Int32 (nullable)</td><td></td></tr><tr><td>OriginLocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>Region unique identifier</td></tr><tr><td>RegionName</td><td>String</td><td>Name of the region</td></tr><tr><td>Suspended</td><td>Boolean</td><td>Suspension status</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Locations\": [\r\n    {\r\n      \"LocationID\": \"sample string 1\",\r\n      \"LocationName\": \"sample string 2\",\r\n      \"Suspended\": true,\r\n      \"OriginLocationID\": \"sample string 4\",\r\n      \"RegionID\": 1,\r\n      \"RegionName\": \"sample string 5\",\r\n      \"LocationEmailAddress\": \"sample string 8\",\r\n      \"LocationNodecode\": 1,\r\n      \"IsGeneric\": true\r\n    },\r\n    {\r\n      \"LocationID\": \"sample string 1\",\r\n      \"LocationName\": \"sample string 2\",\r\n      \"Suspended\": true,\r\n      \"OriginLocationID\": \"sample string 4\",\r\n      \"RegionID\": 1,\r\n      \"RegionName\": \"sample string 5\",\r\n      \"LocationEmailAddress\": \"sample string 8\",\r\n      \"LocationNodecode\": 1,\r\n      \"IsGeneric\": true\r\n    }\r\n  ],\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"15a62ca7-1b78-44b2-8775-d32be95ba4e5"}],"id":"2d177708-841a-4c79-96d8-0b850e1be289","description":"<p>Api Methods for Location</p>\n","_postman_id":"2d177708-841a-4c79-96d8-0b850e1be289"},{"name":"Loyalty","item":[{"name":"BurnPoints","id":"96351957-7f27-486a-a18b-9d9a2dca06b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"NbPoints\": 1.1,\r\n  \"TranscationDescription\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"ExternalTransactionID\": \"sample string 4\",\r\n  \"LocationID\": \"sample string 5\",\r\n  \"LocationName\": \"sample string 6\",\r\n  \"ActionDate\": \"2026-03-25T07:30:09.0915578+00:00\",\r\n  \"ApplyTiersRate\": true\r\n}"},"url":"https://{{Host}}/api/Loyalty/BurnPoints","description":" <p>\n            Burning – Use points \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>PointsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActionDate</td><td>DateTime (nullable)</td><td>The date of the action (ii null we use current date time of the call)</td><td>False</td></tr><tr><td>ApplyTiersRate</td><td>Boolean</td><td>By Default is true. apply the tier rate when adding points (not used for BurnPoints method)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>False</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td><td>False</td></tr><tr><td>NbPoints</td><td>Double</td><td>Number of point</td><td>True</td></tr><tr><td>TranscationDescription</td><td>String</td><td>The description of the transaction</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PointsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","BurnPoints"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"8f3af541-dfb8-46b3-a896-5efcebfb1c88","name":"api/Loyalty/BurnPoints Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"NbPoints\": 1.1,\r\n  \"TranscationDescription\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"ExternalTransactionID\": \"sample string 4\",\r\n  \"LocationID\": \"sample string 5\",\r\n  \"LocationName\": \"sample string 6\",\r\n  \"ActionDate\": \"2026-03-25T07:30:09.0915578+00:00\",\r\n  \"ApplyTiersRate\": true\r\n}"},"url":"https://{{Host}}/api/Loyalty/BurnPoints","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Burning – Use points \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PointsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActionDate</td><td>DateTime (nullable)</td><td>The date of the action (ii null we use current date time of the call)</td><td>False</td></tr><tr><td>ApplyTiersRate</td><td>Boolean</td><td>By Default is true. apply the tier rate when adding points (not used for BurnPoints method)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>False</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td><td>False</td></tr><tr><td>NbPoints</td><td>Double</td><td>Number of point</td><td>True</td></tr><tr><td>TranscationDescription</td><td>String</td><td>The description of the transaction</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PointsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"PointBalance\": 1,\r\n  \"CashBalance\": 2.1,\r\n  \"CustomerID\": 3,\r\n  \"Error\": \"sample string 4\"\r\n}"}],"_postman_id":"96351957-7f27-486a-a18b-9d9a2dca06b3"},{"name":"BurnPointsByAmount","id":"522fc339-f5d5-43e9-b8ff-5bbef463ed67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Amount\": 1.1,\r\n  \"TranscationDescription\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"ExternalTransactionID\": \"sample string 4\",\r\n  \"LocationID\": \"sample string 5\",\r\n  \"LocationName\": \"sample string 6\",\r\n  \"ActionDate\": \"2026-03-25T07:30:09.1071708+00:00\",\r\n  \"ApplyTiersRate\": true\r\n}"},"url":"https://{{Host}}/api/Loyalty/BurnPointsByAmount","description":" <p>\n            Burning – Use points by amount\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>CashInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActionDate</td><td>DateTime (nullable)</td><td>The date of the action (if null we use current date time of the call)</td><td>False</td></tr><tr><td>Amount</td><td>Double</td><td>amount</td><td>True</td></tr><tr><td>ApplyTiersRate</td><td>Boolean</td><td>By Default is true. apply the tier rate when adding points (not used for BurnPoints method)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID …</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>False</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td><td>False</td></tr><tr><td>TranscationDescription</td><td>String</td><td>The description of the transaction</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PointsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","BurnPointsByAmount"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"99978537-0d6e-4c15-bd09-1ff52affaf0a","name":"api/Loyalty/BurnPointsByAmount Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Amount\": 1.1,\r\n  \"TranscationDescription\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"ExternalTransactionID\": \"sample string 4\",\r\n  \"LocationID\": \"sample string 5\",\r\n  \"LocationName\": \"sample string 6\",\r\n  \"ActionDate\": \"2026-03-25T07:30:09.1071708+00:00\",\r\n  \"ApplyTiersRate\": true\r\n}"},"url":"https://{{Host}}/api/Loyalty/BurnPointsByAmount","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Burning – Use points by amount\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CashInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActionDate</td><td>DateTime (nullable)</td><td>The date of the action (if null we use current date time of the call)</td><td>False</td></tr><tr><td>Amount</td><td>Double</td><td>amount</td><td>True</td></tr><tr><td>ApplyTiersRate</td><td>Boolean</td><td>By Default is true. apply the tier rate when adding points (not used for BurnPoints method)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID …</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>False</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td><td>False</td></tr><tr><td>TranscationDescription</td><td>String</td><td>The description of the transaction</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PointsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"PointBalance\": 1,\r\n  \"CashBalance\": 2.1,\r\n  \"CustomerID\": 3,\r\n  \"Error\": \"sample string 4\"\r\n}"}],"_postman_id":"522fc339-f5d5-43e9-b8ff-5bbef463ed67"},{"name":"BurnReservedPoints","id":"843dc4a9-e783-400f-b829-020a64a2b1c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"PointsReservationCode\": 1,\r\n  \"Description\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Loyalty/BurnReservedPoints","description":" <p>\n            burn reserved points \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>BurnReservedPointInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Description</td><td>String</td><td>The description of the transaction</td><td>False</td></tr><tr><td>PointsReservationCode</td><td>Int32</td><td>this code is the output of the methods ReservePoints/ReservePointsByAmount</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","BurnReservedPoints"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"fc943786-cefd-4c21-ac1d-02f4ce05ae52","name":"api/Loyalty/BurnReservedPoints Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"PointsReservationCode\": 1,\r\n  \"Description\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Loyalty/BurnReservedPoints","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            burn reserved points \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>BurnReservedPointInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Description</td><td>String</td><td>The description of the transaction</td><td>False</td></tr><tr><td>PointsReservationCode</td><td>Int32</td><td>this code is the output of the methods ReservePoints/ReservePointsByAmount</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"843dc4a9-e783-400f-b829-020a64a2b1c2"},{"name":"CancelReservePoints","id":"551cb0c5-adf5-4973-aa3d-f71c3bc4adef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"PointsReservationCode\": 1\r\n}"},"url":"https://{{Host}}/api/Loyalty/CancelReservePoints","description":" <p>\n            Cancel points reservation\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>CancelReservationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PointsReservationCode</td><td>Int32</td><td>this code is the output of the methods ReservePoints/ReservePointsByAmount</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","CancelReservePoints"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"5d30502b-3217-4a47-a882-a04882db1f24","name":"api/Loyalty/CancelReservePoints Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"PointsReservationCode\": 1\r\n}"},"url":"https://{{Host}}/api/Loyalty/CancelReservePoints","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Cancel points reservation\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CancelReservationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>PointsReservationCode</td><td>Int32</td><td>this code is the output of the methods ReservePoints/ReservePointsByAmount</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"551cb0c5-adf5-4973-aa3d-f71c3bc4adef"},{"name":"EarnPoints","id":"4d8da2e5-aa54-4e84-9ece-8b3bf8a51339","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"NbPoints\": 1.1,\r\n  \"TranscationDescription\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"ExternalTransactionID\": \"sample string 4\",\r\n  \"LocationID\": \"sample string 5\",\r\n  \"LocationName\": \"sample string 6\",\r\n  \"ActionDate\": \"2026-03-25T07:30:09.1071708+00:00\",\r\n  \"ApplyTiersRate\": true\r\n}"},"url":"https://{{Host}}/api/Loyalty/EarnPoints","description":" <p>\n            Earning – Award points \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>PointsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActionDate</td><td>DateTime (nullable)</td><td>The date of the action (ii null we use current date time of the call)</td><td>False</td></tr><tr><td>ApplyTiersRate</td><td>Boolean</td><td>By Default is true. apply the tier rate when adding points (not used for BurnPoints method)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>False</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td><td>False</td></tr><tr><td>NbPoints</td><td>Double</td><td>Number of point</td><td>True</td></tr><tr><td>TranscationDescription</td><td>String</td><td>The description of the transaction</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PointsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","EarnPoints"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"e41cee82-7639-4134-b9a3-e1c5b530f14f","name":"api/Loyalty/EarnPoints Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"NbPoints\": 1.1,\r\n  \"TranscationDescription\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"ExternalTransactionID\": \"sample string 4\",\r\n  \"LocationID\": \"sample string 5\",\r\n  \"LocationName\": \"sample string 6\",\r\n  \"ActionDate\": \"2026-03-25T07:30:09.1071708+00:00\",\r\n  \"ApplyTiersRate\": true\r\n}"},"url":"https://{{Host}}/api/Loyalty/EarnPoints","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Earning – Award points \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PointsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActionDate</td><td>DateTime (nullable)</td><td>The date of the action (ii null we use current date time of the call)</td><td>False</td></tr><tr><td>ApplyTiersRate</td><td>Boolean</td><td>By Default is true. apply the tier rate when adding points (not used for BurnPoints method)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>False</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td><td>False</td></tr><tr><td>NbPoints</td><td>Double</td><td>Number of point</td><td>True</td></tr><tr><td>TranscationDescription</td><td>String</td><td>The description of the transaction</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PointsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"PointBalance\": 1,\r\n  \"CashBalance\": 2.1,\r\n  \"CustomerID\": 3,\r\n  \"Error\": \"sample string 4\"\r\n}"}],"_postman_id":"4d8da2e5-aa54-4e84-9ece-8b3bf8a51339"},{"name":"EarnPointsByAmount","id":"ad50f7ae-8c76-4b93-be75-687ea9c4fa93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Amount\": 1.1,\r\n  \"TranscationDescription\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"ExternalTransactionID\": \"sample string 4\",\r\n  \"LocationID\": \"sample string 5\",\r\n  \"LocationName\": \"sample string 6\",\r\n  \"ActionDate\": \"2026-03-25T07:30:09.1071708+00:00\",\r\n  \"ApplyTiersRate\": true\r\n}"},"url":"https://{{Host}}/api/Loyalty/EarnPointsByAmount","description":" <p>\n            Earning – Award points by amount \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>CashInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActionDate</td><td>DateTime (nullable)</td><td>The date of the action (if null we use current date time of the call)</td><td>False</td></tr><tr><td>Amount</td><td>Double</td><td>amount</td><td>True</td></tr><tr><td>ApplyTiersRate</td><td>Boolean</td><td>By Default is true. apply the tier rate when adding points (not used for BurnPoints method)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID …</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>False</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td><td>False</td></tr><tr><td>TranscationDescription</td><td>String</td><td>The description of the transaction</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PointsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","EarnPointsByAmount"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"dbb3e459-cff1-4124-abd7-d5bab5fb37f3","name":"api/Loyalty/EarnPointsByAmount Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Amount\": 1.1,\r\n  \"TranscationDescription\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"ExternalTransactionID\": \"sample string 4\",\r\n  \"LocationID\": \"sample string 5\",\r\n  \"LocationName\": \"sample string 6\",\r\n  \"ActionDate\": \"2026-03-25T07:30:09.1071708+00:00\",\r\n  \"ApplyTiersRate\": true\r\n}"},"url":"https://{{Host}}/api/Loyalty/EarnPointsByAmount","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Earning – Award points by amount \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CashInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActionDate</td><td>DateTime (nullable)</td><td>The date of the action (if null we use current date time of the call)</td><td>False</td></tr><tr><td>Amount</td><td>Double</td><td>amount</td><td>True</td></tr><tr><td>ApplyTiersRate</td><td>Boolean</td><td>By Default is true. apply the tier rate when adding points (not used for BurnPoints method)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID …</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>False</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td><td>False</td></tr><tr><td>TranscationDescription</td><td>String</td><td>The description of the transaction</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PointsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"PointBalance\": 1,\r\n  \"CashBalance\": 2.1,\r\n  \"CustomerID\": 3,\r\n  \"Error\": \"sample string 4\"\r\n}"}],"_postman_id":"ad50f7ae-8c76-4b93-be75-687ea9c4fa93"},{"name":"GetBalance","id":"bcfc97fe-aed0-4030-b970-7c1b8a603cda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Loyalty/GetBalance?customerid=customerid-value","description":" <p>\n            Get point balance of the requested customer\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetBalanceOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","GetBalance"],"host":["{{Host}}"],"query":[{"key":"customerid","value":"customerid-value"}],"variable":[]}},"response":[{"id":"9cbd6998-f223-4c12-acda-7779582a4c71","name":"api/Loyalty/GetBalance?customerid={customerid} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Loyalty/GetBalance?customerid=customerid-value","protocol":"https","host":["{{Host}}"],"path":["api","Loyalty","GetBalance"],"query":[{"key":"customerid","value":"customerid-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get point balance of the requested customer\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetBalanceOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"PointBalance\": 1,\r\n  \"CashBalance\": 2.1\r\n}"}],"_postman_id":"bcfc97fe-aed0-4030-b970-7c1b8a603cda"},{"name":"GetCustomerDetails","id":"0d5820ef-f49e-4c91-b460-39a9b091fe53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Loyalty/GetCustomerDetails?customerid=customerid-value","description":" <p>\n            Get customer details by customerid\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>CustomerDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Address1</td><td>String</td><td></td></tr><tr><td>Address2</td><td>String</td><td></td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>City</td><td>String</td><td></td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td></td></tr><tr><td>CurrentTiers</td><td>String</td><td></td></tr><tr><td>CustomerID</td><td>Int32</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Firstname</td><td>String</td><td></td></tr><tr><td>Lastname</td><td>String</td><td></td></tr><tr><td>LastVisiteDate</td><td>DateTime (nullable)</td><td>Last visite of the requested customer</td></tr><tr><td>LoyaltyCardNumber</td><td>String</td><td></td></tr><tr><td>LoyaltyCashBalance</td><td>Double</td><td>Cash balance of the requested customer</td></tr><tr><td>LoyaltyPointsBalance</td><td>Int32</td><td>Point balance of the requested customer</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MobilePhone</td><td>String</td><td></td></tr><tr><td>NextTiers</td><td>String</td><td></td></tr><tr><td>NextTiersAmountLeft</td><td>Double</td><td></td></tr><tr><td>PointsExpirationDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>PostCode</td><td>String</td><td></td></tr><tr><td>Property</td><td>String</td><td></td></tr><tr><td>TiersExpirationDate</td><td>DateTime (nullable)</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","GetCustomerDetails"],"host":["{{Host}}"],"query":[{"key":"customerid","value":"customerid-value"}],"variable":[]}},"response":[{"id":"eb61b28a-53d9-4a07-8cc4-c77bc7f14c7d","name":"api/Loyalty/GetCustomerDetails?customerid={customerid} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Loyalty/GetCustomerDetails?customerid=customerid-value","protocol":"https","host":["{{Host}}"],"path":["api","Loyalty","GetCustomerDetails"],"query":[{"key":"customerid","value":"customerid-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get customer details by customerid\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomerDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Address1</td><td>String</td><td></td></tr><tr><td>Address2</td><td>String</td><td></td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>City</td><td>String</td><td></td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td></td></tr><tr><td>CurrentTiers</td><td>String</td><td></td></tr><tr><td>CustomerID</td><td>Int32</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Firstname</td><td>String</td><td></td></tr><tr><td>Lastname</td><td>String</td><td></td></tr><tr><td>LastVisiteDate</td><td>DateTime (nullable)</td><td>Last visite of the requested customer</td></tr><tr><td>LoyaltyCardNumber</td><td>String</td><td></td></tr><tr><td>LoyaltyCashBalance</td><td>Double</td><td>Cash balance of the requested customer</td></tr><tr><td>LoyaltyPointsBalance</td><td>Int32</td><td>Point balance of the requested customer</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MobilePhone</td><td>String</td><td></td></tr><tr><td>NextTiers</td><td>String</td><td></td></tr><tr><td>NextTiersAmountLeft</td><td>Double</td><td></td></tr><tr><td>PointsExpirationDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>PostCode</td><td>String</td><td></td></tr><tr><td>Property</td><td>String</td><td></td></tr><tr><td>TiersExpirationDate</td><td>DateTime (nullable)</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Firstname\": \"sample string 1\",\r\n  \"Lastname\": \"sample string 2\",\r\n  \"BirthDate\": \"2026-03-25T07:30:09.0603144+00:00\",\r\n  \"Email\": \"sample string 3\",\r\n  \"MobilePhone\": \"sample string 4\",\r\n  \"Address1\": \"sample string 5\",\r\n  \"Address2\": \"sample string 6\",\r\n  \"PostCode\": \"sample string 7\",\r\n  \"City\": \"sample string 8\",\r\n  \"CountryCode\": \"sample string 9\",\r\n  \"LastVisiteDate\": \"2026-03-25T07:30:09.0603144+00:00\",\r\n  \"LoyaltyPointsBalance\": 10,\r\n  \"LoyaltyCashBalance\": 11.1,\r\n  \"CustomerID\": 12,\r\n  \"LoyaltyCardNumber\": \"sample string 13\",\r\n  \"CurrentTiers\": \"sample string 14\",\r\n  \"NextTiers\": \"sample string 15\",\r\n  \"NextTiersAmountLeft\": 16.1,\r\n  \"Property\": \"sample string 17\",\r\n  \"TiersExpirationDate\": \"2026-03-25T07:30:09.0603144+00:00\",\r\n  \"PointsExpirationDate\": \"2026-03-25T07:30:09.0603144+00:00\",\r\n  \"MemberNumbersList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CurrentMemberNumber\": \"sample string 18\"\r\n}"}],"_postman_id":"0d5820ef-f49e-4c91-b460-39a9b091fe53"},{"name":"GetCustomerDetailsByExternalCustomerID","id":"dad29e7b-087f-44fe-b30f-a14e5e31201d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Loyalty/GetCustomerDetailsByExternalCustomerID?externalcustomerid=externalcustomerid-value&partnerid=partnerid-value","description":" <p>\n            Get customer details by External Customer ID\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>CustomerDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Address1</td><td>String</td><td></td></tr><tr><td>Address2</td><td>String</td><td></td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>City</td><td>String</td><td></td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td></td></tr><tr><td>CurrentTiers</td><td>String</td><td></td></tr><tr><td>CustomerID</td><td>Int32</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Firstname</td><td>String</td><td></td></tr><tr><td>Lastname</td><td>String</td><td></td></tr><tr><td>LastVisiteDate</td><td>DateTime (nullable)</td><td>Last visite of the requested customer</td></tr><tr><td>LoyaltyCardNumber</td><td>String</td><td></td></tr><tr><td>LoyaltyCashBalance</td><td>Double</td><td>Cash balance of the requested customer</td></tr><tr><td>LoyaltyPointsBalance</td><td>Int32</td><td>Point balance of the requested customer</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MobilePhone</td><td>String</td><td></td></tr><tr><td>NextTiers</td><td>String</td><td></td></tr><tr><td>NextTiersAmountLeft</td><td>Double</td><td></td></tr><tr><td>PointsExpirationDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>PostCode</td><td>String</td><td></td></tr><tr><td>Property</td><td>String</td><td></td></tr><tr><td>TiersExpirationDate</td><td>DateTime (nullable)</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","GetCustomerDetailsByExternalCustomerID"],"host":["{{Host}}"],"query":[{"key":"externalcustomerid","value":"externalcustomerid-value"},{"key":"partnerid","value":"partnerid-value"}],"variable":[]}},"response":[{"id":"6587324f-3017-42ca-bd1f-4a3de02bc096","name":"api/Loyalty/GetCustomerDetailsByExternalCustomerID?externalcustomerid={externalcustomerid}&partnerid={partnerid} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Loyalty/GetCustomerDetailsByExternalCustomerID?externalcustomerid=externalcustomerid-value&partnerid=partnerid-value","protocol":"https","host":["{{Host}}"],"path":["api","Loyalty","GetCustomerDetailsByExternalCustomerID"],"query":[{"key":"externalcustomerid","value":"externalcustomerid-value"},{"key":"partnerid","value":"partnerid-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get customer details by External Customer ID\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomerDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Address1</td><td>String</td><td></td></tr><tr><td>Address2</td><td>String</td><td></td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>City</td><td>String</td><td></td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td></td></tr><tr><td>CurrentTiers</td><td>String</td><td></td></tr><tr><td>CustomerID</td><td>Int32</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Firstname</td><td>String</td><td></td></tr><tr><td>Lastname</td><td>String</td><td></td></tr><tr><td>LastVisiteDate</td><td>DateTime (nullable)</td><td>Last visite of the requested customer</td></tr><tr><td>LoyaltyCardNumber</td><td>String</td><td></td></tr><tr><td>LoyaltyCashBalance</td><td>Double</td><td>Cash balance of the requested customer</td></tr><tr><td>LoyaltyPointsBalance</td><td>Int32</td><td>Point balance of the requested customer</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MobilePhone</td><td>String</td><td></td></tr><tr><td>NextTiers</td><td>String</td><td></td></tr><tr><td>NextTiersAmountLeft</td><td>Double</td><td></td></tr><tr><td>PointsExpirationDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>PostCode</td><td>String</td><td></td></tr><tr><td>Property</td><td>String</td><td></td></tr><tr><td>TiersExpirationDate</td><td>DateTime (nullable)</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Firstname\": \"sample string 1\",\r\n  \"Lastname\": \"sample string 2\",\r\n  \"BirthDate\": \"2026-03-25T07:30:09.0759295+00:00\",\r\n  \"Email\": \"sample string 3\",\r\n  \"MobilePhone\": \"sample string 4\",\r\n  \"Address1\": \"sample string 5\",\r\n  \"Address2\": \"sample string 6\",\r\n  \"PostCode\": \"sample string 7\",\r\n  \"City\": \"sample string 8\",\r\n  \"CountryCode\": \"sample string 9\",\r\n  \"LastVisiteDate\": \"2026-03-25T07:30:09.0759295+00:00\",\r\n  \"LoyaltyPointsBalance\": 10,\r\n  \"LoyaltyCashBalance\": 11.1,\r\n  \"CustomerID\": 12,\r\n  \"LoyaltyCardNumber\": \"sample string 13\",\r\n  \"CurrentTiers\": \"sample string 14\",\r\n  \"NextTiers\": \"sample string 15\",\r\n  \"NextTiersAmountLeft\": 16.1,\r\n  \"Property\": \"sample string 17\",\r\n  \"TiersExpirationDate\": \"2026-03-25T07:30:09.0759295+00:00\",\r\n  \"PointsExpirationDate\": \"2026-03-25T07:30:09.0759295+00:00\",\r\n  \"MemberNumbersList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CurrentMemberNumber\": \"sample string 18\"\r\n}"}],"_postman_id":"dad29e7b-087f-44fe-b30f-a14e5e31201d"},{"name":"GetCustomerDetailsByLoyaltyCardNumber","id":"351979cd-5da7-49eb-a934-2b215e8e6bea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Loyalty/GetCustomerDetailsByLoyaltyCardNumber?loyaltycardnumber=loyaltycardnumber-value","description":" <p>\n            Get customer details by loyalty card number\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>CustomerDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Address1</td><td>String</td><td></td></tr><tr><td>Address2</td><td>String</td><td></td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>City</td><td>String</td><td></td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td></td></tr><tr><td>CurrentTiers</td><td>String</td><td></td></tr><tr><td>CustomerID</td><td>Int32</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Firstname</td><td>String</td><td></td></tr><tr><td>Lastname</td><td>String</td><td></td></tr><tr><td>LastVisiteDate</td><td>DateTime (nullable)</td><td>Last visite of the requested customer</td></tr><tr><td>LoyaltyCardNumber</td><td>String</td><td></td></tr><tr><td>LoyaltyCashBalance</td><td>Double</td><td>Cash balance of the requested customer</td></tr><tr><td>LoyaltyPointsBalance</td><td>Int32</td><td>Point balance of the requested customer</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MobilePhone</td><td>String</td><td></td></tr><tr><td>NextTiers</td><td>String</td><td></td></tr><tr><td>NextTiersAmountLeft</td><td>Double</td><td></td></tr><tr><td>PointsExpirationDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>PostCode</td><td>String</td><td></td></tr><tr><td>Property</td><td>String</td><td></td></tr><tr><td>TiersExpirationDate</td><td>DateTime (nullable)</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","GetCustomerDetailsByLoyaltyCardNumber"],"host":["{{Host}}"],"query":[{"key":"loyaltycardnumber","value":"loyaltycardnumber-value"}],"variable":[]}},"response":[{"id":"1e8d0b97-2457-4c89-a686-921b84103943","name":"api/Loyalty/GetCustomerDetailsByLoyaltyCardNumber?loyaltycardnumber={loyaltycardnumber} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Loyalty/GetCustomerDetailsByLoyaltyCardNumber?loyaltycardnumber=loyaltycardnumber-value","protocol":"https","host":["{{Host}}"],"path":["api","Loyalty","GetCustomerDetailsByLoyaltyCardNumber"],"query":[{"key":"loyaltycardnumber","value":"loyaltycardnumber-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get customer details by loyalty card number\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomerDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Address1</td><td>String</td><td></td></tr><tr><td>Address2</td><td>String</td><td></td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>City</td><td>String</td><td></td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td></td></tr><tr><td>CurrentTiers</td><td>String</td><td></td></tr><tr><td>CustomerID</td><td>Int32</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Firstname</td><td>String</td><td></td></tr><tr><td>Lastname</td><td>String</td><td></td></tr><tr><td>LastVisiteDate</td><td>DateTime (nullable)</td><td>Last visite of the requested customer</td></tr><tr><td>LoyaltyCardNumber</td><td>String</td><td></td></tr><tr><td>LoyaltyCashBalance</td><td>Double</td><td>Cash balance of the requested customer</td></tr><tr><td>LoyaltyPointsBalance</td><td>Int32</td><td>Point balance of the requested customer</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MobilePhone</td><td>String</td><td></td></tr><tr><td>NextTiers</td><td>String</td><td></td></tr><tr><td>NextTiersAmountLeft</td><td>Double</td><td></td></tr><tr><td>PointsExpirationDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>PostCode</td><td>String</td><td></td></tr><tr><td>Property</td><td>String</td><td></td></tr><tr><td>TiersExpirationDate</td><td>DateTime (nullable)</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Firstname\": \"sample string 1\",\r\n  \"Lastname\": \"sample string 2\",\r\n  \"BirthDate\": \"2026-03-25T07:30:09.0915578+00:00\",\r\n  \"Email\": \"sample string 3\",\r\n  \"MobilePhone\": \"sample string 4\",\r\n  \"Address1\": \"sample string 5\",\r\n  \"Address2\": \"sample string 6\",\r\n  \"PostCode\": \"sample string 7\",\r\n  \"City\": \"sample string 8\",\r\n  \"CountryCode\": \"sample string 9\",\r\n  \"LastVisiteDate\": \"2026-03-25T07:30:09.0915578+00:00\",\r\n  \"LoyaltyPointsBalance\": 10,\r\n  \"LoyaltyCashBalance\": 11.1,\r\n  \"CustomerID\": 12,\r\n  \"LoyaltyCardNumber\": \"sample string 13\",\r\n  \"CurrentTiers\": \"sample string 14\",\r\n  \"NextTiers\": \"sample string 15\",\r\n  \"NextTiersAmountLeft\": 16.1,\r\n  \"Property\": \"sample string 17\",\r\n  \"TiersExpirationDate\": \"2026-03-25T07:30:09.0915578+00:00\",\r\n  \"PointsExpirationDate\": \"2026-03-25T07:30:09.0915578+00:00\",\r\n  \"MemberNumbersList\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"CurrentMemberNumber\": \"sample string 18\"\r\n}"}],"_postman_id":"351979cd-5da7-49eb-a934-2b215e8e6bea"},{"name":"GetPointsToBeExpired","id":"a621a8f9-ad5e-44dd-862a-de139f4ee6ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Loyalty/GetPointsToBeExpired?customerid=customerid-value&NBdays=NBdays-value&BrandID=BrandID-value","description":" <p>\n            Get points to be expired in period of time \n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetPointsToBeExpiredOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointToBeExpired</td><td>Double</td><td>Points to be expired</td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","GetPointsToBeExpired"],"host":["{{Host}}"],"query":[{"key":"customerid","value":"customerid-value"},{"key":"NBdays","value":"NBdays-value"},{"key":"BrandID","value":"BrandID-value"}],"variable":[]}},"response":[{"id":"5bf9dbb4-e298-408a-99ba-f6bee3f654d4","name":"api/Loyalty/GetPointsToBeExpired?customerid={customerid}&NBdays={NBdays}&BrandID={BrandID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Loyalty/GetPointsToBeExpired?customerid=customerid-value&NBdays=NBdays-value&BrandID=BrandID-value","protocol":"https","host":["{{Host}}"],"path":["api","Loyalty","GetPointsToBeExpired"],"query":[{"key":"customerid","value":"customerid-value"},{"key":"NBdays","value":"NBdays-value"},{"key":"BrandID","value":"BrandID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get points to be expired in period of time \r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetPointsToBeExpiredOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointToBeExpired</td><td>Double</td><td>Points to be expired</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"PointToBeExpired\": 1.1,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"a621a8f9-ad5e-44dd-862a-de139f4ee6ca"},{"name":"GetTransactionDetails","id":"a8ab47b2-03b7-46a0-942b-7fabe3933675","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Loyalty/GetTransactionDetails?customerid=customerid-value","description":" <p>\n            Get the history of transactions of the requested customer\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>LoyaltyTransaction Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Amount</td><td>Double (nullable)</td><td>amount</td></tr><tr><td>AmountEarned</td><td>Double (nullable)</td><td>Amount Earned</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID …</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td></tr><tr><td>NbPoints</td><td>Double</td><td>Number of points of this transaction</td></tr><tr><td>TransactionDate</td><td>DateTime</td><td>The datetime of the transaction</td></tr><tr><td>TransactionDescription</td><td>String</td><td>The description of the transaction</td></tr><tr><td>TransactionType</td><td>String</td><td>It will be:\n            -   “add” if the transaction was adding points\n            -   “redeem” if the transaction was removing points</td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","GetTransactionDetails"],"host":["{{Host}}"],"query":[{"key":"customerid","value":"customerid-value"}],"variable":[]}},"response":[{"id":"560ce26b-b1a7-4235-96f9-dd62e23ed4f2","name":"api/Loyalty/GetTransactionDetails?customerid={customerid} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Loyalty/GetTransactionDetails?customerid=customerid-value","protocol":"https","host":["{{Host}}"],"path":["api","Loyalty","GetTransactionDetails"],"query":[{"key":"customerid","value":"customerid-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get the history of transactions of the requested customer\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>LoyaltyTransaction Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Amount</td><td>Double (nullable)</td><td>amount</td></tr><tr><td>AmountEarned</td><td>Double (nullable)</td><td>Amount Earned</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID …</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td></tr><tr><td>NbPoints</td><td>Double</td><td>Number of points of this transaction</td></tr><tr><td>TransactionDate</td><td>DateTime</td><td>The datetime of the transaction</td></tr><tr><td>TransactionDescription</td><td>String</td><td>The description of the transaction</td></tr><tr><td>TransactionType</td><td>String</td><td>It will be:\n            -\t“add” if the transaction was adding points\n            -\t“redeem” if the transaction was removing points</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"NbPoints\": 1.1,\r\n    \"Amount\": 1.1,\r\n    \"AmountEarned\": 1.1,\r\n    \"TransactionType\": \"sample string 2\",\r\n    \"TransactionDescription\": \"sample string 3\",\r\n    \"TransactionDate\": \"2026-03-25T07:30:09.0915578+00:00\",\r\n    \"ExternalTransactionID\": \"sample string 5\",\r\n    \"LocationID\": \"sample string 6\",\r\n    \"LocationName\": \"sample string 7\"\r\n  },\r\n  {\r\n    \"NbPoints\": 1.1,\r\n    \"Amount\": 1.1,\r\n    \"AmountEarned\": 1.1,\r\n    \"TransactionType\": \"sample string 2\",\r\n    \"TransactionDescription\": \"sample string 3\",\r\n    \"TransactionDate\": \"2026-03-25T07:30:09.0915578+00:00\",\r\n    \"ExternalTransactionID\": \"sample string 5\",\r\n    \"LocationID\": \"sample string 6\",\r\n    \"LocationName\": \"sample string 7\"\r\n  }\r\n]"}],"_postman_id":"a8ab47b2-03b7-46a0-942b-7fabe3933675"},{"name":"RefundByAmount","id":"4b7a7232-a2ba-4d9e-918f-89baa5103ea2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Amount\": 1.1,\r\n  \"TranscationDescription\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"ExternalTransactionID\": \"sample string 4\",\r\n  \"LocationID\": \"sample string 5\",\r\n  \"LocationName\": \"sample string 6\",\r\n  \"ActionDate\": \"2026-03-25T07:30:09.1228097+00:00\",\r\n  \"ApplyTiersRate\": true\r\n}"},"url":"https://{{Host}}/api/Loyalty/RefundByAmount","description":" <p>\n            Refund amount\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>CashInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActionDate</td><td>DateTime (nullable)</td><td>The date of the action (if null we use current date time of the call)</td><td>False</td></tr><tr><td>Amount</td><td>Double</td><td>amount</td><td>True</td></tr><tr><td>ApplyTiersRate</td><td>Boolean</td><td>By Default is true. apply the tier rate when adding points (not used for BurnPoints method)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID …</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>False</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td><td>False</td></tr><tr><td>TranscationDescription</td><td>String</td><td>The description of the transaction</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PointsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","RefundByAmount"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"65209c2f-f42d-4601-a439-bd7f19ceb98c","name":"api/Loyalty/RefundByAmount Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Amount\": 1.1,\r\n  \"TranscationDescription\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"ExternalTransactionID\": \"sample string 4\",\r\n  \"LocationID\": \"sample string 5\",\r\n  \"LocationName\": \"sample string 6\",\r\n  \"ActionDate\": \"2026-03-25T07:30:09.1228097+00:00\",\r\n  \"ApplyTiersRate\": true\r\n}"},"url":"https://{{Host}}/api/Loyalty/RefundByAmount","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Refund amount\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CashInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActionDate</td><td>DateTime (nullable)</td><td>The date of the action (if null we use current date time of the call)</td><td>False</td></tr><tr><td>Amount</td><td>Double</td><td>amount</td><td>True</td></tr><tr><td>ApplyTiersRate</td><td>Boolean</td><td>By Default is true. apply the tier rate when adding points (not used for BurnPoints method)</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID …</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>False</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td><td>False</td></tr><tr><td>TranscationDescription</td><td>String</td><td>The description of the transaction</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PointsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"PointBalance\": 1,\r\n  \"CashBalance\": 2.1,\r\n  \"CustomerID\": 3,\r\n  \"Error\": \"sample string 4\"\r\n}"}],"_postman_id":"4b7a7232-a2ba-4d9e-918f-89baa5103ea2"},{"name":"ReservePoints","id":"465ee4b9-9dad-4eff-b223-90cf03ddbd79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"NbPoints\": 1.1,\r\n  \"Description\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"LocationID\": \"sample string 4\",\r\n  \"ExternalTransactionID\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/Loyalty/ReservePoints","description":" <p>\n            Reserve points for burn, the points will reserved until this will be confirmed by calling the method ConfirmBurnPoints/PostTransaction (the reservation code should be sent in the transaction payload) or 30 mn will be elapsed.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>PointReservationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>Description</td><td>String</td><td>The description of the transaction</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>True</td></tr><tr><td>NbPoints</td><td>Double</td><td>Number of point</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PointReservationOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr><tr><td>PointsReservationCode</td><td>Int32</td><td>this will be used to revoke this action</td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","ReservePoints"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"1309445c-87db-47ec-a5fc-af04516bde7c","name":"api/Loyalty/ReservePoints Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"NbPoints\": 1.1,\r\n  \"Description\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"LocationID\": \"sample string 4\",\r\n  \"ExternalTransactionID\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/Loyalty/ReservePoints","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Reserve points for burn, the points will reserved until this will be confirmed by calling the method ConfirmBurnPoints/PostTransaction (the reservation code should be sent in the transaction payload) or 30 mn will be elapsed.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PointReservationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>Description</td><td>String</td><td>The description of the transaction</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>True</td></tr><tr><td>NbPoints</td><td>Double</td><td>Number of point</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PointReservationOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr><tr><td>PointsReservationCode</td><td>Int32</td><td>this will be used to revoke this action</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"PointBalance\": 1,\r\n  \"CashBalance\": 2.1,\r\n  \"PointsReservationCode\": 3,\r\n  \"Error\": \"sample string 4\"\r\n}"}],"_postman_id":"465ee4b9-9dad-4eff-b223-90cf03ddbd79"},{"name":"ReservePointsByAmount","id":"12a48dc5-bff3-4eb6-aeca-d52b7e3983ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Amount\": 1.1,\r\n  \"Description\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"LocationID\": \"sample string 4\",\r\n  \"ExternalTransactionID\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/Loyalty/ReservePointsByAmount","description":" <p>\n            Reserve points by amount for burn (Atreemo wil convert the amount to points and reserve them), the points will reserved until this will be confirmed by calling the method ConfirmBurnPoints/PostTransaction (the reservation code should be sent in the transaction payload) or 30 mn will be elapsed.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>AmountReservationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Amount</td><td>Double</td><td>Amount</td><td>True</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>Description</td><td>String</td><td>The description of the transaction</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PointReservationOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr><tr><td>PointsReservationCode</td><td>Int32</td><td>this will be used to revoke this action</td></tr></table>","urlObject":{"protocol":"https","path":["api","Loyalty","ReservePointsByAmount"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"6bd329da-4145-41be-b554-4ca17e47eb43","name":"api/Loyalty/ReservePointsByAmount Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Amount\": 1.1,\r\n  \"Description\": \"sample string 2\",\r\n  \"CustomerID\": 3,\r\n  \"LocationID\": \"sample string 4\",\r\n  \"ExternalTransactionID\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/Loyalty/ReservePointsByAmount","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Reserve points by amount for burn (Atreemo wil convert the amount to points and reserve them), the points will reserved until this will be confirmed by calling the method ConfirmBurnPoints/PostTransaction (the reservation code should be sent in the transaction payload) or 30 mn will be elapsed.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>AmountReservationInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Amount</td><td>Double</td><td>Amount</td><td>True</td></tr><tr><td>CustomerID</td><td>Int32</td><td>The unique identifier of the customer in CRM side (CtcID).</td><td>True</td></tr><tr><td>Description</td><td>String</td><td>The description of the transaction</td><td>True</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PointReservationOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CashBalance</td><td>Double</td><td>Cash balance</td></tr><tr><td>Error</td><td>String</td><td>Error description if exist</td></tr><tr><td>PointBalance</td><td>Int32</td><td>Point balance</td></tr><tr><td>PointsReservationCode</td><td>Int32</td><td>this will be used to revoke this action</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"PointBalance\": 1,\r\n  \"CashBalance\": 2.1,\r\n  \"PointsReservationCode\": 3,\r\n  \"Error\": \"sample string 4\"\r\n}"}],"_postman_id":"12a48dc5-bff3-4eb6-aeca-d52b7e3983ca"}],"id":"9e139a8f-2e40-47a7-a71d-78a2c4c881ed","description":"<p>Api Methods for Loyalty</p>\n","_postman_id":"9e139a8f-2e40-47a7-a71d-78a2c4c881ed"},{"name":"LoyaltyPoint","item":[{"name":"Get","id":"e3f34917-c940-4550-88ab-85dd90654fb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/LoyaltyPoint/Get?CtcID=CtcID-value&BrandID=BrandID-value","description":" <p>\n            Get the loyalty details of the customer <br /><b>CtcID </b> :Mandatory parameter, Acteol ID of the customer<br /><b>BrandID </b> :Not mandatory parameter, only used if the instance contains multiple loyalty programs\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>LoyaltyPointOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>GetCustomerLoyalty</td><td>Loyalty program details</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>GetCustomerLoyalty Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CardsToken</td><td>List&lt;String&gt;</td><td>Collection of cards token linked to this customer</td></tr><tr><td>CurrentTiersName</td><td>String</td><td>the loyalty tiers name where the customer belongs to</td></tr><tr><td>CurrentYearPoints</td><td>Double</td><td></td></tr><tr><td>CyclePointsBalance</td><td>Double</td><td>The points/stamps balance of current cycle (this will used only if the loyalty program will contains multiple thresholds)</td></tr><tr><td>LifeTimePoints</td><td>Double</td><td>The sum of points/stamps earned all time (from the first day of being a loyal cutomer)</td></tr><tr><td>LoyaltyCashBalance</td><td>Double</td><td>Cash balance of the requested customer</td></tr><tr><td>LoyaltyPointsBalance</td><td>Double</td><td>Points/Stamps balance of the requested customer</td></tr><tr><td>MemberNumbers</td><td>List&lt;String&gt;</td><td>Collection of member numbers linked to this customer</td></tr><tr><td>NextTiersName</td><td>String</td><td>the loyalty tiers name that the customer can achieve</td></tr><tr><td>PARTokens</td><td>List&lt;String&gt;</td><td>Collection of PAR token linked to this customer</td></tr><tr><td>PointsNeededForNextRewards</td><td>Double</td><td>The number of points/stamps to be earned to get the next reward (this will used only if the loyalty program will contains a threshold)</td></tr><tr><td>TierLastUpdatedDate</td><td>DateTime (nullable)</td><td>The last update date of tier change</td></tr><tr><td>TiersExpirationDate</td><td>DateTime (nullable)</td><td>the date when the customer will be downgraded</td></tr></table>","urlObject":{"protocol":"https","path":["api","LoyaltyPoint","Get"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"BrandID","value":"BrandID-value"}],"variable":[]}},"response":[{"id":"b6455ce3-735d-4d0b-a2d7-c1e9052903bf","name":"api/LoyaltyPoint/Get?CtcID={CtcID}&BrandID={BrandID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/LoyaltyPoint/Get?CtcID=CtcID-value&BrandID=BrandID-value","protocol":"https","host":["{{Host}}"],"path":["api","LoyaltyPoint","Get"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"BrandID","value":"BrandID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get the loyalty details of the customer <br /><b>CtcID </b> :Mandatory parameter, Acteol ID of the customer<br /><b>BrandID </b> :Not mandatory parameter, only used if the instance contains multiple loyalty programs\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>LoyaltyPointOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>GetCustomerLoyalty</td><td>Loyalty program details</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>GetCustomerLoyalty Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CardsToken</td><td>List&lt;String&gt;</td><td>Collection of cards token linked to this customer</td></tr><tr><td>CurrentTiersName</td><td>String</td><td>the loyalty tiers name where the customer belongs to</td></tr><tr><td>CurrentYearPoints</td><td>Double</td><td></td></tr><tr><td>CyclePointsBalance</td><td>Double</td><td>The points/stamps balance of current cycle (this will used only if the loyalty program will contains multiple thresholds)</td></tr><tr><td>LifeTimePoints</td><td>Double</td><td>The sum of points/stamps earned all time (from the first day of being a loyal cutomer)</td></tr><tr><td>LoyaltyCashBalance</td><td>Double</td><td>Cash balance of the requested customer</td></tr><tr><td>LoyaltyPointsBalance</td><td>Double</td><td>Points/Stamps balance of the requested customer</td></tr><tr><td>MemberNumbers</td><td>List&lt;String&gt;</td><td>Collection of member numbers linked to this customer</td></tr><tr><td>NextTiersName</td><td>String</td><td>the loyalty tiers name that the customer can achieve</td></tr><tr><td>PARTokens</td><td>List&lt;String&gt;</td><td>Collection of PAR token linked to this customer</td></tr><tr><td>PointsNeededForNextRewards</td><td>Double</td><td>The number of points/stamps to be earned to get the next reward (this will used only if the loyalty program will contains a threshold)</td></tr><tr><td>TierLastUpdatedDate</td><td>DateTime (nullable)</td><td>The last update date of tier change</td></tr><tr><td>TiersExpirationDate</td><td>DateTime (nullable)</td><td>the date when the customer will be downgraded</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseData\": {\r\n    \"LoyaltyPointsBalance\": 1.1,\r\n    \"LoyaltyCashBalance\": 2.1,\r\n    \"LifeTimePoints\": 3.1,\r\n    \"CurrentYearPoints\": 4.1,\r\n    \"CyclePointsBalance\": 5.1,\r\n    \"PointsNeededForNextRewards\": 6.1,\r\n    \"CurrentTiersName\": \"sample string 7\",\r\n    \"TierLastUpdatedDate\": \"2026-03-25T07:30:09.1228097+00:00\",\r\n    \"NextTiersName\": \"sample string 8\",\r\n    \"TiersExpirationDate\": \"2026-03-25T07:30:09.1228097+00:00\",\r\n    \"MemberNumbers\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardsToken\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"PARTokens\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"e3f34917-c940-4550-88ab-85dd90654fb9"},{"name":"GetCustomerPointsdetails","id":"e010edd0-2b02-444b-a2b5-203f6100c763","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/LoyaltyPoint/GetCustomerPointsdetails?CtcID=CtcID-value&BrandID=BrandID-value","description":" <p>\n            Get the history of loyalty points of the requested customer <br /><b>CtcID </b> :Mandatory parameter, Acteol ID of the customer<br /><b>BrandID </b> :Not mandatory parameter, only used if the instance contains multiple loyalty programs\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>LoyaltyPointTransactionDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>List&lt;LoyaltyPointTransaction&gt;</td><td>List of transaction details</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>LoyaltyPointTransaction Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Amount</td><td>Double (nullable)</td><td>Amount</td></tr><tr><td>AmountEarned</td><td>Double (nullable)</td><td>Amount Earned</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td></tr><tr><td>NbPoints</td><td>Double</td><td>Number of points of this transaction</td></tr><tr><td>OrderId</td><td>String</td><td>Order ID</td></tr><tr><td>ReservationRef</td><td>String</td><td>Reservation Reference</td></tr><tr><td>TransactionDate</td><td>DateTime</td><td>The datetime of the transaction</td></tr><tr><td>TransactionDescription</td><td>String</td><td>The description of the transaction</td></tr><tr><td>TransactionType</td><td>String</td><td>It will be:\n            - \"add\" if the transaction was adding points\n            - \"redeem\" if the transaction was removing points</td></tr></table>","urlObject":{"protocol":"https","path":["api","LoyaltyPoint","GetCustomerPointsdetails"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"BrandID","value":"BrandID-value"}],"variable":[]}},"response":[{"id":"c471b245-4a18-4cf4-8258-557e0b8a2c08","name":"api/LoyaltyPoint/GetCustomerPointsdetails?CtcID={CtcID}&BrandID={BrandID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/LoyaltyPoint/GetCustomerPointsdetails?CtcID=CtcID-value&BrandID=BrandID-value","protocol":"https","host":["{{Host}}"],"path":["api","LoyaltyPoint","GetCustomerPointsdetails"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"BrandID","value":"BrandID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get the history of loyalty points of the requested customer <br /><b>CtcID </b> :Mandatory parameter, Acteol ID of the customer<br /><b>BrandID </b> :Not mandatory parameter, only used if the instance contains multiple loyalty programs\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>LoyaltyPointTransactionDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>List&lt;LoyaltyPointTransaction&gt;</td><td>List of transaction details</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>LoyaltyPointTransaction Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Amount</td><td>Double (nullable)</td><td>Amount</td></tr><tr><td>AmountEarned</td><td>Double (nullable)</td><td>Amount Earned</td></tr><tr><td>ExternalTransactionID</td><td>String</td><td>The external ID like TicketID or ReceiptID</td></tr><tr><td>LocationID</td><td>String</td><td>Location ID</td></tr><tr><td>LocationName</td><td>String</td><td>Location Name</td></tr><tr><td>NbPoints</td><td>Double</td><td>Number of points of this transaction</td></tr><tr><td>OrderId</td><td>String</td><td>Order ID</td></tr><tr><td>ReservationRef</td><td>String</td><td>Reservation Reference</td></tr><tr><td>TransactionDate</td><td>DateTime</td><td>The datetime of the transaction</td></tr><tr><td>TransactionDescription</td><td>String</td><td>The description of the transaction</td></tr><tr><td>TransactionType</td><td>String</td><td>It will be:\n            - \"add\" if the transaction was adding points\n            - \"redeem\" if the transaction was removing points</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseData\": [\r\n    {\r\n      \"NbPoints\": 1.1,\r\n      \"Amount\": 1.1,\r\n      \"AmountEarned\": 1.1,\r\n      \"TransactionType\": \"sample string 2\",\r\n      \"TransactionDescription\": \"sample string 3\",\r\n      \"TransactionDate\": \"2026-03-25T07:30:09.1385982+00:00\",\r\n      \"ExternalTransactionID\": \"sample string 5\",\r\n      \"LocationID\": \"sample string 6\",\r\n      \"LocationName\": \"sample string 7\",\r\n      \"OrderId\": \"sample string 8\",\r\n      \"ReservationRef\": \"sample string 9\"\r\n    },\r\n    {\r\n      \"NbPoints\": 1.1,\r\n      \"Amount\": 1.1,\r\n      \"AmountEarned\": 1.1,\r\n      \"TransactionType\": \"sample string 2\",\r\n      \"TransactionDescription\": \"sample string 3\",\r\n      \"TransactionDate\": \"2026-03-25T07:30:09.1385982+00:00\",\r\n      \"ExternalTransactionID\": \"sample string 5\",\r\n      \"LocationID\": \"sample string 6\",\r\n      \"LocationName\": \"sample string 7\",\r\n      \"OrderId\": \"sample string 8\",\r\n      \"ReservationRef\": \"sample string 9\"\r\n    }\r\n  ],\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"e010edd0-2b02-444b-a2b5-203f6100c763"}],"id":"bac2befb-9f58-42ed-b5a6-a731f7473890","description":"<p>API method to manage loyalty points/stamps<br /></p><h2>Standard API Responses</h2><li><strong>200</strong> Success</li><li><strong>401</strong> Unauthorized (no valid access token provided)</li><li><strong>403</strong> Forbidden Forbidden (indicates you do not have access to this method)</li><li><strong>404</strong> Not Found (indicates invalid parameters or missing API endpoint)</li><li><strong>500</strong> Internal Server Error (indicates something went wrong on our end)</li><br /><br />for 200-level responses there is a field named <strong>ResponseStatus</strong> which will give you the status of the call :<li><b>true</b> Success</li><li><b>false</b> there is an error (you will find the error code and the description in the object <b>Errors</b>) </li><br /><br /><h2>Possible Errors</h2><li><strong>2</strong> Internal Error</li><li><strong>3</strong> Not authorized to use the brand requested or brand id is missing</li><li><strong>4</strong> No Data found</li><li><strong>13</strong> Invalid CtcID</li><p></p>\n","_postman_id":"bac2befb-9f58-42ed-b5a6-a731f7473890"},{"name":"LoyaltyProgram","item":[{"name":"Get","id":"62ae4e82-32bb-409c-a964-da1f98e3cb72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/LoyaltyProgram/Get?BrandID=BrandID-value","description":" <p>\n            This method will return the loyalty program details to the specified brand sent in the parameter <br /><b>BrandID </b> :Not mandatory parameter, only used if the instance contains multiple loyalty programs\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>LoyaltyProgramOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>LoyaltyProgram</td><td>Loyalty program details</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>LoyaltyProgram Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td>The status of the program</td></tr><tr><td>BrandID</td><td>Int32</td><td>The ID of the brand <b>value = 0 mean that theris only one loyalty program in the instance</b></td></tr><tr><td>BrandName</td><td>String</td><td>the name of the brand</td></tr><tr><td>CashRatio</td><td>Int32</td><td>The ratio will be used to calaculate the balance of the customer when converted to cash <b>(Applicable only if scheme is Points)</b></td></tr><tr><td>EarningRatio</td><td>Int32</td><td>The ratio will be used to calaculate the points based on the payment amount <b>(Applicable only if scheme is Points)</b></td></tr><tr><td>LoyaltyProgramID</td><td>Int32</td><td>The ID of the program</td></tr><tr><td>MaxPerday</td><td>Int32</td><td>Maximum earning per day</td></tr><tr><td>Rewards</td><td>Int32</td><td>Number of Points/Stamps after each transaction <b>(Applicable only if scheme is Stamps)</b></td></tr><tr><td>Scheme</td><td>String</td><td>The type of loyalty program (Points or Stamps)</td></tr><tr><td>Thresholds</td><td>List&lt;LoyaltyThreshold&gt;</td><td>List of thresholds if exist</td></tr><tr><td><h4>LoyaltyThreshold Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Name</td><td>String</td><td>The name of the threshold</td></tr><tr><td>OfferID</td><td>Int32</td><td>The offer to be given to the customer once he raech the threshold value</td></tr><tr><td>Priority</td><td>Int32</td><td>The priority if we hame many</td></tr><tr><td>ThresholdID</td><td>Int32</td><td>The ID of the Threshold</td></tr><tr><td>Value</td><td>Int32</td><td>When a customer reach this value , we will burn these points/stamps and convert them to offer if exist</td></tr></table>","urlObject":{"protocol":"https","path":["api","LoyaltyProgram","Get"],"host":["{{Host}}"],"query":[{"key":"BrandID","value":"BrandID-value"}],"variable":[]}},"response":[{"id":"fd1c29d9-2e7b-4d7d-9256-11d175886810","name":"api/LoyaltyProgram/Get?BrandID={BrandID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/LoyaltyProgram/Get?BrandID=BrandID-value","protocol":"https","host":["{{Host}}"],"path":["api","LoyaltyProgram","Get"],"query":[{"key":"BrandID","value":"BrandID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            This method will return the loyalty program details to the specified brand sent in the parameter <br /><b>BrandID </b> :Not mandatory parameter, only used if the instance contains multiple loyalty programs\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>LoyaltyProgramOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>LoyaltyProgram</td><td>Loyalty program details</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>LoyaltyProgram Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td>The status of the program</td></tr><tr><td>BrandID</td><td>Int32</td><td>The ID of the brand <b>value = 0 mean that theris only one loyalty program in the instance</b></td></tr><tr><td>BrandName</td><td>String</td><td>the name of the brand</td></tr><tr><td>CashRatio</td><td>Int32</td><td>The ratio will be used to calaculate the balance of the customer when converted to cash <b>(Applicable only if scheme is Points)</b></td></tr><tr><td>EarningRatio</td><td>Int32</td><td>The ratio will be used to calaculate the points based on the payment amount <b>(Applicable only if scheme is Points)</b></td></tr><tr><td>LoyaltyProgramID</td><td>Int32</td><td>The ID of the program</td></tr><tr><td>MaxPerday</td><td>Int32</td><td>Maximum earning per day</td></tr><tr><td>Rewards</td><td>Int32</td><td>Number of Points/Stamps after each transaction <b>(Applicable only if scheme is Stamps)</b></td></tr><tr><td>Scheme</td><td>String</td><td>The type of loyalty program (Points or Stamps)</td></tr><tr><td>Thresholds</td><td>List&lt;LoyaltyThreshold&gt;</td><td>List of thresholds if exist</td></tr><tr><td colspan=3><h4>LoyaltyThreshold Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Name</td><td>String</td><td>The name of the threshold</td></tr><tr><td>OfferID</td><td>Int32</td><td>The offer to be given to the customer once he raech the threshold value</td></tr><tr><td>Priority</td><td>Int32</td><td>The priority if we hame many</td></tr><tr><td>ThresholdID</td><td>Int32</td><td>The ID of the Threshold</td></tr><tr><td>Value</td><td>Int32</td><td>When a customer reach this value , we will burn these points/stamps and convert them to offer if exist</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseData\": {\r\n    \"LoyaltyProgramID\": 1,\r\n    \"Scheme\": \"sample string 2\",\r\n    \"MaxPerday\": 3,\r\n    \"Rewards\": 4,\r\n    \"EarningRatio\": 5,\r\n    \"CashRatio\": 6,\r\n    \"Thresholds\": [\r\n      {\r\n        \"ThresholdID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"Priority\": 3,\r\n        \"Value\": 4,\r\n        \"OfferID\": 5\r\n      },\r\n      {\r\n        \"ThresholdID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"Priority\": 3,\r\n        \"Value\": 4,\r\n        \"OfferID\": 5\r\n      }\r\n    ],\r\n    \"Active\": true,\r\n    \"BrandID\": 8,\r\n    \"BrandName\": \"sample string 9\"\r\n  },\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"62ae4e82-32bb-409c-a964-da1f98e3cb72"}],"id":"190d42ce-d065-49f8-8479-ec83eb77135b","description":"<p>API method to get loyalty program details<br /></p><h2>Standard API Responses</h2><li><strong>200</strong> Success</li><li><strong>401</strong> Unauthorized (no valid access token provided)</li><li><strong>403</strong> Forbidden Forbidden (indicates you do not have access to this method)</li><li><strong>404</strong> Not Found (indicates invalid parameters or missing API endpoint)</li><li><strong>500</strong> Internal Server Error (indicates something went wrong on our end)</li><br /><br />for 200-level responses there is a field named <strong>ResponseStatus</strong> which will give you the status of the call :<li><b>true</b> Success</li><li><b>false</b> there is an error (you will find the error code and the description in the object <b>Errors</b>) </li><br /><br /><h2>Possible Errors</h2><li><strong>2</strong> Internal Error</li><li><strong>3</strong> Not authorized to use the brand requested or brand id is missing</li><li><strong>26</strong> Many result returned, please specify a brandID</li><p></p>\n","_postman_id":"190d42ce-d065-49f8-8479-ec83eb77135b"},{"name":"Product","item":[{"name":"GET","id":"d66b4d48-ca84-43b3-9957-5d5a9d1345d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Product/GET","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>GETProductOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>listProducts</td><td>List&lt;Product&gt;</td><td>Collection of Product</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the relation was successfully added to CRM, if false an error has occured and you will find the description in the field \"Error\")</td></tr><tr><td><h4>Product Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>GroupName</td><td>String</td><td></td></tr><tr><td>Image</td><td>String</td><td></td></tr><tr><td>Price</td><td>Double</td><td></td></tr><tr><td>ProductCode</td><td>String</td><td></td></tr><tr><td>SearchTag</td><td>String</td><td></td></tr><tr><td>Stock</td><td>Double</td><td></td></tr><tr><td>SubGroupID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>SubGroupName</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Product","GET"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"6193c600-ea6e-4e51-9097-9d926a9d874e","name":"api/Product/GET Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Product/GET","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GETProductOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>listProducts</td><td>List&lt;Product&gt;</td><td>Collection of Product</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the relation was successfully added to CRM, if false an error has occured and you will find the description in the field \"Error\")</td></tr><tr><td colspan=3><h4>Product Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>GroupName</td><td>String</td><td></td></tr><tr><td>Image</td><td>String</td><td></td></tr><tr><td>Price</td><td>Double</td><td></td></tr><tr><td>ProductCode</td><td>String</td><td></td></tr><tr><td>SearchTag</td><td>String</td><td></td></tr><tr><td>Stock</td><td>Double</td><td></td></tr><tr><td>SubGroupID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>SubGroupName</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\",\r\n  \"listProducts\": [\r\n    {\r\n      \"ProductCode\": \"sample string 2\",\r\n      \"Description\": \"sample string 3\",\r\n      \"Price\": 4.1,\r\n      \"SearchTag\": \"sample string 5\",\r\n      \"GroupID\": 6,\r\n      \"GroupName\": \"sample string 7\",\r\n      \"SubGroupID\": 1,\r\n      \"SubGroupName\": \"sample string 8\",\r\n      \"Image\": \"sample string 9\",\r\n      \"Stock\": 10.1\r\n    },\r\n    {\r\n      \"ProductCode\": \"sample string 2\",\r\n      \"Description\": \"sample string 3\",\r\n      \"Price\": 4.1,\r\n      \"SearchTag\": \"sample string 5\",\r\n      \"GroupID\": 6,\r\n      \"GroupName\": \"sample string 7\",\r\n      \"SubGroupID\": 1,\r\n      \"SubGroupName\": \"sample string 8\",\r\n      \"Image\": \"sample string 9\",\r\n      \"Stock\": 10.1\r\n    }\r\n  ]\r\n}"}],"_postman_id":"d66b4d48-ca84-43b3-9957-5d5a9d1345d4"},{"name":"GetProductGroups","id":"4f90b0f1-a065-4b0e-afd4-fc56a2af561d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Product/GetProductGroups?GroupName=GroupName-value&BrandID=BrandID-value","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>ProductGroupOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>listProductGroup</td><td>List&lt;ProductGroup&gt;</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td><h4>ProductGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>GroupName</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Product","GetProductGroups"],"host":["{{Host}}"],"query":[{"key":"GroupName","value":"GroupName-value"},{"key":"BrandID","value":"BrandID-value"}],"variable":[]}},"response":[{"id":"708662d4-de3a-4f71-a6d1-9090767205c4","name":"api/Product/GetProductGroups?GroupName={GroupName}&BrandID={BrandID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Product/GetProductGroups?GroupName=GroupName-value&BrandID=BrandID-value","protocol":"https","host":["{{Host}}"],"path":["api","Product","GetProductGroups"],"query":[{"key":"GroupName","value":"GroupName-value"},{"key":"BrandID","value":"BrandID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ProductGroupOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>listProductGroup</td><td>List&lt;ProductGroup&gt;</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr><tr><td colspan=3><h4>ProductGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>GroupName</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\",\r\n  \"listProductGroup\": [\r\n    {\r\n      \"GroupID\": 1,\r\n      \"BrandID\": 1,\r\n      \"GroupName\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"GroupID\": 1,\r\n      \"BrandID\": 1,\r\n      \"GroupName\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"4f90b0f1-a065-4b0e-afd4-fc56a2af561d"},{"name":"GetProductSubGroups","id":"8f7d7005-6b2d-4b87-8e0d-1af3226df88c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Product/GetProductSubGroups?GroupID=GroupID-value","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>ProductSubGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupName</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Product","GetProductSubGroups"],"host":["{{Host}}"],"query":[{"key":"GroupID","value":"GroupID-value"}],"variable":[]}},"response":[{"id":"02851a81-2b79-4174-9a90-1e9e1650d843","name":"api/Product/GetProductSubGroups?GroupID={GroupID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Product/GetProductSubGroups?GroupID=GroupID-value","protocol":"https","host":["{{Host}}"],"path":["api","Product","GetProductSubGroups"],"query":[{"key":"GroupID","value":"GroupID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ProductSubGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupName</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"SubGroupID\": 1,\r\n    \"BrandID\": 1,\r\n    \"GroupID\": 2,\r\n    \"SubGroupName\": \"sample string 3\"\r\n  },\r\n  {\r\n    \"SubGroupID\": 1,\r\n    \"BrandID\": 1,\r\n    \"GroupID\": 2,\r\n    \"SubGroupName\": \"sample string 3\"\r\n  }\r\n]"}],"_postman_id":"8f7d7005-6b2d-4b87-8e0d-1af3226df88c"},{"name":"POST","id":"3b416d9f-4410-47db-b80c-854fc21563f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ProductsList\": [\r\n    {\r\n      \"ProductCode\": \"sample string 2\",\r\n      \"Description\": \"sample string 3\",\r\n      \"Price\": 4.1,\r\n      \"SearchTag\": \"sample string 5\",\r\n      \"GroupID\": 6,\r\n      \"GroupName\": \"sample string 7\",\r\n      \"SubGroupID\": 1,\r\n      \"SubGroupName\": \"sample string 8\",\r\n      \"Image\": \"sample string 9\",\r\n      \"Stock\": 10.1\r\n    },\r\n    {\r\n      \"ProductCode\": \"sample string 2\",\r\n      \"Description\": \"sample string 3\",\r\n      \"Price\": 4.1,\r\n      \"SearchTag\": \"sample string 5\",\r\n      \"GroupID\": 6,\r\n      \"GroupName\": \"sample string 7\",\r\n      \"SubGroupID\": 1,\r\n      \"SubGroupName\": \"sample string 8\",\r\n      \"Image\": \"sample string 9\",\r\n      \"Stock\": 10.1\r\n    }\r\n  ],\r\n  \"BrandID\": 1\r\n}"},"url":"https://{{Host}}/api/Product/POST","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>InputProductsList Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>ProductsList</td><td>List&lt;Product&gt;</td><td></td><td>True</td></tr><tr><td><h4>Product Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>GroupID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>GroupName</td><td>String</td><td></td><td>False</td></tr><tr><td>Image</td><td>String</td><td></td><td>False</td></tr><tr><td>Price</td><td>Double</td><td></td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td></td><td>True</td></tr><tr><td>SearchTag</td><td>String</td><td></td><td>False</td></tr><tr><td>Stock</td><td>Double</td><td></td><td>False</td></tr><tr><td>SubGroupID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SubGroupName</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ProductApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>InvalidProductsList</td><td>List&lt;InvalidProducts&gt;</td><td>Invalid products details</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr><tr><td><h4>InvalidProducts Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorMessage</td><td>String</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupID</td><td>Int32 (nullable)</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Product","POST"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"1e758253-27aa-4748-946b-cc7b4982e619","name":"api/Product/POST Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ProductsList\": [\r\n    {\r\n      \"ProductCode\": \"sample string 2\",\r\n      \"Description\": \"sample string 3\",\r\n      \"Price\": 4.1,\r\n      \"SearchTag\": \"sample string 5\",\r\n      \"GroupID\": 6,\r\n      \"GroupName\": \"sample string 7\",\r\n      \"SubGroupID\": 1,\r\n      \"SubGroupName\": \"sample string 8\",\r\n      \"Image\": \"sample string 9\",\r\n      \"Stock\": 10.1\r\n    },\r\n    {\r\n      \"ProductCode\": \"sample string 2\",\r\n      \"Description\": \"sample string 3\",\r\n      \"Price\": 4.1,\r\n      \"SearchTag\": \"sample string 5\",\r\n      \"GroupID\": 6,\r\n      \"GroupName\": \"sample string 7\",\r\n      \"SubGroupID\": 1,\r\n      \"SubGroupName\": \"sample string 8\",\r\n      \"Image\": \"sample string 9\",\r\n      \"Stock\": 10.1\r\n    }\r\n  ],\r\n  \"BrandID\": 1\r\n}"},"url":"https://{{Host}}/api/Product/POST","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>InputProductsList Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>ProductsList</td><td>List&lt;Product&gt;</td><td></td><td>True</td></tr><tr><td colspan=4><h4>Product Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>GroupID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>GroupName</td><td>String</td><td></td><td>False</td></tr><tr><td>Image</td><td>String</td><td></td><td>False</td></tr><tr><td>Price</td><td>Double</td><td></td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td></td><td>True</td></tr><tr><td>SearchTag</td><td>String</td><td></td><td>False</td></tr><tr><td>Stock</td><td>Double</td><td></td><td>False</td></tr><tr><td>SubGroupID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SubGroupName</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ProductApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>InvalidProductsList</td><td>List&lt;InvalidProducts&gt;</td><td>Invalid products details</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr><tr><td colspan=3><h4>InvalidProducts Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorMessage</td><td>String</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupID</td><td>Int32 (nullable)</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\",\r\n  \"InvalidProductsList\": [\r\n    {\r\n      \"GroupID\": 1,\r\n      \"SubGroupID\": 1,\r\n      \"ErrorMessage\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"GroupID\": 1,\r\n      \"SubGroupID\": 1,\r\n      \"ErrorMessage\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"3b416d9f-4410-47db-b80c-854fc21563f3"},{"name":"PostProductGroup","id":"50402a79-7bfa-4e3c-8c16-6fd58d817c7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"GroupID\": 1,\r\n  \"BrandID\": 1,\r\n  \"GroupName\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Product/PostProductGroup","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>ProductGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>GroupID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>GroupName</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>OutputProductGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>idProductGroup</td><td>Int32</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Product","PostProductGroup"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"b39400d4-3b2d-4ea4-82d7-77fdab254cbc","name":"api/Product/PostProductGroup Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"GroupID\": 1,\r\n  \"BrandID\": 1,\r\n  \"GroupName\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Product/PostProductGroup","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ProductGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>GroupID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>GroupName</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>OutputProductGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>idProductGroup</td><td>Int32</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\",\r\n  \"idProductGroup\": 3\r\n}"}],"_postman_id":"50402a79-7bfa-4e3c-8c16-6fd58d817c7d"},{"name":"PostProductSubGroup","id":"4616b145-10ca-46f0-8df0-dfe858b6c3fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SubGroupID\": 1,\r\n  \"BrandID\": 1,\r\n  \"GroupID\": 2,\r\n  \"SubGroupName\": \"sample string 3\"\r\n}"},"url":"https://{{Host}}/api/Product/PostProductSubGroup","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>ProductSubGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>GroupID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubGroupID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubGroupName</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>OutputProductSubGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>idProductSubGroup</td><td>Int32</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Product","PostProductSubGroup"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"638bdded-014d-48b0-8547-ba3eadd64ba4","name":"api/Product/PostProductSubGroup Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SubGroupID\": 1,\r\n  \"BrandID\": 1,\r\n  \"GroupID\": 2,\r\n  \"SubGroupName\": \"sample string 3\"\r\n}"},"url":"https://{{Host}}/api/Product/PostProductSubGroup","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ProductSubGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>GroupID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubGroupID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubGroupName</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>OutputProductSubGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td></td></tr><tr><td>idProductSubGroup</td><td>Int32</td><td></td></tr><tr><td>Response</td><td>Boolean</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\",\r\n  \"idProductSubGroup\": 3\r\n}"}],"_postman_id":"4616b145-10ca-46f0-8df0-dfe858b6c3fa"}],"id":"e2c23e43-fd12-4ea4-a38f-b76f820c66d7","description":"<p>Api Methods for Product</p>\n","_postman_id":"e2c23e43-fd12-4ea4-a38f-b76f820c66d7"},{"name":"RealTimeTriggerApi","item":[{"name":"DispatchTransactionPost","id":"1f485f73-ef9e-4c36-92e8-0ffa1e144c9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"LocationID\": 2,\r\n  \"EarnedPoints\": 3.1,\r\n  \"SendLoyaltyCommunications\": true,\r\n  \"BrandID\": 1\r\n}"},"url":"https://{{Host}}/api/RealTimeTriggerApi/DispatchTransactionPost","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>TransactionPostTriggerRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EarnedPoints</td><td>Double</td><td></td><td>False</td></tr><tr><td>LocationID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SendLoyaltyCommunications</td><td>Boolean</td><td></td><td>False</td></tr></table>","urlObject":{"protocol":"https","path":["api","RealTimeTriggerApi","DispatchTransactionPost"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"1fa3e279-d0c4-4761-8601-1f63269ae9d3","name":"api/RealTimeTriggerApi/DispatchTransactionPost Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"LocationID\": 2,\r\n  \"EarnedPoints\": 3.1,\r\n  \"SendLoyaltyCommunications\": true,\r\n  \"BrandID\": 1\r\n}"},"url":"https://{{Host}}/api/RealTimeTriggerApi/DispatchTransactionPost","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>TransactionPostTriggerRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EarnedPoints</td><td>Double</td><td></td><td>False</td></tr><tr><td>LocationID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SendLoyaltyCommunications</td><td>Boolean</td><td></td><td>False</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1f485f73-ef9e-4c36-92e8-0ffa1e144c9b"}],"id":"ceeffbc8-9ca2-449b-87eb-0cff238bcd5c","description":"<p>Api Methods for RealTimeTriggerApi</p>\n","_postman_id":"ceeffbc8-9ca2-449b-87eb-0cff238bcd5c"},{"name":"Relationship","item":[{"name":"DeleteAllMasters","id":"8a737b27-be43-42a8-b078-045cfbeaca69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Relationship/DeleteAllMasters?SlaveCtcID=SlaveCtcID-value&RelationID=RelationID-value","description":" <p>\n            Delete all masters by SlaveCtcID and RelationID\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>RelationshipOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>IsValid</td><td>Boolean</td><td>Specify whether The result action is valid to be executed or not</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the relation was successfully added to CRM, if false an error has occured and you will find the description in the field \"Error\")</td></tr></table>","urlObject":{"protocol":"https","path":["api","Relationship","DeleteAllMasters"],"host":["{{Host}}"],"query":[{"key":"SlaveCtcID","value":"SlaveCtcID-value"},{"key":"RelationID","value":"RelationID-value"}],"variable":[]}},"response":[{"id":"24ad0104-ec3f-4351-b4cc-ae9279fbcaaf","name":"api/Relationship/DeleteAllMasters?SlaveCtcID={SlaveCtcID}&RelationID={RelationID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/Relationship/DeleteAllMasters?SlaveCtcID=SlaveCtcID-value&RelationID=RelationID-value","protocol":"https","host":["{{Host}}"],"path":["api","Relationship","DeleteAllMasters"],"query":[{"key":"SlaveCtcID","value":"SlaveCtcID-value"},{"key":"RelationID","value":"RelationID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Delete all masters by SlaveCtcID and RelationID\r\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>RelationshipOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>IsValid</td><td>Boolean</td><td>Specify whether The result action is valid to be executed or not</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the relation was successfully added to CRM, if false an error has occured and you will find the description in the field \"Error\")</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"IsValid\": true,\r\n  \"Error\": \"sample string 3\"\r\n}"}],"_postman_id":"8a737b27-be43-42a8-b078-045cfbeaca69"},{"name":"DeleteAllSalves","id":"c15dcab5-6f3b-46a5-b91f-605f55da4448","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Relationship/DeleteAllSalves?MasterCtcID=MasterCtcID-value&RelationID=RelationID-value","description":" <p>\n            Delete all slaves by MasterCtcID and RelationID\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>RelationshipOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>IsValid</td><td>Boolean</td><td>Specify whether The result action is valid to be executed or not</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the relation was successfully added to CRM, if false an error has occured and you will find the description in the field \"Error\")</td></tr></table>","urlObject":{"protocol":"https","path":["api","Relationship","DeleteAllSalves"],"host":["{{Host}}"],"query":[{"key":"MasterCtcID","value":"MasterCtcID-value"},{"key":"RelationID","value":"RelationID-value"}],"variable":[]}},"response":[{"id":"61c56c17-3624-4511-9d88-6bbe13f91378","name":"api/Relationship/DeleteAllSalves?MasterCtcID={MasterCtcID}&RelationID={RelationID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/Relationship/DeleteAllSalves?MasterCtcID=MasterCtcID-value&RelationID=RelationID-value","protocol":"https","host":["{{Host}}"],"path":["api","Relationship","DeleteAllSalves"],"query":[{"key":"MasterCtcID","value":"MasterCtcID-value"},{"key":"RelationID","value":"RelationID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Delete all slaves by MasterCtcID and RelationID\r\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>RelationshipOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>IsValid</td><td>Boolean</td><td>Specify whether The result action is valid to be executed or not</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the relation was successfully added to CRM, if false an error has occured and you will find the description in the field \"Error\")</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"IsValid\": true,\r\n  \"Error\": \"sample string 3\"\r\n}"}],"_postman_id":"c15dcab5-6f3b-46a5-b91f-605f55da4448"},{"name":"DeleteByMasterAndSalve","id":"01ab2522-5d09-4a11-8850-f297adc8f1b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Relationship/DeleteByMasterAndSalve?MasterCtcID=MasterCtcID-value&SlaveCtcID=SlaveCtcID-value","description":" <p>\n            Delete a Relationship by Master and Slave Customer ID\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>RelationshipOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>IsValid</td><td>Boolean</td><td>Specify whether The result action is valid to be executed or not</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the relation was successfully added to CRM, if false an error has occured and you will find the description in the field \"Error\")</td></tr></table>","urlObject":{"protocol":"https","path":["api","Relationship","DeleteByMasterAndSalve"],"host":["{{Host}}"],"query":[{"key":"MasterCtcID","value":"MasterCtcID-value"},{"key":"SlaveCtcID","value":"SlaveCtcID-value"}],"variable":[]}},"response":[{"id":"ae801ace-b1f6-4e56-b53f-a8494e18a12e","name":"api/Relationship/DeleteByMasterAndSalve?MasterCtcID={MasterCtcID}&SlaveCtcID={SlaveCtcID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/Relationship/DeleteByMasterAndSalve?MasterCtcID=MasterCtcID-value&SlaveCtcID=SlaveCtcID-value","protocol":"https","host":["{{Host}}"],"path":["api","Relationship","DeleteByMasterAndSalve"],"query":[{"key":"MasterCtcID","value":"MasterCtcID-value"},{"key":"SlaveCtcID","value":"SlaveCtcID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Delete a Relationship by Master and Slave Customer ID\r\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>RelationshipOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>IsValid</td><td>Boolean</td><td>Specify whether The result action is valid to be executed or not</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the relation was successfully added to CRM, if false an error has occured and you will find the description in the field \"Error\")</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"IsValid\": true,\r\n  \"Error\": \"sample string 3\"\r\n}"}],"_postman_id":"01ab2522-5d09-4a11-8850-f297adc8f1b1"},{"name":"GetByMaster","id":"355e11ef-0037-4376-8947-05ddc9377bed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Relationship/GetByMaster?CtcID=CtcID-value","description":" <p>\n            Get relations by Master Customer\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>RelationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>RelationID</td><td>Int32</td><td></td></tr><tr><td>RelationName</td><td>String</td><td></td></tr><tr><td>SourceID</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Relationship","GetByMaster"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"}],"variable":[]}},"response":[{"id":"3007a90d-7763-4c60-9250-0da2f47762fa","name":"api/Relationship/GetByMaster?CtcID={CtcID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Relationship/GetByMaster?CtcID=CtcID-value","protocol":"https","host":["{{Host}}"],"path":["api","Relationship","GetByMaster"],"query":[{"key":"CtcID","value":"CtcID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get relations by Master Customer\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>RelationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>RelationID</td><td>Int32</td><td></td></tr><tr><td>RelationName</td><td>String</td><td></td></tr><tr><td>SourceID</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"RelationID\": 1,\r\n    \"RelationName\": \"sample string 2\",\r\n    \"CtcID\": 3,\r\n    \"SourceID\": \"sample string 4\"\r\n  },\r\n  {\r\n    \"RelationID\": 1,\r\n    \"RelationName\": \"sample string 2\",\r\n    \"CtcID\": 3,\r\n    \"SourceID\": \"sample string 4\"\r\n  }\r\n]"}],"_postman_id":"355e11ef-0037-4376-8947-05ddc9377bed"},{"name":"GetBySlave","id":"23456ca7-4098-415e-a63e-1ae5df5da354","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Relationship/GetBySlave?CtcID=CtcID-value","description":" <p>\n            Get relations by Slave Customer\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>RelationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>RelationID</td><td>Int32</td><td></td></tr><tr><td>RelationName</td><td>String</td><td></td></tr><tr><td>SourceID</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Relationship","GetBySlave"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"}],"variable":[]}},"response":[{"id":"18dccf12-b51b-4dc4-a255-16eafd2b17eb","name":"api/Relationship/GetBySlave?CtcID={CtcID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Relationship/GetBySlave?CtcID=CtcID-value","protocol":"https","host":["{{Host}}"],"path":["api","Relationship","GetBySlave"],"query":[{"key":"CtcID","value":"CtcID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get relations by Slave Customer\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>RelationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>RelationID</td><td>Int32</td><td></td></tr><tr><td>RelationName</td><td>String</td><td></td></tr><tr><td>SourceID</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"RelationID\": 1,\r\n    \"RelationName\": \"sample string 2\",\r\n    \"CtcID\": 3,\r\n    \"SourceID\": \"sample string 4\"\r\n  },\r\n  {\r\n    \"RelationID\": 1,\r\n    \"RelationName\": \"sample string 2\",\r\n    \"CtcID\": 3,\r\n    \"SourceID\": \"sample string 4\"\r\n  }\r\n]"}],"_postman_id":"23456ca7-4098-415e-a63e-1ae5df5da354"},{"name":"GetRelationships","id":"d7e002a0-27b8-4c75-bd05-253411c73b5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Relationship/GetRelationships","description":" <p>\n            Get available relationships\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>Relationship Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ID</td><td>Int32</td><td>Relationship ID</td></tr><tr><td>Name</td><td>String</td><td>Relationship Name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Relationship","GetRelationships"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"af6d93a4-4cc7-4e78-80ac-ba69fae4a211","name":"api/Relationship/GetRelationships Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Relationship/GetRelationships","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get available relationships\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>Relationship Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ID</td><td>Int32</td><td>Relationship ID</td></tr><tr><td>Name</td><td>String</td><td>Relationship Name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"ID\": 1,\r\n    \"Name\": \"sample string 2\"\r\n  },\r\n  {\r\n    \"ID\": 1,\r\n    \"Name\": \"sample string 2\"\r\n  }\r\n]"}],"_postman_id":"d7e002a0-27b8-4c75-bd05-253411c73b5c"},{"name":"Post","id":"ed206f14-c47f-4ab2-88da-94cc2f57a932","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"MasterCtcID\": 1,\r\n  \"RelationID\": 2,\r\n  \"SlaveCtcID\": 3,\r\n  \"SourceID\": \"sample string 4\"\r\n}"},"url":"https://{{Host}}/api/Relationship/Post","description":" <p>\n            Add a Relationship\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>CtcRelationship Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>MasterCtcID</td><td>Int32</td><td>The Master CtcID</td><td>False</td></tr><tr><td>RelationID</td><td>Int32</td><td>Call api/Relationship/GetRelationships to get available relationships</td><td>False</td></tr><tr><td>SlaveCtcID</td><td>Int32</td><td>The Slave CtcID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the call</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>RelationshipOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>IsValid</td><td>Boolean</td><td>Specify whether The result action is valid to be executed or not</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the relation was successfully added to CRM, if false an error has occured and you will find the description in the field \"Error\")</td></tr></table>","urlObject":{"protocol":"https","path":["api","Relationship","Post"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"1cc5f72d-b65d-4790-b352-2c4a7167fd0e","name":"api/Relationship/Post Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"MasterCtcID\": 1,\r\n  \"RelationID\": 2,\r\n  \"SlaveCtcID\": 3,\r\n  \"SourceID\": \"sample string 4\"\r\n}"},"url":"https://{{Host}}/api/Relationship/Post","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add a Relationship\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CtcRelationship Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>MasterCtcID</td><td>Int32</td><td>The Master CtcID</td><td>False</td></tr><tr><td>RelationID</td><td>Int32</td><td>Call api/Relationship/GetRelationships to get available relationships</td><td>False</td></tr><tr><td>SlaveCtcID</td><td>Int32</td><td>The Slave CtcID</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of the call</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>RelationshipOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>IsValid</td><td>Boolean</td><td>Specify whether The result action is valid to be executed or not</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the relation was successfully added to CRM, if false an error has occured and you will find the description in the field \"Error\")</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"IsValid\": true,\r\n  \"Error\": \"sample string 3\"\r\n}"}],"_postman_id":"ed206f14-c47f-4ab2-88da-94cc2f57a932"}],"id":"3e82137e-052e-4705-a166-de287179637b","description":"<p>Api Methods for Relationship</p>\n","_postman_id":"3e82137e-052e-4705-a166-de287179637b"},{"name":"Reservation","item":[{"name":"Cancel","id":"955bcda0-7eb0-4ec4-8916-8be5e6eb8713","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Reservation/Cancel?ReservationID=ReservationID-value","description":" <p>\n            Cancel a Reservation\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>ReservationResult Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the call was successfully submitted, if false an error was occured and you will find the description in the field \"Error\")</td></tr></table>","urlObject":{"protocol":"https","path":["api","Reservation","Cancel"],"host":["{{Host}}"],"query":[{"key":"ReservationID","value":"ReservationID-value"}],"variable":[]}},"response":[{"id":"9fab841f-c217-42b6-89d7-5820dccea1b7","name":"api/Reservation/Cancel?ReservationID={ReservationID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/Reservation/Cancel?ReservationID=ReservationID-value","protocol":"https","host":["{{Host}}"],"path":["api","Reservation","Cancel"],"query":[{"key":"ReservationID","value":"ReservationID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Cancel a Reservation\r\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>ReservationResult Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the call was successfully submitted, if false an error was occured and you will find the description in the field \"Error\")</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"955bcda0-7eb0-4ec4-8916-8be5e6eb8713"},{"name":"Get","id":"2b6dceb4-17f1-421c-902d-40b5940da7a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Reservation/Get?ReservationRef=ReservationRef-value&SourceID=SourceID-value","description":" <p>\n            Get a Reservation\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ReservationExtended Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Analytics</td><td>ReservationAnalytics</td><td>Analytics Details</td></tr><tr><td>BookingCalendar_URL</td><td>String</td><td>Calendar URL</td></tr><tr><td>BookingChannel</td><td>String</td><td>Booking Channel</td></tr><tr><td>BookingContract_URL</td><td>String</td><td>Contract URL</td></tr><tr><td>BookingDateTime</td><td>DateTime (nullable)</td><td>Reservation Date</td></tr><tr><td>BookingManagePreorder_URL</td><td>String</td><td>Manage Pre-Order URL</td></tr><tr><td>BookingOffer</td><td>String</td><td>Booking Offer</td></tr><tr><td>BookingPayment_URL</td><td>String</td><td>Payment URL</td></tr><tr><td>BookingPreorder_URL</td><td>String</td><td>Pre-Order URL</td></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td></tr><tr><td>BookingStatusID</td><td>BookingStatus (nullable)</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td></tr><tr><td>BookingType</td><td>String</td><td>Booking Type</td></tr><tr><td>CancelBookingURL</td><td>String</td><td>Cancellation URL</td></tr><tr><td>Canceled_By</td><td>Int32 (nullable)</td><td>Canceled By</td></tr><tr><td>Canceled_On</td><td>DateTime (nullable)</td><td>Canceled On</td></tr><tr><td>Comment</td><td>String</td><td>Reservation Comment</td></tr><tr><td>CommsPreference</td><td>CommsPreferenceBasic</td><td>Communication Preference Details</td></tr><tr><td>Customer</td><td>Contact</td><td>Customer Details</td></tr><tr><td>CustomField1</td><td>String</td><td>Customer Field 1</td></tr><tr><td>CustomField2</td><td>String</td><td>Customer Field 2</td></tr><tr><td>CustomField3</td><td>String</td><td>Customer Field 3</td></tr><tr><td>CustomField4</td><td>String</td><td>Customer Field 4</td></tr><tr><td>CustomField5</td><td>String</td><td>Customer Field 5</td></tr><tr><td>CustomField6</td><td>String</td><td>Customer Field 6</td></tr><tr><td>Details</td><td>ReservationDetails</td><td>Reservation Details</td></tr><tr><td>DurationDetails</td><td>Duration</td><td>Duration spent details: specify the number of Days, Hours and Minutes</td></tr><tr><td>EstimatedValue</td><td>Double (nullable)</td><td>Estimated Value Amount</td></tr><tr><td>EventID</td><td>Int32 (nullable)</td><td>Event ID</td></tr><tr><td>LeftTime</td><td>DateTime (nullable)</td><td>Specifies the leaving time</td></tr><tr><td>LocationID</td><td>String</td><td>Reservation Location ID</td></tr><tr><td>ModifyBookingURL</td><td>String</td><td>Modification URL</td></tr><tr><td>ReservationDateTime</td><td>DateTime</td><td>Reservation Date</td></tr><tr><td>ReservationID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>ReservationRef</td><td>String</td><td>Reservation Reference</td></tr><tr><td>SeatingDateTime</td><td>DateTime (nullable)</td><td>Searting Date</td></tr><tr><td>SourceID</td><td>String</td><td>Reservation Source ID</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list</td></tr><tr><td>Updated_At</td><td>DateTime (nullable)</td><td>Update Date</td></tr><tr><td>UpdateMode</td><td>UpdateModeEnum (nullable)</td><td>Update Mode : PUT (override existing data by the sent one) / PATCH (append sent data to the existing: empty values will be ignored)</td></tr><tr><td><h4>ReservationAnalytics Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>utm_campaign</td><td>String</td><td>UTM Campaign</td></tr><tr><td>utm_content</td><td>String</td><td>UTM Content</td></tr><tr><td>utm_medium</td><td>String</td><td>UTM Meduim</td></tr><tr><td>utm_source</td><td>String</td><td>UTM Source</td></tr><tr><td>utm_term</td><td>String</td><td>UTM Term</td></tr><tr><td><h4>CommsPreferenceBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td></tr><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>ReservationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingTags</td><td>List&lt;String&gt;</td><td>List of Tags</td></tr><tr><td>CampaignKey</td><td>String</td><td>Campaign Key</td></tr><tr><td>GuestTags</td><td>List&lt;String&gt;</td><td>List of Tags</td></tr><tr><td>NoOfAdults</td><td>Int32</td><td>Number of Adults</td></tr><tr><td>NoOfChildren</td><td>Int32</td><td>Number of Children</td></tr><tr><td>NoOfHighChairs</td><td>Int32</td><td>Number of High Chairs</td></tr><tr><td>TableNumbers</td><td>List&lt;String&gt;</td><td>List Of Table Numbers</td></tr><tr><td>TotalCustomerCount</td><td>Int32 (nullable)</td><td>Total Customers Count</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher Code</td></tr><tr><td><h4>Duration Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>NumberOfDays</td><td>Int32</td><td></td></tr><tr><td>NumberOfHours</td><td>Int32</td><td></td></tr><tr><td>NumberOfMinutes</td><td>Int32</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Reservation","Get"],"host":["{{Host}}"],"query":[{"key":"ReservationRef","value":"ReservationRef-value"},{"key":"SourceID","value":"SourceID-value"}],"variable":[]}},"response":[{"id":"ba9b4f1d-8bd0-4cc2-9c18-f3be52ad06ba","name":"api/Reservation/Get?ReservationRef={ReservationRef}&SourceID={SourceID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Reservation/Get?ReservationRef=ReservationRef-value&SourceID=SourceID-value","protocol":"https","host":["{{Host}}"],"path":["api","Reservation","Get"],"query":[{"key":"ReservationRef","value":"ReservationRef-value"},{"key":"SourceID","value":"SourceID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get a Reservation\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ReservationExtended Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Analytics</td><td>ReservationAnalytics</td><td>Analytics Details</td></tr><tr><td>BookingCalendar_URL</td><td>String</td><td>Calendar URL</td></tr><tr><td>BookingChannel</td><td>String</td><td>Booking Channel</td></tr><tr><td>BookingContract_URL</td><td>String</td><td>Contract URL</td></tr><tr><td>BookingDateTime</td><td>DateTime (nullable)</td><td>Reservation Date</td></tr><tr><td>BookingManagePreorder_URL</td><td>String</td><td>Manage Pre-Order URL</td></tr><tr><td>BookingOffer</td><td>String</td><td>Booking Offer</td></tr><tr><td>BookingPayment_URL</td><td>String</td><td>Payment URL</td></tr><tr><td>BookingPreorder_URL</td><td>String</td><td>Pre-Order URL</td></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td></tr><tr><td>BookingStatusID</td><td>BookingStatus (nullable)</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td></tr><tr><td>BookingType</td><td>String</td><td>Booking Type</td></tr><tr><td>CancelBookingURL</td><td>String</td><td>Cancellation URL</td></tr><tr><td>Canceled_By</td><td>Int32 (nullable)</td><td>Canceled By</td></tr><tr><td>Canceled_On</td><td>DateTime (nullable)</td><td>Canceled On</td></tr><tr><td>Comment</td><td>String</td><td>Reservation Comment</td></tr><tr><td>CommsPreference</td><td>CommsPreferenceBasic</td><td>Communication Preference Details</td></tr><tr><td>Customer</td><td>Contact</td><td>Customer Details</td></tr><tr><td>CustomField1</td><td>String</td><td>Customer Field 1</td></tr><tr><td>CustomField2</td><td>String</td><td>Customer Field 2</td></tr><tr><td>CustomField3</td><td>String</td><td>Customer Field 3</td></tr><tr><td>CustomField4</td><td>String</td><td>Customer Field 4</td></tr><tr><td>CustomField5</td><td>String</td><td>Customer Field 5</td></tr><tr><td>CustomField6</td><td>String</td><td>Customer Field 6</td></tr><tr><td>Details</td><td>ReservationDetails</td><td>Reservation Details</td></tr><tr><td>DurationDetails</td><td>Duration</td><td>Duration spent details: specify the number of Days, Hours and Minutes</td></tr><tr><td>EstimatedValue</td><td>Double (nullable)</td><td>Estimated Value Amount</td></tr><tr><td>EventID</td><td>Int32 (nullable)</td><td>Event ID</td></tr><tr><td>LeftTime</td><td>DateTime (nullable)</td><td>Specifies the leaving time</td></tr><tr><td>LocationID</td><td>String</td><td>Reservation Location ID</td></tr><tr><td>ModifyBookingURL</td><td>String</td><td>Modification URL</td></tr><tr><td>ReservationDateTime</td><td>DateTime</td><td>Reservation Date</td></tr><tr><td>ReservationID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>ReservationRef</td><td>String</td><td>Reservation Reference</td></tr><tr><td>SeatingDateTime</td><td>DateTime (nullable)</td><td>Searting Date</td></tr><tr><td>SourceID</td><td>String</td><td>Reservation Source ID</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list</td></tr><tr><td>Updated_At</td><td>DateTime (nullable)</td><td>Update Date</td></tr><tr><td>UpdateMode</td><td>UpdateModeEnum (nullable)</td><td>Update Mode : PUT (override existing data by the sent one) / PATCH (append sent data to the existing: empty values will be ignored)</td></tr><tr><td colspan=3><h4>ReservationAnalytics Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>utm_campaign</td><td>String</td><td>UTM Campaign</td></tr><tr><td>utm_content</td><td>String</td><td>UTM Content</td></tr><tr><td>utm_medium</td><td>String</td><td>UTM Meduim</td></tr><tr><td>utm_source</td><td>String</td><td>UTM Source</td></tr><tr><td>utm_term</td><td>String</td><td>UTM Term</td></tr><tr><td colspan=3><h4>CommsPreferenceBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td></tr><tr><td colspan=3><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td colspan=3><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>ReservationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingTags</td><td>List&lt;String&gt;</td><td>List of Tags</td></tr><tr><td>CampaignKey</td><td>String</td><td>Campaign Key</td></tr><tr><td>GuestTags</td><td>List&lt;String&gt;</td><td>List of Tags</td></tr><tr><td>NoOfAdults</td><td>Int32</td><td>Number of Adults</td></tr><tr><td>NoOfChildren</td><td>Int32</td><td>Number of Children</td></tr><tr><td>NoOfHighChairs</td><td>Int32</td><td>Number of High Chairs</td></tr><tr><td>TableNumbers</td><td>List&lt;String&gt;</td><td>List Of Table Numbers</td></tr><tr><td>TotalCustomerCount</td><td>Int32 (nullable)</td><td>Total Customers Count</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher Code</td></tr><tr><td colspan=3><h4>Duration Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>NumberOfDays</td><td>Int32</td><td></td></tr><tr><td>NumberOfHours</td><td>Int32</td><td></td></tr><tr><td>NumberOfMinutes</td><td>Int32</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ReservationID\": 1,\r\n  \"ReservationRef\": \"sample string 1\",\r\n  \"ReservationDateTime\": \"2026-03-25T07:30:09.2487738+00:00\",\r\n  \"LocationID\": \"sample string 3\",\r\n  \"Comment\": \"sample string 4\",\r\n  \"SourceID\": \"sample string 7\",\r\n  \"CancelBookingURL\": \"sample string 8\",\r\n  \"ModifyBookingURL\": \"sample string 9\",\r\n  \"Updated_At\": \"2026-03-25T07:30:09.2487738+00:00\",\r\n  \"BookingDateTime\": \"2026-03-25T07:30:09.2487738+00:00\",\r\n  \"BookingStatusID\": 1,\r\n  \"BookingPreorder_URL\": \"sample string 10\",\r\n  \"BookingManagePreorder_URL\": \"sample string 11\",\r\n  \"BookingPayment_URL\": \"sample string 12\",\r\n  \"BookingContract_URL\": \"sample string 13\",\r\n  \"BookingCalendar_URL\": \"sample string 14\",\r\n  \"Customer\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:09.2487738+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:09.2487738+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:09.2487738+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:09.2487738+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:09.2487738+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:09.2487738+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:09.2487738+00:00\"\r\n  },\r\n  \"Details\": {\r\n    \"TotalCustomerCount\": 1,\r\n    \"NoOfAdults\": 1,\r\n    \"NoOfChildren\": 2,\r\n    \"NoOfHighChairs\": 3,\r\n    \"VoucherCode\": \"sample string 4\",\r\n    \"CampaignKey\": \"sample string 5\",\r\n    \"TableNumbers\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"BookingTags\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"GuestTags\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Analytics\": {\r\n    \"utm_source\": \"sample string 1\",\r\n    \"utm_medium\": \"sample string 2\",\r\n    \"utm_campaign\": \"sample string 3\",\r\n    \"utm_term\": \"sample string 4\",\r\n    \"utm_content\": \"sample string 5\"\r\n  },\r\n  \"CommsPreference\": {\r\n    \"EmailOptin\": true,\r\n    \"SmsOptin\": true,\r\n    \"MailOptin\": true,\r\n    \"PhoneOptin\": true,\r\n    \"PushNotificationOptin\": true,\r\n    \"WebPushNotificationOptin\": true,\r\n    \"ChangeDate\": \"2026-03-25T07:30:09.2487738+00:00\"\r\n  },\r\n  \"BookingChannel\": \"sample string 15\",\r\n  \"BookingType\": \"sample string 16\",\r\n  \"BookingOffer\": \"sample string 17\",\r\n  \"SeatingDateTime\": \"2026-03-25T07:30:09.264405+00:00\",\r\n  \"EstimatedValue\": 1.1,\r\n  \"CustomField1\": \"sample string 18\",\r\n  \"CustomField2\": \"sample string 19\",\r\n  \"CustomField3\": \"sample string 20\",\r\n  \"CustomField4\": \"sample string 21\",\r\n  \"CustomField5\": \"sample string 22\",\r\n  \"CustomField6\": \"sample string 23\",\r\n  \"SupplierCode\": 1,\r\n  \"UpdateMode\": 0,\r\n  \"BookingSector\": 1,\r\n  \"DurationDetails\": {\r\n    \"NumberOfDays\": 1,\r\n    \"NumberOfHours\": 2,\r\n    \"NumberOfMinutes\": 3\r\n  },\r\n  \"LeftTime\": \"2026-03-25T07:30:09.264405+00:00\",\r\n  \"Canceled_On\": \"2026-03-25T07:30:09.264405+00:00\",\r\n  \"Canceled_By\": 1,\r\n  \"EventID\": 1\r\n}"}],"_postman_id":"2b6dceb4-17f1-421c-902d-40b5940da7a7"},{"name":"GetReservationsByCtcID","id":"5e19dc58-8f32-4a2d-b8f1-3fb571cb620c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Reservation/GetReservationsByCtcID?CtcID=CtcID-value","description":" <p>\n            Get Reservations By CtcID\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>ReservationExtended Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Analytics</td><td>ReservationAnalytics</td><td>Analytics Details</td></tr><tr><td>BookingCalendar_URL</td><td>String</td><td>Calendar URL</td></tr><tr><td>BookingChannel</td><td>String</td><td>Booking Channel</td></tr><tr><td>BookingContract_URL</td><td>String</td><td>Contract URL</td></tr><tr><td>BookingDateTime</td><td>DateTime (nullable)</td><td>Reservation Date</td></tr><tr><td>BookingManagePreorder_URL</td><td>String</td><td>Manage Pre-Order URL</td></tr><tr><td>BookingOffer</td><td>String</td><td>Booking Offer</td></tr><tr><td>BookingPayment_URL</td><td>String</td><td>Payment URL</td></tr><tr><td>BookingPreorder_URL</td><td>String</td><td>Pre-Order URL</td></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td></tr><tr><td>BookingStatusID</td><td>BookingStatus (nullable)</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td></tr><tr><td>BookingType</td><td>String</td><td>Booking Type</td></tr><tr><td>CancelBookingURL</td><td>String</td><td>Cancellation URL</td></tr><tr><td>Canceled_By</td><td>Int32 (nullable)</td><td>Canceled By</td></tr><tr><td>Canceled_On</td><td>DateTime (nullable)</td><td>Canceled On</td></tr><tr><td>Comment</td><td>String</td><td>Reservation Comment</td></tr><tr><td>CommsPreference</td><td>CommsPreferenceBasic</td><td>Communication Preference Details</td></tr><tr><td>Customer</td><td>Contact</td><td>Customer Details</td></tr><tr><td>CustomField1</td><td>String</td><td>Customer Field 1</td></tr><tr><td>CustomField2</td><td>String</td><td>Customer Field 2</td></tr><tr><td>CustomField3</td><td>String</td><td>Customer Field 3</td></tr><tr><td>CustomField4</td><td>String</td><td>Customer Field 4</td></tr><tr><td>CustomField5</td><td>String</td><td>Customer Field 5</td></tr><tr><td>CustomField6</td><td>String</td><td>Customer Field 6</td></tr><tr><td>Details</td><td>ReservationDetails</td><td>Reservation Details</td></tr><tr><td>DurationDetails</td><td>Duration</td><td>Duration spent details: specify the number of Days, Hours and Minutes</td></tr><tr><td>EstimatedValue</td><td>Double (nullable)</td><td>Estimated Value Amount</td></tr><tr><td>EventID</td><td>Int32 (nullable)</td><td>Event ID</td></tr><tr><td>LeftTime</td><td>DateTime (nullable)</td><td>Specifies the leaving time</td></tr><tr><td>LocationID</td><td>String</td><td>Reservation Location ID</td></tr><tr><td>ModifyBookingURL</td><td>String</td><td>Modification URL</td></tr><tr><td>ReservationDateTime</td><td>DateTime</td><td>Reservation Date</td></tr><tr><td>ReservationID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>ReservationRef</td><td>String</td><td>Reservation Reference</td></tr><tr><td>SeatingDateTime</td><td>DateTime (nullable)</td><td>Searting Date</td></tr><tr><td>SourceID</td><td>String</td><td>Reservation Source ID</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list</td></tr><tr><td>Updated_At</td><td>DateTime (nullable)</td><td>Update Date</td></tr><tr><td>UpdateMode</td><td>UpdateModeEnum (nullable)</td><td>Update Mode : PUT (override existing data by the sent one) / PATCH (append sent data to the existing: empty values will be ignored)</td></tr><tr><td><h4>ReservationAnalytics Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>utm_campaign</td><td>String</td><td>UTM Campaign</td></tr><tr><td>utm_content</td><td>String</td><td>UTM Content</td></tr><tr><td>utm_medium</td><td>String</td><td>UTM Meduim</td></tr><tr><td>utm_source</td><td>String</td><td>UTM Source</td></tr><tr><td>utm_term</td><td>String</td><td>UTM Term</td></tr><tr><td><h4>CommsPreferenceBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td></tr><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td><h4>ReservationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingTags</td><td>List&lt;String&gt;</td><td>List of Tags</td></tr><tr><td>CampaignKey</td><td>String</td><td>Campaign Key</td></tr><tr><td>GuestTags</td><td>List&lt;String&gt;</td><td>List of Tags</td></tr><tr><td>NoOfAdults</td><td>Int32</td><td>Number of Adults</td></tr><tr><td>NoOfChildren</td><td>Int32</td><td>Number of Children</td></tr><tr><td>NoOfHighChairs</td><td>Int32</td><td>Number of High Chairs</td></tr><tr><td>TableNumbers</td><td>List&lt;String&gt;</td><td>List Of Table Numbers</td></tr><tr><td>TotalCustomerCount</td><td>Int32 (nullable)</td><td>Total Customers Count</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher Code</td></tr><tr><td><h4>Duration Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>NumberOfDays</td><td>Int32</td><td></td></tr><tr><td>NumberOfHours</td><td>Int32</td><td></td></tr><tr><td>NumberOfMinutes</td><td>Int32</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Reservation","GetReservationsByCtcID"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"}],"variable":[]}},"response":[{"id":"5544fd88-7aaa-43e1-9a1e-ad09aecc99bd","name":"api/Reservation/GetReservationsByCtcID?CtcID={CtcID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Reservation/GetReservationsByCtcID?CtcID=CtcID-value","protocol":"https","host":["{{Host}}"],"path":["api","Reservation","GetReservationsByCtcID"],"query":[{"key":"CtcID","value":"CtcID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Reservations By CtcID\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>ReservationExtended Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Analytics</td><td>ReservationAnalytics</td><td>Analytics Details</td></tr><tr><td>BookingCalendar_URL</td><td>String</td><td>Calendar URL</td></tr><tr><td>BookingChannel</td><td>String</td><td>Booking Channel</td></tr><tr><td>BookingContract_URL</td><td>String</td><td>Contract URL</td></tr><tr><td>BookingDateTime</td><td>DateTime (nullable)</td><td>Reservation Date</td></tr><tr><td>BookingManagePreorder_URL</td><td>String</td><td>Manage Pre-Order URL</td></tr><tr><td>BookingOffer</td><td>String</td><td>Booking Offer</td></tr><tr><td>BookingPayment_URL</td><td>String</td><td>Payment URL</td></tr><tr><td>BookingPreorder_URL</td><td>String</td><td>Pre-Order URL</td></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td></tr><tr><td>BookingStatusID</td><td>BookingStatus (nullable)</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td></tr><tr><td>BookingType</td><td>String</td><td>Booking Type</td></tr><tr><td>CancelBookingURL</td><td>String</td><td>Cancellation URL</td></tr><tr><td>Canceled_By</td><td>Int32 (nullable)</td><td>Canceled By</td></tr><tr><td>Canceled_On</td><td>DateTime (nullable)</td><td>Canceled On</td></tr><tr><td>Comment</td><td>String</td><td>Reservation Comment</td></tr><tr><td>CommsPreference</td><td>CommsPreferenceBasic</td><td>Communication Preference Details</td></tr><tr><td>Customer</td><td>Contact</td><td>Customer Details</td></tr><tr><td>CustomField1</td><td>String</td><td>Customer Field 1</td></tr><tr><td>CustomField2</td><td>String</td><td>Customer Field 2</td></tr><tr><td>CustomField3</td><td>String</td><td>Customer Field 3</td></tr><tr><td>CustomField4</td><td>String</td><td>Customer Field 4</td></tr><tr><td>CustomField5</td><td>String</td><td>Customer Field 5</td></tr><tr><td>CustomField6</td><td>String</td><td>Customer Field 6</td></tr><tr><td>Details</td><td>ReservationDetails</td><td>Reservation Details</td></tr><tr><td>DurationDetails</td><td>Duration</td><td>Duration spent details: specify the number of Days, Hours and Minutes</td></tr><tr><td>EstimatedValue</td><td>Double (nullable)</td><td>Estimated Value Amount</td></tr><tr><td>EventID</td><td>Int32 (nullable)</td><td>Event ID</td></tr><tr><td>LeftTime</td><td>DateTime (nullable)</td><td>Specifies the leaving time</td></tr><tr><td>LocationID</td><td>String</td><td>Reservation Location ID</td></tr><tr><td>ModifyBookingURL</td><td>String</td><td>Modification URL</td></tr><tr><td>ReservationDateTime</td><td>DateTime</td><td>Reservation Date</td></tr><tr><td>ReservationID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>ReservationRef</td><td>String</td><td>Reservation Reference</td></tr><tr><td>SeatingDateTime</td><td>DateTime (nullable)</td><td>Searting Date</td></tr><tr><td>SourceID</td><td>String</td><td>Reservation Source ID</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list</td></tr><tr><td>Updated_At</td><td>DateTime (nullable)</td><td>Update Date</td></tr><tr><td>UpdateMode</td><td>UpdateModeEnum (nullable)</td><td>Update Mode : PUT (override existing data by the sent one) / PATCH (append sent data to the existing: empty values will be ignored)</td></tr><tr><td colspan=3><h4>ReservationAnalytics Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>utm_campaign</td><td>String</td><td>UTM Campaign</td></tr><tr><td>utm_content</td><td>String</td><td>UTM Content</td></tr><tr><td>utm_medium</td><td>String</td><td>UTM Meduim</td></tr><tr><td>utm_source</td><td>String</td><td>UTM Source</td></tr><tr><td>utm_term</td><td>String</td><td>UTM Term</td></tr><tr><td colspan=3><h4>CommsPreferenceBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td></tr><tr><td colspan=3><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td></tr><tr><td>CardToken</td><td>String</td><td></td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td></tr><tr><td>Email</td><td>String</td><td>Email address</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td></tr><tr><td colspan=3><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td></tr><tr><td>City</td><td>String</td><td>City</td></tr><tr><td>CountryCode</td><td>String</td><td></td></tr><tr><td>CountryName</td><td>String</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Email</td><td>String</td><td></td></tr><tr><td>Fax</td><td>String</td><td></td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td></tr><tr><td>NationalID</td><td>String</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr><tr><td>Phone</td><td>String</td><td></td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td></tr><tr><td>SourceID</td><td>String</td><td></td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td></tr><tr><td>StateName</td><td>String</td><td>County</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td></tr><tr><td>Web</td><td>String</td><td></td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td></tr><tr><td>SourceNote</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AttachmentID</td><td>String</td><td></td></tr><tr><td>AttachmentName</td><td>String</td><td></td></tr><tr><td>ContentType</td><td>String</td><td></td></tr><tr><td>FileContent</td><td>String</td><td></td></tr><tr><td>FileName</td><td>String</td><td></td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td></tr><tr><td>HasContent</td><td>Boolean</td><td></td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td></tr><tr><td colspan=3><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td></tr><tr><td colspan=3><h4>ReservationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingTags</td><td>List&lt;String&gt;</td><td>List of Tags</td></tr><tr><td>CampaignKey</td><td>String</td><td>Campaign Key</td></tr><tr><td>GuestTags</td><td>List&lt;String&gt;</td><td>List of Tags</td></tr><tr><td>NoOfAdults</td><td>Int32</td><td>Number of Adults</td></tr><tr><td>NoOfChildren</td><td>Int32</td><td>Number of Children</td></tr><tr><td>NoOfHighChairs</td><td>Int32</td><td>Number of High Chairs</td></tr><tr><td>TableNumbers</td><td>List&lt;String&gt;</td><td>List Of Table Numbers</td></tr><tr><td>TotalCustomerCount</td><td>Int32 (nullable)</td><td>Total Customers Count</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher Code</td></tr><tr><td colspan=3><h4>Duration Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>NumberOfDays</td><td>Int32</td><td></td></tr><tr><td>NumberOfHours</td><td>Int32</td><td></td></tr><tr><td>NumberOfMinutes</td><td>Int32</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"ReservationID\": 1,\r\n    \"ReservationRef\": \"sample string 1\",\r\n    \"ReservationDateTime\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n    \"LocationID\": \"sample string 3\",\r\n    \"Comment\": \"sample string 4\",\r\n    \"SourceID\": \"sample string 7\",\r\n    \"CancelBookingURL\": \"sample string 8\",\r\n    \"ModifyBookingURL\": \"sample string 9\",\r\n    \"Updated_At\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n    \"BookingDateTime\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n    \"BookingStatusID\": 1,\r\n    \"BookingPreorder_URL\": \"sample string 10\",\r\n    \"BookingManagePreorder_URL\": \"sample string 11\",\r\n    \"BookingPayment_URL\": \"sample string 12\",\r\n    \"BookingContract_URL\": \"sample string 13\",\r\n    \"BookingCalendar_URL\": \"sample string 14\",\r\n    \"Customer\": {\r\n      \"CtcID\": 1,\r\n      \"LastName\": \"sample string 2\",\r\n      \"CpyID\": 3,\r\n      \"PositionFreeText\": \"sample string 7\",\r\n      \"CreateDate\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n      \"ModifDate\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"SourceID\": \"sample string 10\",\r\n      \"OriginID\": \"sample string 11\",\r\n      \"DoNotExport\": true,\r\n      \"ParentEmailAddress\": \"sample string 14\",\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"Company\": {\r\n        \"CpyID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"Building\": \"sample string 4\",\r\n        \"Street\": \"sample string 5\",\r\n        \"Zone\": \"sample string 6\",\r\n        \"City\": \"sample string 7\",\r\n        \"PostCode\": \"sample string 8\",\r\n        \"StateCode\": \"sample string 9\",\r\n        \"StateName\": \"sample string 10\",\r\n        \"CountryCode\": \"sample string 13\",\r\n        \"CountryName\": \"sample string 14\",\r\n        \"Phone\": \"sample string 15\",\r\n        \"Fax\": \"sample string 16\",\r\n        \"Web\": \"sample string 17\",\r\n        \"Email\": \"sample string 18\",\r\n        \"NationalID\": \"sample string 20\",\r\n        \"SourceID\": \"sample string 21\",\r\n        \"OriginID\": \"sample string 22\",\r\n        \"CreateDate\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n        \"LastModifDate\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"CpyNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ]\r\n      },\r\n      \"CtcNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"Gender\": null,\r\n      \"PredefinedGender\": 0,\r\n      \"ProcessMydata\": true,\r\n      \"DeleteMyData\": true,\r\n      \"HomeSiteID\": \"sample string 20\",\r\n      \"BrandID\": 1,\r\n      \"MemberNumbersList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"CurrentMemberNumber\": \"sample string 21\",\r\n      \"CardTokensList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"CardToken\": \"sample string 22\",\r\n      \"CurrentReferrerCode\": \"sample string 23\",\r\n      \"ReferrerCodeList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ReferredByCode\": \"sample string 24\",\r\n      \"ReferrerCode\": \"sample string 25\",\r\n      \"UpdateIfPopulated\": true,\r\n      \"IsLeadCtc\": true,\r\n      \"IsFinanceCtc\": true,\r\n      \"CorporateName\": \"sample string 29\",\r\n      \"CorporateJobTitle\": 30,\r\n      \"Picture\": \"QEA=\",\r\n      \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"ContactSpendInLast12Months\": \"sample string 31\",\r\n      \"_Title\": \"sample string 33\",\r\n      \"FirstName\": \"sample string 34\",\r\n      \"Phone\": \"sample string 35\",\r\n      \"MobilPhone\": \"sample string 36\",\r\n      \"Email\": \"sample string 37\",\r\n      \"BirthDate\": \"2026-03-25T07:30:09.3112555+00:00\"\r\n    },\r\n    \"Details\": {\r\n      \"TotalCustomerCount\": 1,\r\n      \"NoOfAdults\": 1,\r\n      \"NoOfChildren\": 2,\r\n      \"NoOfHighChairs\": 3,\r\n      \"VoucherCode\": \"sample string 4\",\r\n      \"CampaignKey\": \"sample string 5\",\r\n      \"TableNumbers\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"BookingTags\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"GuestTags\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Analytics\": {\r\n      \"utm_source\": \"sample string 1\",\r\n      \"utm_medium\": \"sample string 2\",\r\n      \"utm_campaign\": \"sample string 3\",\r\n      \"utm_term\": \"sample string 4\",\r\n      \"utm_content\": \"sample string 5\"\r\n    },\r\n    \"CommsPreference\": {\r\n      \"EmailOptin\": true,\r\n      \"SmsOptin\": true,\r\n      \"MailOptin\": true,\r\n      \"PhoneOptin\": true,\r\n      \"PushNotificationOptin\": true,\r\n      \"WebPushNotificationOptin\": true,\r\n      \"ChangeDate\": \"2026-03-25T07:30:09.3112555+00:00\"\r\n    },\r\n    \"BookingChannel\": \"sample string 15\",\r\n    \"BookingType\": \"sample string 16\",\r\n    \"BookingOffer\": \"sample string 17\",\r\n    \"SeatingDateTime\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n    \"EstimatedValue\": 1.1,\r\n    \"CustomField1\": \"sample string 18\",\r\n    \"CustomField2\": \"sample string 19\",\r\n    \"CustomField3\": \"sample string 20\",\r\n    \"CustomField4\": \"sample string 21\",\r\n    \"CustomField5\": \"sample string 22\",\r\n    \"CustomField6\": \"sample string 23\",\r\n    \"SupplierCode\": 1,\r\n    \"UpdateMode\": 0,\r\n    \"BookingSector\": 1,\r\n    \"DurationDetails\": {\r\n      \"NumberOfDays\": 1,\r\n      \"NumberOfHours\": 2,\r\n      \"NumberOfMinutes\": 3\r\n    },\r\n    \"LeftTime\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n    \"Canceled_On\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n    \"Canceled_By\": 1,\r\n    \"EventID\": 1\r\n  },\r\n  {\r\n    \"ReservationID\": 1,\r\n    \"ReservationRef\": \"sample string 1\",\r\n    \"ReservationDateTime\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n    \"LocationID\": \"sample string 3\",\r\n    \"Comment\": \"sample string 4\",\r\n    \"SourceID\": \"sample string 7\",\r\n    \"CancelBookingURL\": \"sample string 8\",\r\n    \"ModifyBookingURL\": \"sample string 9\",\r\n    \"Updated_At\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n    \"BookingDateTime\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n    \"BookingStatusID\": 1,\r\n    \"BookingPreorder_URL\": \"sample string 10\",\r\n    \"BookingManagePreorder_URL\": \"sample string 11\",\r\n    \"BookingPayment_URL\": \"sample string 12\",\r\n    \"BookingContract_URL\": \"sample string 13\",\r\n    \"BookingCalendar_URL\": \"sample string 14\",\r\n    \"Customer\": {\r\n      \"CtcID\": 1,\r\n      \"LastName\": \"sample string 2\",\r\n      \"CpyID\": 3,\r\n      \"PositionFreeText\": \"sample string 7\",\r\n      \"CreateDate\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n      \"ModifDate\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"SourceID\": \"sample string 10\",\r\n      \"OriginID\": \"sample string 11\",\r\n      \"DoNotExport\": true,\r\n      \"ParentEmailAddress\": \"sample string 14\",\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"Company\": {\r\n        \"CpyID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"Building\": \"sample string 4\",\r\n        \"Street\": \"sample string 5\",\r\n        \"Zone\": \"sample string 6\",\r\n        \"City\": \"sample string 7\",\r\n        \"PostCode\": \"sample string 8\",\r\n        \"StateCode\": \"sample string 9\",\r\n        \"StateName\": \"sample string 10\",\r\n        \"CountryCode\": \"sample string 13\",\r\n        \"CountryName\": \"sample string 14\",\r\n        \"Phone\": \"sample string 15\",\r\n        \"Fax\": \"sample string 16\",\r\n        \"Web\": \"sample string 17\",\r\n        \"Email\": \"sample string 18\",\r\n        \"NationalID\": \"sample string 20\",\r\n        \"SourceID\": \"sample string 21\",\r\n        \"OriginID\": \"sample string 22\",\r\n        \"CreateDate\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n        \"LastModifDate\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"CpyNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ]\r\n      },\r\n      \"CtcNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"Gender\": null,\r\n      \"PredefinedGender\": 0,\r\n      \"ProcessMydata\": true,\r\n      \"DeleteMyData\": true,\r\n      \"HomeSiteID\": \"sample string 20\",\r\n      \"BrandID\": 1,\r\n      \"MemberNumbersList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"CurrentMemberNumber\": \"sample string 21\",\r\n      \"CardTokensList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"CardToken\": \"sample string 22\",\r\n      \"CurrentReferrerCode\": \"sample string 23\",\r\n      \"ReferrerCodeList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ReferredByCode\": \"sample string 24\",\r\n      \"ReferrerCode\": \"sample string 25\",\r\n      \"UpdateIfPopulated\": true,\r\n      \"IsLeadCtc\": true,\r\n      \"IsFinanceCtc\": true,\r\n      \"CorporateName\": \"sample string 29\",\r\n      \"CorporateJobTitle\": 30,\r\n      \"Picture\": \"QEA=\",\r\n      \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"ContactSpendInLast12Months\": \"sample string 31\",\r\n      \"_Title\": \"sample string 33\",\r\n      \"FirstName\": \"sample string 34\",\r\n      \"Phone\": \"sample string 35\",\r\n      \"MobilPhone\": \"sample string 36\",\r\n      \"Email\": \"sample string 37\",\r\n      \"BirthDate\": \"2026-03-25T07:30:09.3112555+00:00\"\r\n    },\r\n    \"Details\": {\r\n      \"TotalCustomerCount\": 1,\r\n      \"NoOfAdults\": 1,\r\n      \"NoOfChildren\": 2,\r\n      \"NoOfHighChairs\": 3,\r\n      \"VoucherCode\": \"sample string 4\",\r\n      \"CampaignKey\": \"sample string 5\",\r\n      \"TableNumbers\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"BookingTags\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"GuestTags\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Analytics\": {\r\n      \"utm_source\": \"sample string 1\",\r\n      \"utm_medium\": \"sample string 2\",\r\n      \"utm_campaign\": \"sample string 3\",\r\n      \"utm_term\": \"sample string 4\",\r\n      \"utm_content\": \"sample string 5\"\r\n    },\r\n    \"CommsPreference\": {\r\n      \"EmailOptin\": true,\r\n      \"SmsOptin\": true,\r\n      \"MailOptin\": true,\r\n      \"PhoneOptin\": true,\r\n      \"PushNotificationOptin\": true,\r\n      \"WebPushNotificationOptin\": true,\r\n      \"ChangeDate\": \"2026-03-25T07:30:09.3112555+00:00\"\r\n    },\r\n    \"BookingChannel\": \"sample string 15\",\r\n    \"BookingType\": \"sample string 16\",\r\n    \"BookingOffer\": \"sample string 17\",\r\n    \"SeatingDateTime\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n    \"EstimatedValue\": 1.1,\r\n    \"CustomField1\": \"sample string 18\",\r\n    \"CustomField2\": \"sample string 19\",\r\n    \"CustomField3\": \"sample string 20\",\r\n    \"CustomField4\": \"sample string 21\",\r\n    \"CustomField5\": \"sample string 22\",\r\n    \"CustomField6\": \"sample string 23\",\r\n    \"SupplierCode\": 1,\r\n    \"UpdateMode\": 0,\r\n    \"BookingSector\": 1,\r\n    \"DurationDetails\": {\r\n      \"NumberOfDays\": 1,\r\n      \"NumberOfHours\": 2,\r\n      \"NumberOfMinutes\": 3\r\n    },\r\n    \"LeftTime\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n    \"Canceled_On\": \"2026-03-25T07:30:09.3112555+00:00\",\r\n    \"Canceled_By\": 1,\r\n    \"EventID\": 1\r\n  }\r\n]"}],"_postman_id":"5e19dc58-8f32-4a2d-b8f1-3fb571cb620c"},{"name":"GetSuppliers","id":"a613fc28-2cb9-4a95-adb1-1e6c105bd351","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Reservation/GetSuppliers","description":" <p>\n            Get Reservations Suppliers List\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>Supplier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>SupplierCode</td><td>Int32</td><td>The Supplier Unique ID</td></tr><tr><td>SupplierName</td><td>String</td><td>The Supplier Name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Reservation","GetSuppliers"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"2fe25ddc-8f46-40de-a235-0857824ba901","name":"api/Reservation/GetSuppliers Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Reservation/GetSuppliers","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Reservations Suppliers List\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>Supplier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>SupplierCode</td><td>Int32</td><td>The Supplier Unique ID</td></tr><tr><td>SupplierName</td><td>String</td><td>The Supplier Name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"SupplierCode\": 1,\r\n  \"SupplierName\": \"sample string 2\"\r\n}"}],"_postman_id":"a613fc28-2cb9-4a95-adb1-1e6c105bd351"},{"name":"Post","id":"29ec9700-5860-406a-b9e6-8ac125e297ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ReservationRef\": \"sample string 1\",\r\n  \"ReservationDateTime\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n  \"LocationID\": \"sample string 3\",\r\n  \"Comment\": \"sample string 4\",\r\n  \"SourceID\": \"sample string 7\",\r\n  \"CancelBookingURL\": \"sample string 8\",\r\n  \"ModifyBookingURL\": \"sample string 9\",\r\n  \"Updated_At\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n  \"BookingDateTime\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n  \"BookingStatusID\": 1,\r\n  \"BookingPreorder_URL\": \"sample string 10\",\r\n  \"BookingManagePreorder_URL\": \"sample string 11\",\r\n  \"BookingPayment_URL\": \"sample string 12\",\r\n  \"BookingContract_URL\": \"sample string 13\",\r\n  \"BookingCalendar_URL\": \"sample string 14\",\r\n  \"Customer\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:09.3581446+00:00\"\r\n  },\r\n  \"Details\": {\r\n    \"TotalCustomerCount\": 1,\r\n    \"NoOfAdults\": 1,\r\n    \"NoOfChildren\": 2,\r\n    \"NoOfHighChairs\": 3,\r\n    \"VoucherCode\": \"sample string 4\",\r\n    \"CampaignKey\": \"sample string 5\",\r\n    \"TableNumbers\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"BookingTags\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"GuestTags\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Analytics\": {\r\n    \"utm_source\": \"sample string 1\",\r\n    \"utm_medium\": \"sample string 2\",\r\n    \"utm_campaign\": \"sample string 3\",\r\n    \"utm_term\": \"sample string 4\",\r\n    \"utm_content\": \"sample string 5\"\r\n  },\r\n  \"CommsPreference\": {\r\n    \"EmailOptin\": true,\r\n    \"SmsOptin\": true,\r\n    \"MailOptin\": true,\r\n    \"PhoneOptin\": true,\r\n    \"PushNotificationOptin\": true,\r\n    \"WebPushNotificationOptin\": true,\r\n    \"ChangeDate\": \"2026-03-25T07:30:09.3581446+00:00\"\r\n  },\r\n  \"BookingChannel\": \"sample string 15\",\r\n  \"BookingType\": \"sample string 16\",\r\n  \"BookingOffer\": \"sample string 17\",\r\n  \"SeatingDateTime\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n  \"EstimatedValue\": 1.1,\r\n  \"CustomField1\": \"sample string 18\",\r\n  \"CustomField2\": \"sample string 19\",\r\n  \"CustomField3\": \"sample string 20\",\r\n  \"CustomField4\": \"sample string 21\",\r\n  \"CustomField5\": \"sample string 22\",\r\n  \"CustomField6\": \"sample string 23\",\r\n  \"SupplierCode\": 1,\r\n  \"UpdateMode\": 0,\r\n  \"BookingSector\": 1,\r\n  \"DurationDetails\": {\r\n    \"NumberOfDays\": 1,\r\n    \"NumberOfHours\": 2,\r\n    \"NumberOfMinutes\": 3\r\n  },\r\n  \"LeftTime\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n  \"Canceled_On\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n  \"Canceled_By\": 1,\r\n  \"EventID\": 1\r\n}"},"url":"https://{{Host}}/api/Reservation/Post","description":" <p>\n            Add or Update a Reservation\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>Reservation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Analytics</td><td>ReservationAnalytics</td><td>Analytics Details</td><td>False</td></tr><tr><td>BookingCalendar_URL</td><td>String</td><td>Calendar URL</td><td>False</td></tr><tr><td>BookingChannel</td><td>String</td><td>Booking Channel</td><td>False</td></tr><tr><td>BookingContract_URL</td><td>String</td><td>Contract URL</td><td>False</td></tr><tr><td>BookingDateTime</td><td>DateTime (nullable)</td><td>Reservation Date</td><td>False</td></tr><tr><td>BookingManagePreorder_URL</td><td>String</td><td>Manage Pre-Order URL</td><td>False</td></tr><tr><td>BookingOffer</td><td>String</td><td>Booking Offer</td><td>False</td></tr><tr><td>BookingPayment_URL</td><td>String</td><td>Payment URL</td><td>False</td></tr><tr><td>BookingPreorder_URL</td><td>String</td><td>Pre-Order URL</td><td>False</td></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td><td>False</td></tr><tr><td>BookingStatusID</td><td>BookingStatus (nullable)</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td><td>False</td></tr><tr><td>BookingType</td><td>String</td><td>Booking Type</td><td>False</td></tr><tr><td>CancelBookingURL</td><td>String</td><td>Cancellation URL</td><td>False</td></tr><tr><td>Canceled_By</td><td>Int32 (nullable)</td><td>Canceled By</td><td>False</td></tr><tr><td>Canceled_On</td><td>DateTime (nullable)</td><td>Canceled On</td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Reservation Comment</td><td>False</td></tr><tr><td>CommsPreference</td><td>CommsPreferenceBasic</td><td>Communication Preference Details</td><td>False</td></tr><tr><td>Customer</td><td>Contact</td><td>Customer Details</td><td>True</td></tr><tr><td>CustomField1</td><td>String</td><td>Customer Field 1</td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td>Customer Field 2</td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td>Customer Field 3</td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td>Customer Field 4</td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td>Customer Field 5</td><td>False</td></tr><tr><td>CustomField6</td><td>String</td><td>Customer Field 6</td><td>False</td></tr><tr><td>Details</td><td>ReservationDetails</td><td>Reservation Details</td><td>False</td></tr><tr><td>DurationDetails</td><td>Duration</td><td>Duration spent details: specify the number of Days, Hours and Minutes</td><td>False</td></tr><tr><td>EstimatedValue</td><td>Double (nullable)</td><td>Estimated Value Amount</td><td>False</td></tr><tr><td>EventID</td><td>Int32 (nullable)</td><td>Event ID</td><td>False</td></tr><tr><td>LeftTime</td><td>DateTime (nullable)</td><td>Specifies the leaving time</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Reservation Location ID</td><td>True</td></tr><tr><td>ModifyBookingURL</td><td>String</td><td>Modification URL</td><td>False</td></tr><tr><td>ReservationDateTime</td><td>DateTime</td><td>Reservation Date</td><td>False</td></tr><tr><td>ReservationRef</td><td>String</td><td>Reservation Reference</td><td>True</td></tr><tr><td>SeatingDateTime</td><td>DateTime (nullable)</td><td>Searting Date</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Reservation Source ID</td><td>True</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list</td><td>False</td></tr><tr><td>Updated_At</td><td>DateTime (nullable)</td><td>Update Date</td><td>False</td></tr><tr><td>UpdateMode</td><td>UpdateModeEnum (nullable)</td><td>Update Mode : PUT (override existing data by the sent one) / PATCH (append sent data to the existing: empty values will be ignored)</td><td>False</td></tr><tr><td><h4>ReservationAnalytics Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>utm_campaign</td><td>String</td><td>UTM Campaign</td><td>False</td></tr><tr><td>utm_content</td><td>String</td><td>UTM Content</td><td>False</td></tr><tr><td>utm_medium</td><td>String</td><td>UTM Meduim</td><td>False</td></tr><tr><td>utm_source</td><td>String</td><td>UTM Source</td><td>False</td></tr><tr><td>utm_term</td><td>String</td><td>UTM Term</td><td>False</td></tr><tr><td><h4>CommsPreferenceBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>ReservationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingTags</td><td>List&lt;String&gt;</td><td>List of Tags</td><td>False</td></tr><tr><td>CampaignKey</td><td>String</td><td>Campaign Key</td><td>False</td></tr><tr><td>GuestTags</td><td>List&lt;String&gt;</td><td>List of Tags</td><td>False</td></tr><tr><td>NoOfAdults</td><td>Int32</td><td>Number of Adults</td><td>False</td></tr><tr><td>NoOfChildren</td><td>Int32</td><td>Number of Children</td><td>False</td></tr><tr><td>NoOfHighChairs</td><td>Int32</td><td>Number of High Chairs</td><td>False</td></tr><tr><td>TableNumbers</td><td>List&lt;String&gt;</td><td>List Of Table Numbers</td><td>False</td></tr><tr><td>TotalCustomerCount</td><td>Int32 (nullable)</td><td>Total Customers Count</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher Code</td><td>False</td></tr><tr><td><h4>Duration Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>NumberOfDays</td><td>Int32</td><td></td><td>False</td></tr><tr><td>NumberOfHours</td><td>Int32</td><td></td><td>False</td></tr><tr><td>NumberOfMinutes</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ReservationOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>the ID of the contacts</td></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>ReservationID</td><td>Int32 (nullable)</td><td>this is the Atreemo ID linked to the reservation submitted, this will be used to cancel or update a reservation</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the reservation was successfully added to CRM, if false an error was occured and you will find the description in the field \"Error\")</td></tr></table>","urlObject":{"protocol":"https","path":["api","Reservation","Post"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"d0a0df46-52a0-4de5-9634-5e08d02fa421","name":"api/Reservation/Post Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ReservationRef\": \"sample string 1\",\r\n  \"ReservationDateTime\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n  \"LocationID\": \"sample string 3\",\r\n  \"Comment\": \"sample string 4\",\r\n  \"SourceID\": \"sample string 7\",\r\n  \"CancelBookingURL\": \"sample string 8\",\r\n  \"ModifyBookingURL\": \"sample string 9\",\r\n  \"Updated_At\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n  \"BookingDateTime\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n  \"BookingStatusID\": 1,\r\n  \"BookingPreorder_URL\": \"sample string 10\",\r\n  \"BookingManagePreorder_URL\": \"sample string 11\",\r\n  \"BookingPayment_URL\": \"sample string 12\",\r\n  \"BookingContract_URL\": \"sample string 13\",\r\n  \"BookingCalendar_URL\": \"sample string 14\",\r\n  \"Customer\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:09.3581446+00:00\"\r\n  },\r\n  \"Details\": {\r\n    \"TotalCustomerCount\": 1,\r\n    \"NoOfAdults\": 1,\r\n    \"NoOfChildren\": 2,\r\n    \"NoOfHighChairs\": 3,\r\n    \"VoucherCode\": \"sample string 4\",\r\n    \"CampaignKey\": \"sample string 5\",\r\n    \"TableNumbers\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"BookingTags\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"GuestTags\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Analytics\": {\r\n    \"utm_source\": \"sample string 1\",\r\n    \"utm_medium\": \"sample string 2\",\r\n    \"utm_campaign\": \"sample string 3\",\r\n    \"utm_term\": \"sample string 4\",\r\n    \"utm_content\": \"sample string 5\"\r\n  },\r\n  \"CommsPreference\": {\r\n    \"EmailOptin\": true,\r\n    \"SmsOptin\": true,\r\n    \"MailOptin\": true,\r\n    \"PhoneOptin\": true,\r\n    \"PushNotificationOptin\": true,\r\n    \"WebPushNotificationOptin\": true,\r\n    \"ChangeDate\": \"2026-03-25T07:30:09.3581446+00:00\"\r\n  },\r\n  \"BookingChannel\": \"sample string 15\",\r\n  \"BookingType\": \"sample string 16\",\r\n  \"BookingOffer\": \"sample string 17\",\r\n  \"SeatingDateTime\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n  \"EstimatedValue\": 1.1,\r\n  \"CustomField1\": \"sample string 18\",\r\n  \"CustomField2\": \"sample string 19\",\r\n  \"CustomField3\": \"sample string 20\",\r\n  \"CustomField4\": \"sample string 21\",\r\n  \"CustomField5\": \"sample string 22\",\r\n  \"CustomField6\": \"sample string 23\",\r\n  \"SupplierCode\": 1,\r\n  \"UpdateMode\": 0,\r\n  \"BookingSector\": 1,\r\n  \"DurationDetails\": {\r\n    \"NumberOfDays\": 1,\r\n    \"NumberOfHours\": 2,\r\n    \"NumberOfMinutes\": 3\r\n  },\r\n  \"LeftTime\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n  \"Canceled_On\": \"2026-03-25T07:30:09.3581446+00:00\",\r\n  \"Canceled_By\": 1,\r\n  \"EventID\": 1\r\n}"},"url":"https://{{Host}}/api/Reservation/Post","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add or Update a Reservation\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>Reservation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Analytics</td><td>ReservationAnalytics</td><td>Analytics Details</td><td>False</td></tr><tr><td>BookingCalendar_URL</td><td>String</td><td>Calendar URL</td><td>False</td></tr><tr><td>BookingChannel</td><td>String</td><td>Booking Channel</td><td>False</td></tr><tr><td>BookingContract_URL</td><td>String</td><td>Contract URL</td><td>False</td></tr><tr><td>BookingDateTime</td><td>DateTime (nullable)</td><td>Reservation Date</td><td>False</td></tr><tr><td>BookingManagePreorder_URL</td><td>String</td><td>Manage Pre-Order URL</td><td>False</td></tr><tr><td>BookingOffer</td><td>String</td><td>Booking Offer</td><td>False</td></tr><tr><td>BookingPayment_URL</td><td>String</td><td>Payment URL</td><td>False</td></tr><tr><td>BookingPreorder_URL</td><td>String</td><td>Pre-Order URL</td><td>False</td></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td><td>False</td></tr><tr><td>BookingStatusID</td><td>BookingStatus (nullable)</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td><td>False</td></tr><tr><td>BookingType</td><td>String</td><td>Booking Type</td><td>False</td></tr><tr><td>CancelBookingURL</td><td>String</td><td>Cancellation URL</td><td>False</td></tr><tr><td>Canceled_By</td><td>Int32 (nullable)</td><td>Canceled By</td><td>False</td></tr><tr><td>Canceled_On</td><td>DateTime (nullable)</td><td>Canceled On</td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Reservation Comment</td><td>False</td></tr><tr><td>CommsPreference</td><td>CommsPreferenceBasic</td><td>Communication Preference Details</td><td>False</td></tr><tr><td>Customer</td><td>Contact</td><td>Customer Details</td><td>True</td></tr><tr><td>CustomField1</td><td>String</td><td>Customer Field 1</td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td>Customer Field 2</td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td>Customer Field 3</td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td>Customer Field 4</td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td>Customer Field 5</td><td>False</td></tr><tr><td>CustomField6</td><td>String</td><td>Customer Field 6</td><td>False</td></tr><tr><td>Details</td><td>ReservationDetails</td><td>Reservation Details</td><td>False</td></tr><tr><td>DurationDetails</td><td>Duration</td><td>Duration spent details: specify the number of Days, Hours and Minutes</td><td>False</td></tr><tr><td>EstimatedValue</td><td>Double (nullable)</td><td>Estimated Value Amount</td><td>False</td></tr><tr><td>EventID</td><td>Int32 (nullable)</td><td>Event ID</td><td>False</td></tr><tr><td>LeftTime</td><td>DateTime (nullable)</td><td>Specifies the leaving time</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Reservation Location ID</td><td>True</td></tr><tr><td>ModifyBookingURL</td><td>String</td><td>Modification URL</td><td>False</td></tr><tr><td>ReservationDateTime</td><td>DateTime</td><td>Reservation Date</td><td>False</td></tr><tr><td>ReservationRef</td><td>String</td><td>Reservation Reference</td><td>True</td></tr><tr><td>SeatingDateTime</td><td>DateTime (nullable)</td><td>Searting Date</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Reservation Source ID</td><td>True</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list</td><td>False</td></tr><tr><td>Updated_At</td><td>DateTime (nullable)</td><td>Update Date</td><td>False</td></tr><tr><td>UpdateMode</td><td>UpdateModeEnum (nullable)</td><td>Update Mode : PUT (override existing data by the sent one) / PATCH (append sent data to the existing: empty values will be ignored)</td><td>False</td></tr><tr><td colspan=4><h4>ReservationAnalytics Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>utm_campaign</td><td>String</td><td>UTM Campaign</td><td>False</td></tr><tr><td>utm_content</td><td>String</td><td>UTM Content</td><td>False</td></tr><tr><td>utm_medium</td><td>String</td><td>UTM Meduim</td><td>False</td></tr><tr><td>utm_source</td><td>String</td><td>UTM Source</td><td>False</td></tr><tr><td>utm_term</td><td>String</td><td>UTM Term</td><td>False</td></tr><tr><td colspan=4><h4>CommsPreferenceBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td colspan=4><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td colspan=4><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>ReservationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingTags</td><td>List&lt;String&gt;</td><td>List of Tags</td><td>False</td></tr><tr><td>CampaignKey</td><td>String</td><td>Campaign Key</td><td>False</td></tr><tr><td>GuestTags</td><td>List&lt;String&gt;</td><td>List of Tags</td><td>False</td></tr><tr><td>NoOfAdults</td><td>Int32</td><td>Number of Adults</td><td>False</td></tr><tr><td>NoOfChildren</td><td>Int32</td><td>Number of Children</td><td>False</td></tr><tr><td>NoOfHighChairs</td><td>Int32</td><td>Number of High Chairs</td><td>False</td></tr><tr><td>TableNumbers</td><td>List&lt;String&gt;</td><td>List Of Table Numbers</td><td>False</td></tr><tr><td>TotalCustomerCount</td><td>Int32 (nullable)</td><td>Total Customers Count</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher Code</td><td>False</td></tr><tr><td colspan=4><h4>Duration Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>NumberOfDays</td><td>Int32</td><td></td><td>False</td></tr><tr><td>NumberOfHours</td><td>Int32</td><td></td><td>False</td></tr><tr><td>NumberOfMinutes</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ReservationOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>the ID of the contacts</td></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>ReservationID</td><td>Int32 (nullable)</td><td>this is the Atreemo ID linked to the reservation submitted, this will be used to cancel or update a reservation</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the reservation was successfully added to CRM, if false an error was occured and you will find the description in the field \"Error\")</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"ReservationID\": 1,\r\n  \"CtcID\": 1,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"29ec9700-5860-406a-b9e6-8ac125e297ac"},{"name":"Put","id":"e733c304-aa8a-4ae6-9e2a-9eee145852fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ReservationID\": 1,\r\n  \"ReservationRef\": \"sample string 1\",\r\n  \"ReservationDateTime\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n  \"LocationID\": \"sample string 3\",\r\n  \"Comment\": \"sample string 4\",\r\n  \"SourceID\": \"sample string 7\",\r\n  \"CancelBookingURL\": \"sample string 8\",\r\n  \"ModifyBookingURL\": \"sample string 9\",\r\n  \"Updated_At\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n  \"BookingDateTime\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n  \"BookingStatusID\": 1,\r\n  \"BookingPreorder_URL\": \"sample string 10\",\r\n  \"BookingManagePreorder_URL\": \"sample string 11\",\r\n  \"BookingPayment_URL\": \"sample string 12\",\r\n  \"BookingContract_URL\": \"sample string 13\",\r\n  \"BookingCalendar_URL\": \"sample string 14\",\r\n  \"Customer\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:09.4050532+00:00\"\r\n  },\r\n  \"Details\": {\r\n    \"TotalCustomerCount\": 1,\r\n    \"NoOfAdults\": 1,\r\n    \"NoOfChildren\": 2,\r\n    \"NoOfHighChairs\": 3,\r\n    \"VoucherCode\": \"sample string 4\",\r\n    \"CampaignKey\": \"sample string 5\",\r\n    \"TableNumbers\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"BookingTags\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"GuestTags\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Analytics\": {\r\n    \"utm_source\": \"sample string 1\",\r\n    \"utm_medium\": \"sample string 2\",\r\n    \"utm_campaign\": \"sample string 3\",\r\n    \"utm_term\": \"sample string 4\",\r\n    \"utm_content\": \"sample string 5\"\r\n  },\r\n  \"CommsPreference\": {\r\n    \"EmailOptin\": true,\r\n    \"SmsOptin\": true,\r\n    \"MailOptin\": true,\r\n    \"PhoneOptin\": true,\r\n    \"PushNotificationOptin\": true,\r\n    \"WebPushNotificationOptin\": true,\r\n    \"ChangeDate\": \"2026-03-25T07:30:09.4050532+00:00\"\r\n  },\r\n  \"BookingChannel\": \"sample string 15\",\r\n  \"BookingType\": \"sample string 16\",\r\n  \"BookingOffer\": \"sample string 17\",\r\n  \"SeatingDateTime\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n  \"EstimatedValue\": 1.1,\r\n  \"CustomField1\": \"sample string 18\",\r\n  \"CustomField2\": \"sample string 19\",\r\n  \"CustomField3\": \"sample string 20\",\r\n  \"CustomField4\": \"sample string 21\",\r\n  \"CustomField5\": \"sample string 22\",\r\n  \"CustomField6\": \"sample string 23\",\r\n  \"SupplierCode\": 1,\r\n  \"UpdateMode\": 0,\r\n  \"BookingSector\": 1,\r\n  \"DurationDetails\": {\r\n    \"NumberOfDays\": 1,\r\n    \"NumberOfHours\": 2,\r\n    \"NumberOfMinutes\": 3\r\n  },\r\n  \"LeftTime\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n  \"Canceled_On\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n  \"Canceled_By\": 1,\r\n  \"EventID\": 1\r\n}"},"url":"https://{{Host}}/api/Reservation/Put","description":" <p>\n            Update a Reservation\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>ReservationExtended Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Analytics</td><td>ReservationAnalytics</td><td>Analytics Details</td><td>False</td></tr><tr><td>BookingCalendar_URL</td><td>String</td><td>Calendar URL</td><td>False</td></tr><tr><td>BookingChannel</td><td>String</td><td>Booking Channel</td><td>False</td></tr><tr><td>BookingContract_URL</td><td>String</td><td>Contract URL</td><td>False</td></tr><tr><td>BookingDateTime</td><td>DateTime (nullable)</td><td>Reservation Date</td><td>False</td></tr><tr><td>BookingManagePreorder_URL</td><td>String</td><td>Manage Pre-Order URL</td><td>False</td></tr><tr><td>BookingOffer</td><td>String</td><td>Booking Offer</td><td>False</td></tr><tr><td>BookingPayment_URL</td><td>String</td><td>Payment URL</td><td>False</td></tr><tr><td>BookingPreorder_URL</td><td>String</td><td>Pre-Order URL</td><td>False</td></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td><td>False</td></tr><tr><td>BookingStatusID</td><td>BookingStatus (nullable)</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td><td>False</td></tr><tr><td>BookingType</td><td>String</td><td>Booking Type</td><td>False</td></tr><tr><td>CancelBookingURL</td><td>String</td><td>Cancellation URL</td><td>False</td></tr><tr><td>Canceled_By</td><td>Int32 (nullable)</td><td>Canceled By</td><td>False</td></tr><tr><td>Canceled_On</td><td>DateTime (nullable)</td><td>Canceled On</td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Reservation Comment</td><td>False</td></tr><tr><td>CommsPreference</td><td>CommsPreferenceBasic</td><td>Communication Preference Details</td><td>False</td></tr><tr><td>Customer</td><td>Contact</td><td>Customer Details</td><td>True</td></tr><tr><td>CustomField1</td><td>String</td><td>Customer Field 1</td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td>Customer Field 2</td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td>Customer Field 3</td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td>Customer Field 4</td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td>Customer Field 5</td><td>False</td></tr><tr><td>CustomField6</td><td>String</td><td>Customer Field 6</td><td>False</td></tr><tr><td>Details</td><td>ReservationDetails</td><td>Reservation Details</td><td>False</td></tr><tr><td>DurationDetails</td><td>Duration</td><td>Duration spent details: specify the number of Days, Hours and Minutes</td><td>False</td></tr><tr><td>EstimatedValue</td><td>Double (nullable)</td><td>Estimated Value Amount</td><td>False</td></tr><tr><td>EventID</td><td>Int32 (nullable)</td><td>Event ID</td><td>False</td></tr><tr><td>LeftTime</td><td>DateTime (nullable)</td><td>Specifies the leaving time</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Reservation Location ID</td><td>True</td></tr><tr><td>ModifyBookingURL</td><td>String</td><td>Modification URL</td><td>False</td></tr><tr><td>ReservationDateTime</td><td>DateTime</td><td>Reservation Date</td><td>False</td></tr><tr><td>ReservationID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>ReservationRef</td><td>String</td><td>Reservation Reference</td><td>True</td></tr><tr><td>SeatingDateTime</td><td>DateTime (nullable)</td><td>Searting Date</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Reservation Source ID</td><td>True</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list</td><td>False</td></tr><tr><td>Updated_At</td><td>DateTime (nullable)</td><td>Update Date</td><td>False</td></tr><tr><td>UpdateMode</td><td>UpdateModeEnum (nullable)</td><td>Update Mode : PUT (override existing data by the sent one) / PATCH (append sent data to the existing: empty values will be ignored)</td><td>False</td></tr><tr><td><h4>ReservationAnalytics Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>utm_campaign</td><td>String</td><td>UTM Campaign</td><td>False</td></tr><tr><td>utm_content</td><td>String</td><td>UTM Content</td><td>False</td></tr><tr><td>utm_medium</td><td>String</td><td>UTM Meduim</td><td>False</td></tr><tr><td>utm_source</td><td>String</td><td>UTM Source</td><td>False</td></tr><tr><td>utm_term</td><td>String</td><td>UTM Term</td><td>False</td></tr><tr><td><h4>CommsPreferenceBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>ReservationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingTags</td><td>List&lt;String&gt;</td><td>List of Tags</td><td>False</td></tr><tr><td>CampaignKey</td><td>String</td><td>Campaign Key</td><td>False</td></tr><tr><td>GuestTags</td><td>List&lt;String&gt;</td><td>List of Tags</td><td>False</td></tr><tr><td>NoOfAdults</td><td>Int32</td><td>Number of Adults</td><td>False</td></tr><tr><td>NoOfChildren</td><td>Int32</td><td>Number of Children</td><td>False</td></tr><tr><td>NoOfHighChairs</td><td>Int32</td><td>Number of High Chairs</td><td>False</td></tr><tr><td>TableNumbers</td><td>List&lt;String&gt;</td><td>List Of Table Numbers</td><td>False</td></tr><tr><td>TotalCustomerCount</td><td>Int32 (nullable)</td><td>Total Customers Count</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher Code</td><td>False</td></tr><tr><td><h4>Duration Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>NumberOfDays</td><td>Int32</td><td></td><td>False</td></tr><tr><td>NumberOfHours</td><td>Int32</td><td></td><td>False</td></tr><tr><td>NumberOfMinutes</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ReservationResult Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the call was successfully submitted, if false an error was occured and you will find the description in the field \"Error\")</td></tr></table>","urlObject":{"protocol":"https","path":["api","Reservation","Put"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"7f73cdf5-cf7c-4ac0-ab5f-d7a08800f175","name":"api/Reservation/Put Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ReservationID\": 1,\r\n  \"ReservationRef\": \"sample string 1\",\r\n  \"ReservationDateTime\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n  \"LocationID\": \"sample string 3\",\r\n  \"Comment\": \"sample string 4\",\r\n  \"SourceID\": \"sample string 7\",\r\n  \"CancelBookingURL\": \"sample string 8\",\r\n  \"ModifyBookingURL\": \"sample string 9\",\r\n  \"Updated_At\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n  \"BookingDateTime\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n  \"BookingStatusID\": 1,\r\n  \"BookingPreorder_URL\": \"sample string 10\",\r\n  \"BookingManagePreorder_URL\": \"sample string 11\",\r\n  \"BookingPayment_URL\": \"sample string 12\",\r\n  \"BookingContract_URL\": \"sample string 13\",\r\n  \"BookingCalendar_URL\": \"sample string 14\",\r\n  \"Customer\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:09.4050532+00:00\"\r\n  },\r\n  \"Details\": {\r\n    \"TotalCustomerCount\": 1,\r\n    \"NoOfAdults\": 1,\r\n    \"NoOfChildren\": 2,\r\n    \"NoOfHighChairs\": 3,\r\n    \"VoucherCode\": \"sample string 4\",\r\n    \"CampaignKey\": \"sample string 5\",\r\n    \"TableNumbers\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"BookingTags\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"GuestTags\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ]\r\n  },\r\n  \"Analytics\": {\r\n    \"utm_source\": \"sample string 1\",\r\n    \"utm_medium\": \"sample string 2\",\r\n    \"utm_campaign\": \"sample string 3\",\r\n    \"utm_term\": \"sample string 4\",\r\n    \"utm_content\": \"sample string 5\"\r\n  },\r\n  \"CommsPreference\": {\r\n    \"EmailOptin\": true,\r\n    \"SmsOptin\": true,\r\n    \"MailOptin\": true,\r\n    \"PhoneOptin\": true,\r\n    \"PushNotificationOptin\": true,\r\n    \"WebPushNotificationOptin\": true,\r\n    \"ChangeDate\": \"2026-03-25T07:30:09.4050532+00:00\"\r\n  },\r\n  \"BookingChannel\": \"sample string 15\",\r\n  \"BookingType\": \"sample string 16\",\r\n  \"BookingOffer\": \"sample string 17\",\r\n  \"SeatingDateTime\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n  \"EstimatedValue\": 1.1,\r\n  \"CustomField1\": \"sample string 18\",\r\n  \"CustomField2\": \"sample string 19\",\r\n  \"CustomField3\": \"sample string 20\",\r\n  \"CustomField4\": \"sample string 21\",\r\n  \"CustomField5\": \"sample string 22\",\r\n  \"CustomField6\": \"sample string 23\",\r\n  \"SupplierCode\": 1,\r\n  \"UpdateMode\": 0,\r\n  \"BookingSector\": 1,\r\n  \"DurationDetails\": {\r\n    \"NumberOfDays\": 1,\r\n    \"NumberOfHours\": 2,\r\n    \"NumberOfMinutes\": 3\r\n  },\r\n  \"LeftTime\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n  \"Canceled_On\": \"2026-03-25T07:30:09.4050532+00:00\",\r\n  \"Canceled_By\": 1,\r\n  \"EventID\": 1\r\n}"},"url":"https://{{Host}}/api/Reservation/Put","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Update a Reservation\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ReservationExtended Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Analytics</td><td>ReservationAnalytics</td><td>Analytics Details</td><td>False</td></tr><tr><td>BookingCalendar_URL</td><td>String</td><td>Calendar URL</td><td>False</td></tr><tr><td>BookingChannel</td><td>String</td><td>Booking Channel</td><td>False</td></tr><tr><td>BookingContract_URL</td><td>String</td><td>Contract URL</td><td>False</td></tr><tr><td>BookingDateTime</td><td>DateTime (nullable)</td><td>Reservation Date</td><td>False</td></tr><tr><td>BookingManagePreorder_URL</td><td>String</td><td>Manage Pre-Order URL</td><td>False</td></tr><tr><td>BookingOffer</td><td>String</td><td>Booking Offer</td><td>False</td></tr><tr><td>BookingPayment_URL</td><td>String</td><td>Payment URL</td><td>False</td></tr><tr><td>BookingPreorder_URL</td><td>String</td><td>Pre-Order URL</td><td>False</td></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td><td>False</td></tr><tr><td>BookingStatusID</td><td>BookingStatus (nullable)</td><td>Booked = 1,\n            Completed = 2,\n            Cancelled = 3,\n            NoShow = 4,\n            Enquiry = 5</td><td>False</td></tr><tr><td>BookingType</td><td>String</td><td>Booking Type</td><td>False</td></tr><tr><td>CancelBookingURL</td><td>String</td><td>Cancellation URL</td><td>False</td></tr><tr><td>Canceled_By</td><td>Int32 (nullable)</td><td>Canceled By</td><td>False</td></tr><tr><td>Canceled_On</td><td>DateTime (nullable)</td><td>Canceled On</td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Reservation Comment</td><td>False</td></tr><tr><td>CommsPreference</td><td>CommsPreferenceBasic</td><td>Communication Preference Details</td><td>False</td></tr><tr><td>Customer</td><td>Contact</td><td>Customer Details</td><td>True</td></tr><tr><td>CustomField1</td><td>String</td><td>Customer Field 1</td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td>Customer Field 2</td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td>Customer Field 3</td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td>Customer Field 4</td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td>Customer Field 5</td><td>False</td></tr><tr><td>CustomField6</td><td>String</td><td>Customer Field 6</td><td>False</td></tr><tr><td>Details</td><td>ReservationDetails</td><td>Reservation Details</td><td>False</td></tr><tr><td>DurationDetails</td><td>Duration</td><td>Duration spent details: specify the number of Days, Hours and Minutes</td><td>False</td></tr><tr><td>EstimatedValue</td><td>Double (nullable)</td><td>Estimated Value Amount</td><td>False</td></tr><tr><td>EventID</td><td>Int32 (nullable)</td><td>Event ID</td><td>False</td></tr><tr><td>LeftTime</td><td>DateTime (nullable)</td><td>Specifies the leaving time</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Reservation Location ID</td><td>True</td></tr><tr><td>ModifyBookingURL</td><td>String</td><td>Modification URL</td><td>False</td></tr><tr><td>ReservationDateTime</td><td>DateTime</td><td>Reservation Date</td><td>False</td></tr><tr><td>ReservationID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>ReservationRef</td><td>String</td><td>Reservation Reference</td><td>True</td></tr><tr><td>SeatingDateTime</td><td>DateTime (nullable)</td><td>Searting Date</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Reservation Source ID</td><td>True</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list</td><td>False</td></tr><tr><td>Updated_At</td><td>DateTime (nullable)</td><td>Update Date</td><td>False</td></tr><tr><td>UpdateMode</td><td>UpdateModeEnum (nullable)</td><td>Update Mode : PUT (override existing data by the sent one) / PATCH (append sent data to the existing: empty values will be ignored)</td><td>False</td></tr><tr><td colspan=4><h4>ReservationAnalytics Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>utm_campaign</td><td>String</td><td>UTM Campaign</td><td>False</td></tr><tr><td>utm_content</td><td>String</td><td>UTM Content</td><td>False</td></tr><tr><td>utm_medium</td><td>String</td><td>UTM Meduim</td><td>False</td></tr><tr><td>utm_source</td><td>String</td><td>UTM Source</td><td>False</td></tr><tr><td>utm_term</td><td>String</td><td>UTM Term</td><td>False</td></tr><tr><td colspan=4><h4>CommsPreferenceBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ChangeDate</td><td>DateTime (nullable)</td><td>Change date (current date if empty)</td><td>False</td></tr><tr><td>EmailOptin</td><td>Boolean (nullable)</td><td>True if would receive an email</td><td>False</td></tr><tr><td>MailOptin</td><td>Boolean (nullable)</td><td>True if would receive a mail</td><td>False</td></tr><tr><td>PhoneOptin</td><td>Boolean (nullable)</td><td>True if would receive a call</td><td>False</td></tr><tr><td>PushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td>SmsOptin</td><td>Boolean (nullable)</td><td>True if would receive an Sms</td><td>False</td></tr><tr><td>WebPushNotificationOptin</td><td>Boolean (nullable)</td><td>True if would receive a mobile app push notification</td><td>False</td></tr><tr><td colspan=4><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td colspan=4><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>ReservationDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingTags</td><td>List&lt;String&gt;</td><td>List of Tags</td><td>False</td></tr><tr><td>CampaignKey</td><td>String</td><td>Campaign Key</td><td>False</td></tr><tr><td>GuestTags</td><td>List&lt;String&gt;</td><td>List of Tags</td><td>False</td></tr><tr><td>NoOfAdults</td><td>Int32</td><td>Number of Adults</td><td>False</td></tr><tr><td>NoOfChildren</td><td>Int32</td><td>Number of Children</td><td>False</td></tr><tr><td>NoOfHighChairs</td><td>Int32</td><td>Number of High Chairs</td><td>False</td></tr><tr><td>TableNumbers</td><td>List&lt;String&gt;</td><td>List Of Table Numbers</td><td>False</td></tr><tr><td>TotalCustomerCount</td><td>Int32 (nullable)</td><td>Total Customers Count</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher Code</td><td>False</td></tr><tr><td colspan=4><h4>Duration Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>NumberOfDays</td><td>Int32</td><td></td><td>False</td></tr><tr><td>NumberOfHours</td><td>Int32</td><td></td><td>False</td></tr><tr><td>NumberOfMinutes</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ReservationResult Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The call status (if true so the call was successfully submitted, if false an error was occured and you will find the description in the field \"Error\")</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"e733c304-aa8a-4ae6-9e2a-9eee145852fe"}],"id":"b0bebd15-dd23-46b9-98b1-f04c7fd09888","description":"<p>Api Methods for Reservation</p>\n","_postman_id":"b0bebd15-dd23-46b9-98b1-f04c7fd09888"},{"name":"RewardJourneys","item":[{"name":"FindRewardJourney","id":"5164c610-fa7a-41d6-878f-50d0afc3f4cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"RewardJourneyID\": 1,\r\n  \"RewardJourneyname\": \"sample string 2\",\r\n  \"RewardJourneyStartDate\": \"2026-03-25T07:30:09.4206631+00:00\",\r\n  \"RewardJourneyEndDate\": \"2026-03-25T07:30:09.4206631+00:00\",\r\n  \"RewardJourneyStatus\": 1,\r\n  \"RewardJourneyTypes\": [\r\n    1,\r\n    1\r\n  ],\r\n  \"RewardJourneyRewardType\": 1,\r\n  \"RewardJourneyLocations\": [\r\n    {\r\n      \"ActeolSiteID\": 1,\r\n      \"OriginSiteID\": \"sample string 2\",\r\n      \"SiteName\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"ActeolSiteID\": 1,\r\n      \"OriginSiteID\": \"sample string 2\",\r\n      \"SiteName\": \"sample string 3\"\r\n    }\r\n  ],\r\n  \"BrandID\": 3,\r\n  \"AllowExpired\": true,\r\n  \"FromView\": true,\r\n  \"FromApi\": true\r\n}"},"url":"https://{{Host}}/api/RewardJourneys/FindRewardJourney","description":" <p>\n            Find Reward Journeys based on the criteria sent in the Filter\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>FindRewardJourneysInputFilter Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AllowExpired</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32</td><td>Filter RewardJourney with RewardJourney BrandID</td><td>False</td></tr><tr><td>FromApi</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>FromView</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>RewardJourneyEndDate</td><td>DateTime (nullable)</td><td>Filter RewardJourney with RewardJourney EndDate</td><td>False</td></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>Filter RewardJourney with RewardJourney ID</td><td>False</td></tr><tr><td>RewardJourneyLocations</td><td>List&lt;RewardJourneyLocation&gt;</td><td>Filter RewardJourney with RewardJourney Locations</td><td>False</td></tr><tr><td>RewardJourneyname</td><td>String</td><td>Filter RewardJourney with RewardJourney name</td><td>False</td></tr><tr><td>RewardJourneyRewardType</td><td>RewardJourneyRewardType</td><td>Filter RewardJourney with RewardJourney Reward Type</td><td>False</td></tr><tr><td>RewardJourneyStartDate</td><td>DateTime (nullable)</td><td>Filter RewardJourney with RewardJourney StartDate</td><td>False</td></tr><tr><td>RewardJourneyStatus</td><td>RewardJourneyStatus</td><td>Filter RewardJourney with RewardJourney Status</td><td>False</td></tr><tr><td>RewardJourneyTypes</td><td>List&lt;RewardJourneyType&gt;</td><td>Filter RewardJourney with RewardJourney Type</td><td>False</td></tr><tr><td><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td><td>False</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td><td>False</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>RewardJourneysDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>List&lt;RewardJourney&gt;</td><td>search result</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>RewardJourney Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>AddedByName</td><td>String</td><td></td></tr><tr><td>AddedDate</td><td>DateTime</td><td></td></tr><tr><td>Brand</td><td>BrandRewardJourney</td><td>The brand details</td></tr><tr><td>IsAllLocations</td><td>Boolean</td><td>If it's true , the RewardJourney will be appliable for all its brand locations</td></tr><tr><td>IsAllWeekDays</td><td>Boolean</td><td>If it's true ,the RewardJourney will be appliable for all week days during its period</td></tr><tr><td>IsPreview</td><td>Boolean</td><td></td></tr><tr><td>IsSelection</td><td>Boolean</td><td></td></tr><tr><td>ModifiedByName</td><td>String</td><td></td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>RewardJourneyBooking</td><td>RewardJourneyBookingCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Booking'</td></tr><tr><td>RewardJourneyDurationInDays</td><td>Int32</td><td>Number of day to finish the RewardJourney starting from the start date, if 0 , the period will be from the start to the end date of the RewardJourney</td></tr><tr><td>RewardJourneyEndDate</td><td>DateTime</td><td>The end date of the RewardJourney</td></tr><tr><td>RewardJourneyHtmlDescription</td><td>String</td><td>The descrition of the RewardJourney (html format)</td></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>The unique identifier of the RewardJourney</td></tr><tr><td>RewardJourneyImage</td><td>RewardJourneyAsset</td><td>The image of the RewardJourney</td></tr><tr><td>RewardJourneyLocations</td><td>List&lt;RewardJourneyLocation&gt;</td><td>The RewardJourney Locations details</td></tr><tr><td>RewardJourneyName</td><td>String</td><td>The Reward RewardJourney name</td></tr><tr><td>RewardJourneyProduct</td><td>RewardJourneyProductCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Product'</td></tr><tr><td>RewardJourneyReward</td><td>RewardJourneyReward</td><td>The details of reward once the customer finish the RewardJourney</td></tr><tr><td>RewardJourneySchedules</td><td>List&lt;RewardJourneySchedule&gt;</td><td></td></tr><tr><td>RewardJourneySchedulesDays</td><td>List&lt;ScheduleLine&gt;</td><td></td></tr><tr><td>RewardJourneySpend</td><td>RewardJourneySpendCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Spend'</td></tr><tr><td>RewardJourneyStartDate</td><td>DateTime</td><td>The start date of the RewardJourney</td></tr><tr><td>RewardJourneyStatus</td><td>RewardJourneyStatus</td><td></td></tr><tr><td>RewardJourneyStatusName</td><td>String</td><td>Active\n            Not Active\n            Expired</td></tr><tr><td>RewardJourneyTextDescription</td><td>String</td><td>The descrition of the RewardJourney (text format)</td></tr><tr><td>RewardJourneyType</td><td>RewardJourneyType</td><td></td></tr><tr><td>RewardJourneyTypeName</td><td>String</td><td>Product\n            Spend\n            Visit\n            Booking</td></tr><tr><td>RewardJourneyVisit</td><td>RewardJourneyVisitCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Visit'</td></tr><tr><td>SelectionID</td><td>Int32</td><td></td></tr><tr><td>SelectionTitle</td><td>String</td><td></td></tr><tr><td>SignUpPerCustomer</td><td>Int32</td><td>How many time customer can register to RewardJourney</td></tr><tr><td>UID</td><td>String</td><td></td></tr><tr><td><h4>BrandRewardJourney Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32</td><td>The Brand ID</td></tr><tr><td>BrandName</td><td>String</td><td>The Brand name</td></tr><tr><td><h4>RewardJourneyBookingCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingStatus</td><td>List&lt;RewardJourneyBookingStatus&gt;</td><td>The status of the booking</td></tr><tr><td>EndVisitDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>GoalToAchieve</td><td>Int32</td><td>The number of bookings to finish the RewardJourney</td></tr><tr><td>StartVisitDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td><h4>RewardJourneyBookingStatus Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingStatusID</td><td>Int32</td><td></td></tr><tr><td>BookingStatusName</td><td>String</td><td>The booking status name</td></tr><tr><td><h4>RewardJourneyAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetData</td><td>Byte[]</td><td>Image value (binary)</td></tr><tr><td>AssetID</td><td>Int32</td><td></td></tr><tr><td>URL</td><td>String</td><td>The url of the image</td></tr><tr><td><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td></tr><tr><td><h4>RewardJourneyProductCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AllowDiscountProducts</td><td>Boolean</td><td>If true,the Discounted products purchased will be considered in the RewardJourneys rules</td></tr><tr><td>AllowFreeProducts</td><td>Boolean</td><td>If true,the free products purchased will be considered in the RewardJourneys rules</td></tr><tr><td>GoalToAchieve</td><td>Int32</td><td>The satisfying number of the purchased products</td></tr><tr><td>ProductGroup</td><td>List&lt;ProductGroup&gt;</td><td>Products Group details</td></tr><tr><td>Products</td><td>List&lt;RewardJourneyProduct&gt;</td><td>Products details</td></tr><tr><td>ProductSubGroup</td><td>List&lt;ProductSubGroup&gt;</td><td>Products SubGroup details</td></tr><tr><td>PurchaseEachProduct</td><td>Boolean</td><td>If true, each product purchased must reach the RewardJourneys goals</td></tr><tr><td><h4>ProductGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>GroupName</td><td>String</td><td></td></tr><tr><td><h4>RewardJourneyProduct Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ProductCode</td><td>String</td><td>The Code of Product</td></tr><tr><td>ProductID</td><td>Int32</td><td>The ID of Product</td></tr><tr><td>ProductName</td><td>String</td><td>The Name of Product</td></tr><tr><td><h4>ProductSubGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupName</td><td>String</td><td></td></tr><tr><td><h4>RewardJourneyReward Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyOffer</td><td>RewardJourneyOffer</td><td>The reward details ,this object will be populated if the RewardJourney reward is Offer</td></tr><tr><td>RewardJourneyRewardType</td><td>RewardJourneyRewardType</td><td></td></tr><tr><td>RewardJourneyRewardTypeName</td><td>String</td><td>The type of the reward</td></tr><tr><td>RewardJourneyStampsValue</td><td>Double</td><td>The reward details ,this object will be populated if the RewardJourney reward is Point/Offer</td></tr><tr><td><h4>RewardJourneyOffer Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>Description</td><td>String</td><td>The Description of the Offer</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>The expiry date of the offer</td></tr><tr><td>OfferCode</td><td>String</td><td>The Offer Code</td></tr><tr><td>OfferID</td><td>Int32</td><td>The Offer ID</td></tr><tr><td>OfferStatus</td><td>String</td><td></td></tr><tr><td>Status</td><td>String</td><td>Status of the offer</td></tr><tr><td>Title</td><td>String</td><td>The Offer Title</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>The Voucher Type</td></tr><tr><td><h4>RewardJourneySchedule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Day</td><td>String</td><td></td></tr><tr><td>RewardJourneyScheduleSegments</td><td>List&lt;RewardJourneyScheduleSegment&gt;</td><td>The Schedule of the RewardJourney</td></tr><tr><td><h4>RewardJourneyScheduleSegment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td></td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr><tr><td><h4>ScheduleLine Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>days</td><td>ICollection&lt;ScheduleDays&gt;</td><td></td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr><tr><td><h4>ScheduleDays Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td></td></tr><tr><td>Daypart_ScheduleID</td><td>Int32</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td><h4>RewardJourneySpendCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>GoalToAchieve</td><td>Double</td><td>The amount that should be paid by the customer to finish the RewardJourney</td></tr><tr><td><h4>RewardJourneyVisitCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>GoalToAchieve</td><td>Int32</td><td>The number of visits to finish the RewardJourney</td></tr><tr><td>VisitEachLocation</td><td>Boolean</td><td>If true, each Visit must reach the RewardJourneys goals per location</td></tr></table>","urlObject":{"protocol":"https","path":["api","RewardJourneys","FindRewardJourney"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"ce1b916c-b417-446b-9310-ed1754ad3a79","name":"api/RewardJourneys/FindRewardJourney Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"RewardJourneyID\": 1,\r\n  \"RewardJourneyname\": \"sample string 2\",\r\n  \"RewardJourneyStartDate\": \"2026-03-25T07:30:09.4206631+00:00\",\r\n  \"RewardJourneyEndDate\": \"2026-03-25T07:30:09.4206631+00:00\",\r\n  \"RewardJourneyStatus\": 1,\r\n  \"RewardJourneyTypes\": [\r\n    1,\r\n    1\r\n  ],\r\n  \"RewardJourneyRewardType\": 1,\r\n  \"RewardJourneyLocations\": [\r\n    {\r\n      \"ActeolSiteID\": 1,\r\n      \"OriginSiteID\": \"sample string 2\",\r\n      \"SiteName\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"ActeolSiteID\": 1,\r\n      \"OriginSiteID\": \"sample string 2\",\r\n      \"SiteName\": \"sample string 3\"\r\n    }\r\n  ],\r\n  \"BrandID\": 3,\r\n  \"AllowExpired\": true,\r\n  \"FromView\": true,\r\n  \"FromApi\": true\r\n}"},"url":"https://{{Host}}/api/RewardJourneys/FindRewardJourney","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Find Reward Journeys based on the criteria sent in the Filter\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>FindRewardJourneysInputFilter Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AllowExpired</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32</td><td>Filter RewardJourney with RewardJourney BrandID</td><td>False</td></tr><tr><td>FromApi</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>FromView</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>RewardJourneyEndDate</td><td>DateTime (nullable)</td><td>Filter RewardJourney with RewardJourney EndDate</td><td>False</td></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>Filter RewardJourney with RewardJourney ID</td><td>False</td></tr><tr><td>RewardJourneyLocations</td><td>List&lt;RewardJourneyLocation&gt;</td><td>Filter RewardJourney with RewardJourney Locations</td><td>False</td></tr><tr><td>RewardJourneyname</td><td>String</td><td>Filter RewardJourney with RewardJourney name</td><td>False</td></tr><tr><td>RewardJourneyRewardType</td><td>RewardJourneyRewardType</td><td>Filter RewardJourney with RewardJourney Reward Type</td><td>False</td></tr><tr><td>RewardJourneyStartDate</td><td>DateTime (nullable)</td><td>Filter RewardJourney with RewardJourney StartDate</td><td>False</td></tr><tr><td>RewardJourneyStatus</td><td>RewardJourneyStatus</td><td>Filter RewardJourney with RewardJourney Status</td><td>False</td></tr><tr><td>RewardJourneyTypes</td><td>List&lt;RewardJourneyType&gt;</td><td>Filter RewardJourney with RewardJourney Type</td><td>False</td></tr><tr><td colspan=4><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td><td>False</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td><td>False</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>RewardJourneysDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>List&lt;RewardJourney&gt;</td><td>search result</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>RewardJourney Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>AddedByName</td><td>String</td><td></td></tr><tr><td>AddedDate</td><td>DateTime</td><td></td></tr><tr><td>Brand</td><td>BrandRewardJourney</td><td>The brand details</td></tr><tr><td>IsAllLocations</td><td>Boolean</td><td>If it's true , the RewardJourney will be appliable for all its brand locations</td></tr><tr><td>IsAllWeekDays</td><td>Boolean</td><td>If it's true ,the RewardJourney will be appliable for all week days during its period</td></tr><tr><td>IsPreview</td><td>Boolean</td><td></td></tr><tr><td>IsSelection</td><td>Boolean</td><td></td></tr><tr><td>ModifiedByName</td><td>String</td><td></td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>RewardJourneyBooking</td><td>RewardJourneyBookingCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Booking'</td></tr><tr><td>RewardJourneyDurationInDays</td><td>Int32</td><td>Number of day to finish the RewardJourney starting from the start date, if 0 , the period will be from the start to the end date of the RewardJourney</td></tr><tr><td>RewardJourneyEndDate</td><td>DateTime</td><td>The end date of the RewardJourney</td></tr><tr><td>RewardJourneyHtmlDescription</td><td>String</td><td>The descrition of the RewardJourney (html format)</td></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>The unique identifier of the RewardJourney</td></tr><tr><td>RewardJourneyImage</td><td>RewardJourneyAsset</td><td>The image of the RewardJourney</td></tr><tr><td>RewardJourneyLocations</td><td>List&lt;RewardJourneyLocation&gt;</td><td>The RewardJourney Locations details</td></tr><tr><td>RewardJourneyName</td><td>String</td><td>The Reward RewardJourney name</td></tr><tr><td>RewardJourneyProduct</td><td>RewardJourneyProductCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Product'</td></tr><tr><td>RewardJourneyReward</td><td>RewardJourneyReward</td><td>The details of reward once the customer finish the RewardJourney</td></tr><tr><td>RewardJourneySchedules</td><td>List&lt;RewardJourneySchedule&gt;</td><td></td></tr><tr><td>RewardJourneySchedulesDays</td><td>List&lt;ScheduleLine&gt;</td><td></td></tr><tr><td>RewardJourneySpend</td><td>RewardJourneySpendCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Spend'</td></tr><tr><td>RewardJourneyStartDate</td><td>DateTime</td><td>The start date of the RewardJourney</td></tr><tr><td>RewardJourneyStatus</td><td>RewardJourneyStatus</td><td></td></tr><tr><td>RewardJourneyStatusName</td><td>String</td><td>Active\n            Not Active\n            Expired</td></tr><tr><td>RewardJourneyTextDescription</td><td>String</td><td>The descrition of the RewardJourney (text format)</td></tr><tr><td>RewardJourneyType</td><td>RewardJourneyType</td><td></td></tr><tr><td>RewardJourneyTypeName</td><td>String</td><td>Product\n            Spend\n            Visit\n            Booking</td></tr><tr><td>RewardJourneyVisit</td><td>RewardJourneyVisitCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Visit'</td></tr><tr><td>SelectionID</td><td>Int32</td><td></td></tr><tr><td>SelectionTitle</td><td>String</td><td></td></tr><tr><td>SignUpPerCustomer</td><td>Int32</td><td>How many time customer can register to RewardJourney</td></tr><tr><td>UID</td><td>String</td><td></td></tr><tr><td colspan=3><h4>BrandRewardJourney Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32</td><td>The Brand ID</td></tr><tr><td>BrandName</td><td>String</td><td>The Brand name</td></tr><tr><td colspan=3><h4>RewardJourneyBookingCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingStatus</td><td>List&lt;RewardJourneyBookingStatus&gt;</td><td>The status of the booking</td></tr><tr><td>EndVisitDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>GoalToAchieve</td><td>Int32</td><td>The number of bookings to finish the RewardJourney</td></tr><tr><td>StartVisitDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td colspan=3><h4>RewardJourneyBookingStatus Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingStatusID</td><td>Int32</td><td></td></tr><tr><td>BookingStatusName</td><td>String</td><td>The booking status name</td></tr><tr><td colspan=3><h4>RewardJourneyAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetData</td><td>Byte[]</td><td>Image value (binary)</td></tr><tr><td>AssetID</td><td>Int32</td><td></td></tr><tr><td>URL</td><td>String</td><td>The url of the image</td></tr><tr><td colspan=3><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td></tr><tr><td colspan=3><h4>RewardJourneyProductCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AllowDiscountProducts</td><td>Boolean</td><td>If true,the Discounted products purchased will be considered in the RewardJourneys rules</td></tr><tr><td>AllowFreeProducts</td><td>Boolean</td><td>If true,the free products purchased will be considered in the RewardJourneys rules</td></tr><tr><td>GoalToAchieve</td><td>Int32</td><td>The satisfying number of the purchased products</td></tr><tr><td>ProductGroup</td><td>List&lt;ProductGroup&gt;</td><td>Products Group details</td></tr><tr><td>Products</td><td>List&lt;RewardJourneyProduct&gt;</td><td>Products details</td></tr><tr><td>ProductSubGroup</td><td>List&lt;ProductSubGroup&gt;</td><td>Products SubGroup details</td></tr><tr><td>PurchaseEachProduct</td><td>Boolean</td><td>If true, each product purchased must reach the RewardJourneys goals</td></tr><tr><td colspan=3><h4>ProductGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>GroupName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>RewardJourneyProduct Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ProductCode</td><td>String</td><td>The Code of Product</td></tr><tr><td>ProductID</td><td>Int32</td><td>The ID of Product</td></tr><tr><td>ProductName</td><td>String</td><td>The Name of Product</td></tr><tr><td colspan=3><h4>ProductSubGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>RewardJourneyReward Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyOffer</td><td>RewardJourneyOffer</td><td>The reward details ,this object will be populated if the RewardJourney reward is Offer</td></tr><tr><td>RewardJourneyRewardType</td><td>RewardJourneyRewardType</td><td></td></tr><tr><td>RewardJourneyRewardTypeName</td><td>String</td><td>The type of the reward</td></tr><tr><td>RewardJourneyStampsValue</td><td>Double</td><td>The reward details ,this object will be populated if the RewardJourney reward is Point/Offer</td></tr><tr><td colspan=3><h4>RewardJourneyOffer Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>Description</td><td>String</td><td>The Description of the Offer</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>The expiry date of the offer</td></tr><tr><td>OfferCode</td><td>String</td><td>The Offer Code</td></tr><tr><td>OfferID</td><td>Int32</td><td>The Offer ID</td></tr><tr><td>OfferStatus</td><td>String</td><td></td></tr><tr><td>Status</td><td>String</td><td>Status of the offer</td></tr><tr><td>Title</td><td>String</td><td>The Offer Title</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>The Voucher Type</td></tr><tr><td colspan=3><h4>RewardJourneySchedule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Day</td><td>String</td><td></td></tr><tr><td>RewardJourneyScheduleSegments</td><td>List&lt;RewardJourneyScheduleSegment&gt;</td><td>The Schedule of the RewardJourney</td></tr><tr><td colspan=3><h4>RewardJourneyScheduleSegment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td></td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr><tr><td colspan=3><h4>ScheduleLine Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>days</td><td>ICollection&lt;ScheduleDays&gt;</td><td></td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr><tr><td colspan=3><h4>ScheduleDays Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td></td></tr><tr><td>Daypart_ScheduleID</td><td>Int32</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>RewardJourneySpendCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>GoalToAchieve</td><td>Double</td><td>The amount that should be paid by the customer to finish the RewardJourney</td></tr><tr><td colspan=3><h4>RewardJourneyVisitCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>GoalToAchieve</td><td>Int32</td><td>The number of visits to finish the RewardJourney</td></tr><tr><td>VisitEachLocation</td><td>Boolean</td><td>If true, each Visit must reach the RewardJourneys goals per location</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseData\": [\r\n    {\r\n      \"RewardJourneyID\": 1,\r\n      \"UID\": \"sample string 2\",\r\n      \"RewardJourneyName\": \"sample string 3\",\r\n      \"RewardJourneyTextDescription\": \"sample string 4\",\r\n      \"RewardJourneyHtmlDescription\": \"sample string 5\",\r\n      \"RewardJourneyStartDate\": \"2026-03-25T07:30:09.4362998+00:00\",\r\n      \"RewardJourneyEndDate\": \"2026-03-25T07:30:09.4362998+00:00\",\r\n      \"RewardJourneySchedulesDays\": [\r\n        {\r\n          \"ID\": 1,\r\n          \"days\": [\r\n            {\r\n              \"ID\": 1,\r\n              \"Daypart_ScheduleID\": 2,\r\n              \"day\": 3\r\n            },\r\n            {\r\n              \"ID\": 1,\r\n              \"Daypart_ScheduleID\": 2,\r\n              \"day\": 3\r\n            }\r\n          ],\r\n          \"day\": 2,\r\n          \"start_minute\": 3,\r\n          \"end_minute\": 4,\r\n          \"timezone_type\": \"sample string 5\"\r\n        },\r\n        {\r\n          \"ID\": 1,\r\n          \"days\": [\r\n            {\r\n              \"ID\": 1,\r\n              \"Daypart_ScheduleID\": 2,\r\n              \"day\": 3\r\n            },\r\n            {\r\n              \"ID\": 1,\r\n              \"Daypart_ScheduleID\": 2,\r\n              \"day\": 3\r\n            }\r\n          ],\r\n          \"day\": 2,\r\n          \"start_minute\": 3,\r\n          \"end_minute\": 4,\r\n          \"timezone_type\": \"sample string 5\"\r\n        }\r\n      ],\r\n      \"RewardJourneySchedules\": [\r\n        {\r\n          \"Day\": \"Tuesday\",\r\n          \"RewardJourneyScheduleSegments\": [\r\n            {\r\n              \"day\": 0,\r\n              \"start_minute\": 3,\r\n              \"end_minute\": 4,\r\n              \"timezone_type\": null\r\n            },\r\n            {\r\n              \"day\": 0,\r\n              \"start_minute\": 3,\r\n              \"end_minute\": 4,\r\n              \"timezone_type\": null\r\n            }\r\n          ]\r\n        }\r\n      ],\r\n      \"RewardJourneyType\": 1,\r\n      \"RewardJourneyStatus\": 3,\r\n      \"RewardJourneyStatusName\": \"Expired\",\r\n      \"RewardJourneyTypeName\": \"Product\",\r\n      \"RewardJourneyProduct\": {\r\n        \"PurchaseEachProduct\": true,\r\n        \"GoalToAchieve\": 2,\r\n        \"ProductGroup\": [\r\n          {\r\n            \"GroupID\": 1,\r\n            \"BrandID\": 1,\r\n            \"GroupName\": \"sample string 2\"\r\n          },\r\n          {\r\n            \"GroupID\": 1,\r\n            \"BrandID\": 1,\r\n            \"GroupName\": \"sample string 2\"\r\n          }\r\n        ],\r\n        \"ProductSubGroup\": [\r\n          {\r\n            \"SubGroupID\": 1,\r\n            \"BrandID\": 1,\r\n            \"GroupID\": 2,\r\n            \"SubGroupName\": \"sample string 3\"\r\n          },\r\n          {\r\n            \"SubGroupID\": 1,\r\n            \"BrandID\": 1,\r\n            \"GroupID\": 2,\r\n            \"SubGroupName\": \"sample string 3\"\r\n          }\r\n        ],\r\n        \"Products\": [\r\n          {\r\n            \"ProductID\": 1,\r\n            \"ProductCode\": \"sample string 2\",\r\n            \"ProductName\": \"sample string 3\"\r\n          },\r\n          {\r\n            \"ProductID\": 1,\r\n            \"ProductCode\": \"sample string 2\",\r\n            \"ProductName\": \"sample string 3\"\r\n          }\r\n        ],\r\n        \"AllowFreeProducts\": true,\r\n        \"AllowDiscountProducts\": true\r\n      },\r\n      \"RewardJourneySpend\": {\r\n        \"GoalToAchieve\": 1.1\r\n      },\r\n      \"RewardJourneyVisit\": {\r\n        \"GoalToAchieve\": 1,\r\n        \"VisitEachLocation\": true\r\n      },\r\n      \"RewardJourneyBooking\": {\r\n        \"GoalToAchieve\": 1,\r\n        \"BookingStatus\": [\r\n          {\r\n            \"BookingStatusID\": 1,\r\n            \"BookingStatusName\": \"sample string 2\"\r\n          },\r\n          {\r\n            \"BookingStatusID\": 1,\r\n            \"BookingStatusName\": \"sample string 2\"\r\n          }\r\n        ],\r\n        \"StartVisitDate\": \"2026-03-25T07:30:09.4519204+00:00\",\r\n        \"EndVisitDate\": \"2026-03-25T07:30:09.4519204+00:00\"\r\n      },\r\n      \"RewardJourneyReward\": {\r\n        \"RewardJourneyRewardType\": 1,\r\n        \"RewardJourneyRewardTypeName\": \"sample string 1\",\r\n        \"RewardJourneyOffer\": {\r\n          \"OfferID\": 1,\r\n          \"Title\": \"sample string 2\",\r\n          \"Description\": \"sample string 3\",\r\n          \"OfferCode\": \"sample string 4\",\r\n          \"VoucherTypeName\": \"sample string 5\",\r\n          \"ExpiryDate\": \"2026-03-25T07:30:09.4519204+00:00\",\r\n          \"Active\": true,\r\n          \"Status\": \"Expired\",\r\n          \"OfferStatus\": \"<div id='Status_1' class='badge-status pending'>Expired</div>\"\r\n        },\r\n        \"RewardJourneyStampsValue\": 2.1\r\n      },\r\n      \"RewardJourneyImage\": {\r\n        \"AssetID\": 1,\r\n        \"AssetData\": \"QEA=\",\r\n        \"URL\": \"sample string 2\"\r\n      },\r\n      \"Active\": true,\r\n      \"SignUpPerCustomer\": 9,\r\n      \"RewardJourneyDurationInDays\": 10,\r\n      \"Brand\": {\r\n        \"BrandID\": 1,\r\n        \"BrandName\": \"sample string 2\"\r\n      },\r\n      \"IsAllLocations\": true,\r\n      \"RewardJourneyLocations\": [\r\n        {\r\n          \"ActeolSiteID\": 1,\r\n          \"OriginSiteID\": \"sample string 2\",\r\n          \"SiteName\": \"sample string 3\"\r\n        },\r\n        {\r\n          \"ActeolSiteID\": 1,\r\n          \"OriginSiteID\": \"sample string 2\",\r\n          \"SiteName\": \"sample string 3\"\r\n        }\r\n      ],\r\n      \"IsAllWeekDays\": true,\r\n      \"AddedDate\": \"2026-03-25T07:30:09.4519204+00:00\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:09.4519204+00:00\",\r\n      \"AddedByName\": \"--\",\r\n      \"ModifiedByName\": \"--\",\r\n      \"IsPreview\": true,\r\n      \"SelectionID\": 15,\r\n      \"SelectionTitle\": \"sample string 16\",\r\n      \"IsSelection\": true\r\n    },\r\n    {\r\n      \"RewardJourneyID\": 1,\r\n      \"UID\": \"sample string 2\",\r\n      \"RewardJourneyName\": \"sample string 3\",\r\n      \"RewardJourneyTextDescription\": \"sample string 4\",\r\n      \"RewardJourneyHtmlDescription\": \"sample string 5\",\r\n      \"RewardJourneyStartDate\": \"2026-03-25T07:30:09.4362998+00:00\",\r\n      \"RewardJourneyEndDate\": \"2026-03-25T07:30:09.4362998+00:00\",\r\n      \"RewardJourneySchedulesDays\": [\r\n        {\r\n          \"ID\": 1,\r\n          \"days\": [\r\n            {\r\n              \"ID\": 1,\r\n              \"Daypart_ScheduleID\": 2,\r\n              \"day\": 3\r\n            },\r\n            {\r\n              \"ID\": 1,\r\n              \"Daypart_ScheduleID\": 2,\r\n              \"day\": 3\r\n            }\r\n          ],\r\n          \"day\": 2,\r\n          \"start_minute\": 3,\r\n          \"end_minute\": 4,\r\n          \"timezone_type\": \"sample string 5\"\r\n        },\r\n        {\r\n          \"ID\": 1,\r\n          \"days\": [\r\n            {\r\n              \"ID\": 1,\r\n              \"Daypart_ScheduleID\": 2,\r\n              \"day\": 3\r\n            },\r\n            {\r\n              \"ID\": 1,\r\n              \"Daypart_ScheduleID\": 2,\r\n              \"day\": 3\r\n            }\r\n          ],\r\n          \"day\": 2,\r\n          \"start_minute\": 3,\r\n          \"end_minute\": 4,\r\n          \"timezone_type\": \"sample string 5\"\r\n        }\r\n      ],\r\n      \"RewardJourneySchedules\": [\r\n        {\r\n          \"Day\": \"Tuesday\",\r\n          \"RewardJourneyScheduleSegments\": [\r\n            {\r\n              \"day\": 0,\r\n              \"start_minute\": 3,\r\n              \"end_minute\": 4,\r\n              \"timezone_type\": null\r\n            },\r\n            {\r\n              \"day\": 0,\r\n              \"start_minute\": 3,\r\n              \"end_minute\": 4,\r\n              \"timezone_type\": null\r\n            }\r\n          ]\r\n        }\r\n      ],\r\n      \"RewardJourneyType\": 1,\r\n      \"RewardJourneyStatus\": 3,\r\n      \"RewardJourneyStatusName\": \"Expired\",\r\n      \"RewardJourneyTypeName\": \"Product\",\r\n      \"RewardJourneyProduct\": {\r\n        \"PurchaseEachProduct\": true,\r\n        \"GoalToAchieve\": 2,\r\n        \"ProductGroup\": [\r\n          {\r\n            \"GroupID\": 1,\r\n            \"BrandID\": 1,\r\n            \"GroupName\": \"sample string 2\"\r\n          },\r\n          {\r\n            \"GroupID\": 1,\r\n            \"BrandID\": 1,\r\n            \"GroupName\": \"sample string 2\"\r\n          }\r\n        ],\r\n        \"ProductSubGroup\": [\r\n          {\r\n            \"SubGroupID\": 1,\r\n            \"BrandID\": 1,\r\n            \"GroupID\": 2,\r\n            \"SubGroupName\": \"sample string 3\"\r\n          },\r\n          {\r\n            \"SubGroupID\": 1,\r\n            \"BrandID\": 1,\r\n            \"GroupID\": 2,\r\n            \"SubGroupName\": \"sample string 3\"\r\n          }\r\n        ],\r\n        \"Products\": [\r\n          {\r\n            \"ProductID\": 1,\r\n            \"ProductCode\": \"sample string 2\",\r\n            \"ProductName\": \"sample string 3\"\r\n          },\r\n          {\r\n            \"ProductID\": 1,\r\n            \"ProductCode\": \"sample string 2\",\r\n            \"ProductName\": \"sample string 3\"\r\n          }\r\n        ],\r\n        \"AllowFreeProducts\": true,\r\n        \"AllowDiscountProducts\": true\r\n      },\r\n      \"RewardJourneySpend\": {\r\n        \"GoalToAchieve\": 1.1\r\n      },\r\n      \"RewardJourneyVisit\": {\r\n        \"GoalToAchieve\": 1,\r\n        \"VisitEachLocation\": true\r\n      },\r\n      \"RewardJourneyBooking\": {\r\n        \"GoalToAchieve\": 1,\r\n        \"BookingStatus\": [\r\n          {\r\n            \"BookingStatusID\": 1,\r\n            \"BookingStatusName\": \"sample string 2\"\r\n          },\r\n          {\r\n            \"BookingStatusID\": 1,\r\n            \"BookingStatusName\": \"sample string 2\"\r\n          }\r\n        ],\r\n        \"StartVisitDate\": \"2026-03-25T07:30:09.4519204+00:00\",\r\n        \"EndVisitDate\": \"2026-03-25T07:30:09.4519204+00:00\"\r\n      },\r\n      \"RewardJourneyReward\": {\r\n        \"RewardJourneyRewardType\": 1,\r\n        \"RewardJourneyRewardTypeName\": \"sample string 1\",\r\n        \"RewardJourneyOffer\": {\r\n          \"OfferID\": 1,\r\n          \"Title\": \"sample string 2\",\r\n          \"Description\": \"sample string 3\",\r\n          \"OfferCode\": \"sample string 4\",\r\n          \"VoucherTypeName\": \"sample string 5\",\r\n          \"ExpiryDate\": \"2026-03-25T07:30:09.4519204+00:00\",\r\n          \"Active\": true,\r\n          \"Status\": \"Expired\",\r\n          \"OfferStatus\": \"<div id='Status_1' class='badge-status pending'>Expired</div>\"\r\n        },\r\n        \"RewardJourneyStampsValue\": 2.1\r\n      },\r\n      \"RewardJourneyImage\": {\r\n        \"AssetID\": 1,\r\n        \"AssetData\": \"QEA=\",\r\n        \"URL\": \"sample string 2\"\r\n      },\r\n      \"Active\": true,\r\n      \"SignUpPerCustomer\": 9,\r\n      \"RewardJourneyDurationInDays\": 10,\r\n      \"Brand\": {\r\n        \"BrandID\": 1,\r\n        \"BrandName\": \"sample string 2\"\r\n      },\r\n      \"IsAllLocations\": true,\r\n      \"RewardJourneyLocations\": [\r\n        {\r\n          \"ActeolSiteID\": 1,\r\n          \"OriginSiteID\": \"sample string 2\",\r\n          \"SiteName\": \"sample string 3\"\r\n        },\r\n        {\r\n          \"ActeolSiteID\": 1,\r\n          \"OriginSiteID\": \"sample string 2\",\r\n          \"SiteName\": \"sample string 3\"\r\n        }\r\n      ],\r\n      \"IsAllWeekDays\": true,\r\n      \"AddedDate\": \"2026-03-25T07:30:09.4519204+00:00\",\r\n      \"ModifiedDate\": \"2026-03-25T07:30:09.4519204+00:00\",\r\n      \"AddedByName\": \"--\",\r\n      \"ModifiedByName\": \"--\",\r\n      \"IsPreview\": true,\r\n      \"SelectionID\": 15,\r\n      \"SelectionTitle\": \"sample string 16\",\r\n      \"IsSelection\": true\r\n    }\r\n  ],\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"5164c610-fa7a-41d6-878f-50d0afc3f4cc"},{"name":"FindRewardJourneyByCTCID","id":"3db6b992-1f99-4c23-a82d-07bb92f19872","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"RewardJourneyStatus\": 1,\r\n  \"Completed\": true,\r\n  \"CtcID\": 1,\r\n  \"RewardJourneyIDs\": [\r\n    1,\r\n    2\r\n  ]\r\n}"},"url":"https://{{Host}}/api/RewardJourneys/FindRewardJourneyByCTCID","description":" <p>\n            Find Reward Journeys By CtcID  \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>FindByCtcIDInputFilter Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Completed</td><td>Boolean (nullable)</td><td>Filter  RewardJourneys are Completed or not ,if null it will return all RewardJourneys of this contact</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>Filter RewardJourney with ID of the Customer</td><td>False</td></tr><tr><td>RewardJourneyIDs</td><td>List&lt;Int32&gt;</td><td>Filter RewardJourney with RewardJourney ID</td><td>False</td></tr><tr><td>RewardJourneyStatus</td><td>RewardJourneyStatus</td><td>Filter RewardJourneys with Status</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>RewardJourneysContactDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>RewardJourneyContact</td><td>search result</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>RewardJourneyContact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AvailableRewardJourneys</td><td>List&lt;AvailableRewardJourney&gt;</td><td>the collection of available RewardJourney</td></tr><tr><td>CtcID</td><td>Int32</td><td>Customer Acteol ID</td></tr><tr><td>MemberNumber</td><td>String</td><td>The member number of the customer</td></tr><tr><td>RewardJourneys</td><td>List&lt;RewardJourneyContactSingup&gt;</td><td>the collection of RewardJourney</td></tr><tr><td><h4>AvailableRewardJourney Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>The unique identifier of the RewardJourney</td></tr><tr><td><h4>RewardJourneyContactSingup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>AddedByName</td><td>String</td><td></td></tr><tr><td>AddedDate</td><td>DateTime</td><td></td></tr><tr><td>Brand</td><td>BrandRewardJourney</td><td>The brand details</td></tr><tr><td>IsAllLocations</td><td>Boolean</td><td>If it's true , the RewardJourney will be appliable for all its brand locations</td></tr><tr><td>IsAllWeekDays</td><td>Boolean</td><td>If it's true ,the RewardJourney will be appliable for all week days during its period</td></tr><tr><td>IsPreview</td><td>Boolean</td><td></td></tr><tr><td>IsSelection</td><td>Boolean</td><td></td></tr><tr><td>ModifiedByName</td><td>String</td><td></td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>RewardJourneyBooking</td><td>RewardJourneyBookingCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Booking'</td></tr><tr><td>RewardJourneyCompletionDate</td><td>DateTime (nullable)</td><td>Completion Date of the RewardJourney, empty if the RewardJourney still in progress</td></tr><tr><td>RewardJourneyContactBookingProgress</td><td>RewardJourneyContactBookingProgress</td><td>This object will contains the RewardJourney progress  of the contact if the RewardJourney type is 'Booking'</td></tr><tr><td>RewardJourneyContactProductProgress</td><td>RewardJourneyContactProductProgress</td><td>This object will contains the RewardJourney progress  of the contact if the RewardJourney type is 'Product'</td></tr><tr><td>RewardJourneyContactSpendProgress</td><td>RewardJourneyContactProductsPurchased</td><td>This object will contains the RewardJourney progress  of the contact if the RewardJourney type is 'Spend'</td></tr><tr><td>RewardJourneyContactVisitProgress</td><td>RewardJourneyContactVisitProgress</td><td>This object will contains the RewardJourney progress  of the contact if the RewardJourney type is 'Visit'</td></tr><tr><td>RewardJourneyDurationInDays</td><td>Int32</td><td>Number of day to finish the RewardJourney starting from the start date, if 0 , the period will be from the start to the end date of the RewardJourney</td></tr><tr><td>RewardJourneyEndDate</td><td>DateTime</td><td>The end date of the RewardJourney</td></tr><tr><td>RewardJourneyHtmlDescription</td><td>String</td><td>The descrition of the RewardJourney (html format)</td></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>The unique identifier of the RewardJourney</td></tr><tr><td>RewardJourneyImage</td><td>RewardJourneyAsset</td><td>The image of the RewardJourney</td></tr><tr><td>RewardJourneyLocations</td><td>List&lt;RewardJourneyLocation&gt;</td><td>The RewardJourney Locations details</td></tr><tr><td>RewardJourneyName</td><td>String</td><td>The Reward RewardJourney name</td></tr><tr><td>RewardJourneyProduct</td><td>RewardJourneyProductCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Product'</td></tr><tr><td>RewardJourneyProgress</td><td>Double</td><td>The RewardJourney progress of the signed contact</td></tr><tr><td>RewardJourneyReward</td><td>RewardJourneyReward</td><td>The details of reward once the customer finish the RewardJourney</td></tr><tr><td>RewardJourneySchedules</td><td>List&lt;RewardJourneySchedule&gt;</td><td></td></tr><tr><td>RewardJourneySchedulesDays</td><td>List&lt;ScheduleLine&gt;</td><td></td></tr><tr><td>RewardJourneySignUpDate</td><td>DateTime</td><td>RewardJourney SignUp Date</td></tr><tr><td>RewardJourneySpend</td><td>RewardJourneySpendCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Spend'</td></tr><tr><td>RewardJourneyStartDate</td><td>DateTime</td><td>The start date of the RewardJourney</td></tr><tr><td>RewardJourneyStatus</td><td>RewardJourneyStatus</td><td></td></tr><tr><td>RewardJourneyStatusName</td><td>String</td><td>Active\n            Not Active\n            Expired</td></tr><tr><td>RewardJourneyTextDescription</td><td>String</td><td>The descrition of the RewardJourney (text format)</td></tr><tr><td>RewardJourneyType</td><td>RewardJourneyType</td><td></td></tr><tr><td>RewardJourneyTypeName</td><td>String</td><td>Product\n            Spend\n            Visit\n            Booking</td></tr><tr><td>RewardJourneyVisit</td><td>RewardJourneyVisitCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Visit'</td></tr><tr><td>SelectionID</td><td>Int32</td><td></td></tr><tr><td>SelectionTitle</td><td>String</td><td></td></tr><tr><td>SignUpPerCustomer</td><td>Int32</td><td>How many time customer can register to RewardJourney</td></tr><tr><td>UID</td><td>String</td><td></td></tr><tr><td><h4>BrandRewardJourney Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32</td><td>The Brand ID</td></tr><tr><td>BrandName</td><td>String</td><td>The Brand name</td></tr><tr><td><h4>RewardJourneyBookingCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingStatus</td><td>List&lt;RewardJourneyBookingStatus&gt;</td><td>The status of the booking</td></tr><tr><td>EndVisitDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>GoalToAchieve</td><td>Int32</td><td>The number of bookings to finish the RewardJourney</td></tr><tr><td>StartVisitDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td><h4>RewardJourneyBookingStatus Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingStatusID</td><td>Int32</td><td></td></tr><tr><td>BookingStatusName</td><td>String</td><td>The booking status name</td></tr><tr><td><h4>RewardJourneyContactBookingProgress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyContactBookingsDetails</td><td>List&lt;RewardJourneyContactBookingsDetails&gt;</td><td></td></tr><tr><td><h4>RewardJourneyContactBookingsDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingDate</td><td>DateTime</td><td>The Booking Date</td></tr><tr><td>BookingID</td><td>Int32</td><td></td></tr><tr><td>BookingStatus</td><td>RewardJourneyBookingStatus</td><td></td></tr><tr><td>Location</td><td>RewardJourneyLocation</td><td>Booking Location details</td></tr><tr><td>VisitDate</td><td>DateTime</td><td></td></tr><tr><td><h4>RewardJourneyBookingStatus Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingStatusID</td><td>Int32</td><td></td></tr><tr><td>BookingStatusName</td><td>String</td><td>The booking status name</td></tr><tr><td><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td></tr><tr><td><h4>RewardJourneyContactProductProgress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyContactProductsPurchased</td><td>List&lt;RewardJourneyContactProductPurchased&gt;</td><td></td></tr><tr><td><h4>RewardJourneyContactProductPurchased Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Location</td><td>RewardJourneyLocation</td><td>The Location details of the product Purchased</td></tr><tr><td>OrderDate</td><td>DateTime</td><td>The Date of purchase the product</td></tr><tr><td>OrderUniqueID</td><td>Int64</td><td>Transaction ID of product Purchased</td></tr><tr><td>ProductCode</td><td>String</td><td>The Code of Product</td></tr><tr><td>ProductID</td><td>Int32</td><td>The ID of Product</td></tr><tr><td>ProductName</td><td>String</td><td>The Name of Product</td></tr><tr><td>SpendProgress</td><td>Double</td><td>The spend amount of the product purchased</td></tr><tr><td><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td></tr><tr><td><h4>RewardJourneyContactProductsPurchased Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyContactSpendsDetails</td><td>List&lt;RewardJourneyContactSpendsDetails&gt;</td><td></td></tr><tr><td><h4>RewardJourneyContactSpendsDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Location</td><td>RewardJourneyLocation</td><td>The Location details of the spend amount</td></tr><tr><td>OrderDate</td><td>DateTime</td><td>The Date of the spend amount</td></tr><tr><td>OrderUniqueID</td><td>Int64</td><td>Transaction ID of the spend amount</td></tr><tr><td>Spend</td><td>Double</td><td>the spend amount</td></tr><tr><td><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td></tr><tr><td><h4>RewardJourneyContactVisitProgress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyContactVisitDetails</td><td>List&lt;RewardJourneyContactVisitDetails&gt;</td><td></td></tr><tr><td><h4>RewardJourneyContactVisitDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Location</td><td>RewardJourneyLocation</td><td>The Location details of the Visit</td></tr><tr><td>VisitDate</td><td>DateTime</td><td>The Date of the Visit</td></tr><tr><td><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td></tr><tr><td><h4>RewardJourneyAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetData</td><td>Byte[]</td><td>Image value (binary)</td></tr><tr><td>AssetID</td><td>Int32</td><td></td></tr><tr><td>URL</td><td>String</td><td>The url of the image</td></tr><tr><td><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td></tr><tr><td><h4>RewardJourneyProductCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AllowDiscountProducts</td><td>Boolean</td><td>If true,the Discounted products purchased will be considered in the RewardJourneys rules</td></tr><tr><td>AllowFreeProducts</td><td>Boolean</td><td>If true,the free products purchased will be considered in the RewardJourneys rules</td></tr><tr><td>GoalToAchieve</td><td>Int32</td><td>The satisfying number of the purchased products</td></tr><tr><td>ProductGroup</td><td>List&lt;ProductGroup&gt;</td><td>Products Group details</td></tr><tr><td>Products</td><td>List&lt;RewardJourneyProduct&gt;</td><td>Products details</td></tr><tr><td>ProductSubGroup</td><td>List&lt;ProductSubGroup&gt;</td><td>Products SubGroup details</td></tr><tr><td>PurchaseEachProduct</td><td>Boolean</td><td>If true, each product purchased must reach the RewardJourneys goals</td></tr><tr><td><h4>ProductGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>GroupName</td><td>String</td><td></td></tr><tr><td><h4>RewardJourneyProduct Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ProductCode</td><td>String</td><td>The Code of Product</td></tr><tr><td>ProductID</td><td>Int32</td><td>The ID of Product</td></tr><tr><td>ProductName</td><td>String</td><td>The Name of Product</td></tr><tr><td><h4>ProductSubGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupName</td><td>String</td><td></td></tr><tr><td><h4>RewardJourneyReward Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyOffer</td><td>RewardJourneyOffer</td><td>The reward details ,this object will be populated if the RewardJourney reward is Offer</td></tr><tr><td>RewardJourneyRewardType</td><td>RewardJourneyRewardType</td><td></td></tr><tr><td>RewardJourneyRewardTypeName</td><td>String</td><td>The type of the reward</td></tr><tr><td>RewardJourneyStampsValue</td><td>Double</td><td>The reward details ,this object will be populated if the RewardJourney reward is Point/Offer</td></tr><tr><td><h4>RewardJourneyOffer Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>Description</td><td>String</td><td>The Description of the Offer</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>The expiry date of the offer</td></tr><tr><td>OfferCode</td><td>String</td><td>The Offer Code</td></tr><tr><td>OfferID</td><td>Int32</td><td>The Offer ID</td></tr><tr><td>OfferStatus</td><td>String</td><td></td></tr><tr><td>Status</td><td>String</td><td>Status of the offer</td></tr><tr><td>Title</td><td>String</td><td>The Offer Title</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>The Voucher Type</td></tr><tr><td><h4>RewardJourneySchedule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Day</td><td>String</td><td></td></tr><tr><td>RewardJourneyScheduleSegments</td><td>List&lt;RewardJourneyScheduleSegment&gt;</td><td>The Schedule of the RewardJourney</td></tr><tr><td><h4>RewardJourneyScheduleSegment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td></td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr><tr><td><h4>ScheduleLine Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>days</td><td>ICollection&lt;ScheduleDays&gt;</td><td></td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr><tr><td><h4>ScheduleDays Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td></td></tr><tr><td>Daypart_ScheduleID</td><td>Int32</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td><h4>RewardJourneySpendCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>GoalToAchieve</td><td>Double</td><td>The amount that should be paid by the customer to finish the RewardJourney</td></tr><tr><td><h4>RewardJourneyVisitCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>GoalToAchieve</td><td>Int32</td><td>The number of visits to finish the RewardJourney</td></tr><tr><td>VisitEachLocation</td><td>Boolean</td><td>If true, each Visit must reach the RewardJourneys goals per location</td></tr></table>","urlObject":{"protocol":"https","path":["api","RewardJourneys","FindRewardJourneyByCTCID"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"c94fc0e3-9369-4571-ab5b-45e737e70a06","name":"api/RewardJourneys/FindRewardJourneyByCTCID Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"RewardJourneyStatus\": 1,\r\n  \"Completed\": true,\r\n  \"CtcID\": 1,\r\n  \"RewardJourneyIDs\": [\r\n    1,\r\n    2\r\n  ]\r\n}"},"url":"https://{{Host}}/api/RewardJourneys/FindRewardJourneyByCTCID","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Find Reward Journeys By CtcID  \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>FindByCtcIDInputFilter Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Completed</td><td>Boolean (nullable)</td><td>Filter  RewardJourneys are Completed or not ,if null it will return all RewardJourneys of this contact</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>Filter RewardJourney with ID of the Customer</td><td>False</td></tr><tr><td>RewardJourneyIDs</td><td>List&lt;Int32&gt;</td><td>Filter RewardJourney with RewardJourney ID</td><td>False</td></tr><tr><td>RewardJourneyStatus</td><td>RewardJourneyStatus</td><td>Filter RewardJourneys with Status</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>RewardJourneysContactDetailsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>RewardJourneyContact</td><td>search result</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>RewardJourneyContact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AvailableRewardJourneys</td><td>List&lt;AvailableRewardJourney&gt;</td><td>the collection of available RewardJourney</td></tr><tr><td>CtcID</td><td>Int32</td><td>Customer Acteol ID</td></tr><tr><td>MemberNumber</td><td>String</td><td>The member number of the customer</td></tr><tr><td>RewardJourneys</td><td>List&lt;RewardJourneyContactSingup&gt;</td><td>the collection of RewardJourney</td></tr><tr><td colspan=3><h4>AvailableRewardJourney Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>The unique identifier of the RewardJourney</td></tr><tr><td colspan=3><h4>RewardJourneyContactSingup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>AddedByName</td><td>String</td><td></td></tr><tr><td>AddedDate</td><td>DateTime</td><td></td></tr><tr><td>Brand</td><td>BrandRewardJourney</td><td>The brand details</td></tr><tr><td>IsAllLocations</td><td>Boolean</td><td>If it's true , the RewardJourney will be appliable for all its brand locations</td></tr><tr><td>IsAllWeekDays</td><td>Boolean</td><td>If it's true ,the RewardJourney will be appliable for all week days during its period</td></tr><tr><td>IsPreview</td><td>Boolean</td><td></td></tr><tr><td>IsSelection</td><td>Boolean</td><td></td></tr><tr><td>ModifiedByName</td><td>String</td><td></td></tr><tr><td>ModifiedDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>RewardJourneyBooking</td><td>RewardJourneyBookingCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Booking'</td></tr><tr><td>RewardJourneyCompletionDate</td><td>DateTime (nullable)</td><td>Completion Date of the RewardJourney, empty if the RewardJourney still in progress</td></tr><tr><td>RewardJourneyContactBookingProgress</td><td>RewardJourneyContactBookingProgress</td><td>This object will contains the RewardJourney progress  of the contact if the RewardJourney type is 'Booking'</td></tr><tr><td>RewardJourneyContactProductProgress</td><td>RewardJourneyContactProductProgress</td><td>This object will contains the RewardJourney progress  of the contact if the RewardJourney type is 'Product'</td></tr><tr><td>RewardJourneyContactSpendProgress</td><td>RewardJourneyContactProductsPurchased</td><td>This object will contains the RewardJourney progress  of the contact if the RewardJourney type is 'Spend'</td></tr><tr><td>RewardJourneyContactVisitProgress</td><td>RewardJourneyContactVisitProgress</td><td>This object will contains the RewardJourney progress  of the contact if the RewardJourney type is 'Visit'</td></tr><tr><td>RewardJourneyDurationInDays</td><td>Int32</td><td>Number of day to finish the RewardJourney starting from the start date, if 0 , the period will be from the start to the end date of the RewardJourney</td></tr><tr><td>RewardJourneyEndDate</td><td>DateTime</td><td>The end date of the RewardJourney</td></tr><tr><td>RewardJourneyHtmlDescription</td><td>String</td><td>The descrition of the RewardJourney (html format)</td></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>The unique identifier of the RewardJourney</td></tr><tr><td>RewardJourneyImage</td><td>RewardJourneyAsset</td><td>The image of the RewardJourney</td></tr><tr><td>RewardJourneyLocations</td><td>List&lt;RewardJourneyLocation&gt;</td><td>The RewardJourney Locations details</td></tr><tr><td>RewardJourneyName</td><td>String</td><td>The Reward RewardJourney name</td></tr><tr><td>RewardJourneyProduct</td><td>RewardJourneyProductCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Product'</td></tr><tr><td>RewardJourneyProgress</td><td>Double</td><td>The RewardJourney progress of the signed contact</td></tr><tr><td>RewardJourneyReward</td><td>RewardJourneyReward</td><td>The details of reward once the customer finish the RewardJourney</td></tr><tr><td>RewardJourneySchedules</td><td>List&lt;RewardJourneySchedule&gt;</td><td></td></tr><tr><td>RewardJourneySchedulesDays</td><td>List&lt;ScheduleLine&gt;</td><td></td></tr><tr><td>RewardJourneySignUpDate</td><td>DateTime</td><td>RewardJourney SignUp Date</td></tr><tr><td>RewardJourneySpend</td><td>RewardJourneySpendCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Spend'</td></tr><tr><td>RewardJourneyStartDate</td><td>DateTime</td><td>The start date of the RewardJourney</td></tr><tr><td>RewardJourneyStatus</td><td>RewardJourneyStatus</td><td></td></tr><tr><td>RewardJourneyStatusName</td><td>String</td><td>Active\n            Not Active\n            Expired</td></tr><tr><td>RewardJourneyTextDescription</td><td>String</td><td>The descrition of the RewardJourney (text format)</td></tr><tr><td>RewardJourneyType</td><td>RewardJourneyType</td><td></td></tr><tr><td>RewardJourneyTypeName</td><td>String</td><td>Product\n            Spend\n            Visit\n            Booking</td></tr><tr><td>RewardJourneyVisit</td><td>RewardJourneyVisitCriteria</td><td>This object will contains the RewardJourney citeria if the RewardJourney type is 'Visit'</td></tr><tr><td>SelectionID</td><td>Int32</td><td></td></tr><tr><td>SelectionTitle</td><td>String</td><td></td></tr><tr><td>SignUpPerCustomer</td><td>Int32</td><td>How many time customer can register to RewardJourney</td></tr><tr><td>UID</td><td>String</td><td></td></tr><tr><td colspan=3><h4>BrandRewardJourney Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32</td><td>The Brand ID</td></tr><tr><td>BrandName</td><td>String</td><td>The Brand name</td></tr><tr><td colspan=3><h4>RewardJourneyBookingCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingStatus</td><td>List&lt;RewardJourneyBookingStatus&gt;</td><td>The status of the booking</td></tr><tr><td>EndVisitDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>GoalToAchieve</td><td>Int32</td><td>The number of bookings to finish the RewardJourney</td></tr><tr><td>StartVisitDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td colspan=3><h4>RewardJourneyBookingStatus Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingStatusID</td><td>Int32</td><td></td></tr><tr><td>BookingStatusName</td><td>String</td><td>The booking status name</td></tr><tr><td colspan=3><h4>RewardJourneyContactBookingProgress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyContactBookingsDetails</td><td>List&lt;RewardJourneyContactBookingsDetails&gt;</td><td></td></tr><tr><td colspan=3><h4>RewardJourneyContactBookingsDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingDate</td><td>DateTime</td><td>The Booking Date</td></tr><tr><td>BookingID</td><td>Int32</td><td></td></tr><tr><td>BookingStatus</td><td>RewardJourneyBookingStatus</td><td></td></tr><tr><td>Location</td><td>RewardJourneyLocation</td><td>Booking Location details</td></tr><tr><td>VisitDate</td><td>DateTime</td><td></td></tr><tr><td colspan=3><h4>RewardJourneyBookingStatus Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BookingStatusID</td><td>Int32</td><td></td></tr><tr><td>BookingStatusName</td><td>String</td><td>The booking status name</td></tr><tr><td colspan=3><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td></tr><tr><td colspan=3><h4>RewardJourneyContactProductProgress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyContactProductsPurchased</td><td>List&lt;RewardJourneyContactProductPurchased&gt;</td><td></td></tr><tr><td colspan=3><h4>RewardJourneyContactProductPurchased Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Location</td><td>RewardJourneyLocation</td><td>The Location details of the product Purchased</td></tr><tr><td>OrderDate</td><td>DateTime</td><td>The Date of purchase the product</td></tr><tr><td>OrderUniqueID</td><td>Int64</td><td>Transaction ID of product Purchased</td></tr><tr><td>ProductCode</td><td>String</td><td>The Code of Product</td></tr><tr><td>ProductID</td><td>Int32</td><td>The ID of Product</td></tr><tr><td>ProductName</td><td>String</td><td>The Name of Product</td></tr><tr><td>SpendProgress</td><td>Double</td><td>The spend amount of the product purchased</td></tr><tr><td colspan=3><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td></tr><tr><td colspan=3><h4>RewardJourneyContactProductsPurchased Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyContactSpendsDetails</td><td>List&lt;RewardJourneyContactSpendsDetails&gt;</td><td></td></tr><tr><td colspan=3><h4>RewardJourneyContactSpendsDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Location</td><td>RewardJourneyLocation</td><td>The Location details of the spend amount</td></tr><tr><td>OrderDate</td><td>DateTime</td><td>The Date of the spend amount</td></tr><tr><td>OrderUniqueID</td><td>Int64</td><td>Transaction ID of the spend amount</td></tr><tr><td>Spend</td><td>Double</td><td>the spend amount</td></tr><tr><td colspan=3><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td></tr><tr><td colspan=3><h4>RewardJourneyContactVisitProgress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyContactVisitDetails</td><td>List&lt;RewardJourneyContactVisitDetails&gt;</td><td></td></tr><tr><td colspan=3><h4>RewardJourneyContactVisitDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Location</td><td>RewardJourneyLocation</td><td>The Location details of the Visit</td></tr><tr><td>VisitDate</td><td>DateTime</td><td>The Date of the Visit</td></tr><tr><td colspan=3><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td></tr><tr><td colspan=3><h4>RewardJourneyAsset Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AssetData</td><td>Byte[]</td><td>Image value (binary)</td></tr><tr><td>AssetID</td><td>Int32</td><td></td></tr><tr><td>URL</td><td>String</td><td>The url of the image</td></tr><tr><td colspan=3><h4>RewardJourneyLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>The Acteol ID of the location</td></tr><tr><td>OriginSiteID</td><td>String</td><td>The Origin ID of the location</td></tr><tr><td>SiteName</td><td>String</td><td>The name of the location</td></tr><tr><td colspan=3><h4>RewardJourneyProductCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AllowDiscountProducts</td><td>Boolean</td><td>If true,the Discounted products purchased will be considered in the RewardJourneys rules</td></tr><tr><td>AllowFreeProducts</td><td>Boolean</td><td>If true,the free products purchased will be considered in the RewardJourneys rules</td></tr><tr><td>GoalToAchieve</td><td>Int32</td><td>The satisfying number of the purchased products</td></tr><tr><td>ProductGroup</td><td>List&lt;ProductGroup&gt;</td><td>Products Group details</td></tr><tr><td>Products</td><td>List&lt;RewardJourneyProduct&gt;</td><td>Products details</td></tr><tr><td>ProductSubGroup</td><td>List&lt;ProductSubGroup&gt;</td><td>Products SubGroup details</td></tr><tr><td>PurchaseEachProduct</td><td>Boolean</td><td>If true, each product purchased must reach the RewardJourneys goals</td></tr><tr><td colspan=3><h4>ProductGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>GroupName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>RewardJourneyProduct Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ProductCode</td><td>String</td><td>The Code of Product</td></tr><tr><td>ProductID</td><td>Int32</td><td>The ID of Product</td></tr><tr><td>ProductName</td><td>String</td><td>The Name of Product</td></tr><tr><td colspan=3><h4>ProductSubGroup Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>GroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupID</td><td>Int32</td><td></td></tr><tr><td>SubGroupName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>RewardJourneyReward Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>RewardJourneyOffer</td><td>RewardJourneyOffer</td><td>The reward details ,this object will be populated if the RewardJourney reward is Offer</td></tr><tr><td>RewardJourneyRewardType</td><td>RewardJourneyRewardType</td><td></td></tr><tr><td>RewardJourneyRewardTypeName</td><td>String</td><td>The type of the reward</td></tr><tr><td>RewardJourneyStampsValue</td><td>Double</td><td>The reward details ,this object will be populated if the RewardJourney reward is Point/Offer</td></tr><tr><td colspan=3><h4>RewardJourneyOffer Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>Description</td><td>String</td><td>The Description of the Offer</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>The expiry date of the offer</td></tr><tr><td>OfferCode</td><td>String</td><td>The Offer Code</td></tr><tr><td>OfferID</td><td>Int32</td><td>The Offer ID</td></tr><tr><td>OfferStatus</td><td>String</td><td></td></tr><tr><td>Status</td><td>String</td><td>Status of the offer</td></tr><tr><td>Title</td><td>String</td><td>The Offer Title</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>The Voucher Type</td></tr><tr><td colspan=3><h4>RewardJourneySchedule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Day</td><td>String</td><td></td></tr><tr><td>RewardJourneyScheduleSegments</td><td>List&lt;RewardJourneyScheduleSegment&gt;</td><td>The Schedule of the RewardJourney</td></tr><tr><td colspan=3><h4>RewardJourneyScheduleSegment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td></td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr><tr><td colspan=3><h4>ScheduleLine Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>days</td><td>ICollection&lt;ScheduleDays&gt;</td><td></td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr><tr><td colspan=3><h4>ScheduleDays Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td></td></tr><tr><td>Daypart_ScheduleID</td><td>Int32</td><td></td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>RewardJourneySpendCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>GoalToAchieve</td><td>Double</td><td>The amount that should be paid by the customer to finish the RewardJourney</td></tr><tr><td colspan=3><h4>RewardJourneyVisitCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>GoalToAchieve</td><td>Int32</td><td>The number of visits to finish the RewardJourney</td></tr><tr><td>VisitEachLocation</td><td>Boolean</td><td>If true, each Visit must reach the RewardJourneys goals per location</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseData\": {\r\n    \"CtcID\": 1,\r\n    \"MemberNumber\": \"sample string 2\",\r\n    \"RewardJourneys\": [\r\n      {\r\n        \"RewardJourneyProgress\": 1.1,\r\n        \"RewardJourneySignUpDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n        \"RewardJourneyCompletionDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n        \"RewardJourneyContactProductProgress\": {\r\n          \"RewardJourneyContactProductsPurchased\": [\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"OrderDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"OrderUniqueID\": 2,\r\n              \"SpendProgress\": 3.1,\r\n              \"ProductID\": 4,\r\n              \"ProductCode\": \"sample string 5\",\r\n              \"ProductName\": \"sample string 6\"\r\n            },\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"OrderDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"OrderUniqueID\": 2,\r\n              \"SpendProgress\": 3.1,\r\n              \"ProductID\": 4,\r\n              \"ProductCode\": \"sample string 5\",\r\n              \"ProductName\": \"sample string 6\"\r\n            }\r\n          ]\r\n        },\r\n        \"RewardJourneyContactVisitProgress\": {\r\n          \"RewardJourneyContactVisitDetails\": [\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"VisitDate\": \"2026-03-25T07:30:09.5456665+00:00\"\r\n            },\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"VisitDate\": \"2026-03-25T07:30:09.5456665+00:00\"\r\n            }\r\n          ]\r\n        },\r\n        \"RewardJourneyContactSpendProgress\": {\r\n          \"RewardJourneyContactSpendsDetails\": [\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"OrderDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"OrderUniqueID\": 2,\r\n              \"Spend\": 3.1\r\n            },\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"OrderDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"OrderUniqueID\": 2,\r\n              \"Spend\": 3.1\r\n            }\r\n          ]\r\n        },\r\n        \"RewardJourneyContactBookingProgress\": {\r\n          \"RewardJourneyContactBookingsDetails\": [\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"BookingDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"VisitDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"BookingID\": 3,\r\n              \"BookingStatus\": {\r\n                \"BookingStatusID\": 1,\r\n                \"BookingStatusName\": \"sample string 2\"\r\n              }\r\n            },\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"BookingDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"VisitDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"BookingID\": 3,\r\n              \"BookingStatus\": {\r\n                \"BookingStatusID\": 1,\r\n                \"BookingStatusName\": \"sample string 2\"\r\n              }\r\n            }\r\n          ]\r\n        },\r\n        \"RewardJourneyID\": 3,\r\n        \"UID\": \"sample string 4\",\r\n        \"RewardJourneyName\": \"sample string 5\",\r\n        \"RewardJourneyTextDescription\": \"sample string 6\",\r\n        \"RewardJourneyHtmlDescription\": \"sample string 7\",\r\n        \"RewardJourneyStartDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n        \"RewardJourneyEndDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n        \"RewardJourneySchedulesDays\": [\r\n          {\r\n            \"ID\": 1,\r\n            \"days\": [\r\n              {\r\n                \"ID\": 1,\r\n                \"Daypart_ScheduleID\": 2,\r\n                \"day\": 3\r\n              },\r\n              {\r\n                \"ID\": 1,\r\n                \"Daypart_ScheduleID\": 2,\r\n                \"day\": 3\r\n              }\r\n            ],\r\n            \"day\": 2,\r\n            \"start_minute\": 3,\r\n            \"end_minute\": 4,\r\n            \"timezone_type\": \"sample string 5\"\r\n          },\r\n          {\r\n            \"ID\": 1,\r\n            \"days\": [\r\n              {\r\n                \"ID\": 1,\r\n                \"Daypart_ScheduleID\": 2,\r\n                \"day\": 3\r\n              },\r\n              {\r\n                \"ID\": 1,\r\n                \"Daypart_ScheduleID\": 2,\r\n                \"day\": 3\r\n              }\r\n            ],\r\n            \"day\": 2,\r\n            \"start_minute\": 3,\r\n            \"end_minute\": 4,\r\n            \"timezone_type\": \"sample string 5\"\r\n          }\r\n        ],\r\n        \"RewardJourneySchedules\": [\r\n          {\r\n            \"Day\": \"Tuesday\",\r\n            \"RewardJourneyScheduleSegments\": [\r\n              {\r\n                \"day\": 0,\r\n                \"start_minute\": 3,\r\n                \"end_minute\": 4,\r\n                \"timezone_type\": null\r\n              },\r\n              {\r\n                \"day\": 0,\r\n                \"start_minute\": 3,\r\n                \"end_minute\": 4,\r\n                \"timezone_type\": null\r\n              }\r\n            ]\r\n          }\r\n        ],\r\n        \"RewardJourneyType\": 1,\r\n        \"RewardJourneyStatus\": 3,\r\n        \"RewardJourneyStatusName\": \"Expired\",\r\n        \"RewardJourneyTypeName\": \"Product\",\r\n        \"RewardJourneyProduct\": {\r\n          \"PurchaseEachProduct\": true,\r\n          \"GoalToAchieve\": 2,\r\n          \"ProductGroup\": [\r\n            {\r\n              \"GroupID\": 1,\r\n              \"BrandID\": 1,\r\n              \"GroupName\": \"sample string 2\"\r\n            },\r\n            {\r\n              \"GroupID\": 1,\r\n              \"BrandID\": 1,\r\n              \"GroupName\": \"sample string 2\"\r\n            }\r\n          ],\r\n          \"ProductSubGroup\": [\r\n            {\r\n              \"SubGroupID\": 1,\r\n              \"BrandID\": 1,\r\n              \"GroupID\": 2,\r\n              \"SubGroupName\": \"sample string 3\"\r\n            },\r\n            {\r\n              \"SubGroupID\": 1,\r\n              \"BrandID\": 1,\r\n              \"GroupID\": 2,\r\n              \"SubGroupName\": \"sample string 3\"\r\n            }\r\n          ],\r\n          \"Products\": [\r\n            {\r\n              \"ProductID\": 1,\r\n              \"ProductCode\": \"sample string 2\",\r\n              \"ProductName\": \"sample string 3\"\r\n            },\r\n            {\r\n              \"ProductID\": 1,\r\n              \"ProductCode\": \"sample string 2\",\r\n              \"ProductName\": \"sample string 3\"\r\n            }\r\n          ],\r\n          \"AllowFreeProducts\": true,\r\n          \"AllowDiscountProducts\": true\r\n        },\r\n        \"RewardJourneySpend\": {\r\n          \"GoalToAchieve\": 1.1\r\n        },\r\n        \"RewardJourneyVisit\": {\r\n          \"GoalToAchieve\": 1,\r\n          \"VisitEachLocation\": true\r\n        },\r\n        \"RewardJourneyBooking\": {\r\n          \"GoalToAchieve\": 1,\r\n          \"BookingStatus\": [\r\n            {\r\n              \"BookingStatusID\": 1,\r\n              \"BookingStatusName\": \"sample string 2\"\r\n            },\r\n            {\r\n              \"BookingStatusID\": 1,\r\n              \"BookingStatusName\": \"sample string 2\"\r\n            }\r\n          ],\r\n          \"StartVisitDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n          \"EndVisitDate\": \"2026-03-25T07:30:09.5456665+00:00\"\r\n        },\r\n        \"RewardJourneyReward\": {\r\n          \"RewardJourneyRewardType\": 1,\r\n          \"RewardJourneyRewardTypeName\": \"sample string 1\",\r\n          \"RewardJourneyOffer\": {\r\n            \"OfferID\": 1,\r\n            \"Title\": \"sample string 2\",\r\n            \"Description\": \"sample string 3\",\r\n            \"OfferCode\": \"sample string 4\",\r\n            \"VoucherTypeName\": \"sample string 5\",\r\n            \"ExpiryDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n            \"Active\": true,\r\n            \"Status\": \"Expired\",\r\n            \"OfferStatus\": \"<div id='Status_1' class='badge-status pending'>Expired</div>\"\r\n          },\r\n          \"RewardJourneyStampsValue\": 2.1\r\n        },\r\n        \"RewardJourneyImage\": {\r\n          \"AssetID\": 1,\r\n          \"AssetData\": \"QEA=\",\r\n          \"URL\": \"sample string 2\"\r\n        },\r\n        \"Active\": true,\r\n        \"SignUpPerCustomer\": 11,\r\n        \"RewardJourneyDurationInDays\": 12,\r\n        \"Brand\": {\r\n          \"BrandID\": 1,\r\n          \"BrandName\": \"sample string 2\"\r\n        },\r\n        \"IsAllLocations\": true,\r\n        \"RewardJourneyLocations\": [\r\n          {\r\n            \"ActeolSiteID\": 1,\r\n            \"OriginSiteID\": \"sample string 2\",\r\n            \"SiteName\": \"sample string 3\"\r\n          },\r\n          {\r\n            \"ActeolSiteID\": 1,\r\n            \"OriginSiteID\": \"sample string 2\",\r\n            \"SiteName\": \"sample string 3\"\r\n          }\r\n        ],\r\n        \"IsAllWeekDays\": true,\r\n        \"AddedDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n        \"ModifiedDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n        \"AddedByName\": \"--\",\r\n        \"ModifiedByName\": \"--\",\r\n        \"IsPreview\": true,\r\n        \"SelectionID\": 17,\r\n        \"SelectionTitle\": \"sample string 18\",\r\n        \"IsSelection\": true\r\n      },\r\n      {\r\n        \"RewardJourneyProgress\": 1.1,\r\n        \"RewardJourneySignUpDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n        \"RewardJourneyCompletionDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n        \"RewardJourneyContactProductProgress\": {\r\n          \"RewardJourneyContactProductsPurchased\": [\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"OrderDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"OrderUniqueID\": 2,\r\n              \"SpendProgress\": 3.1,\r\n              \"ProductID\": 4,\r\n              \"ProductCode\": \"sample string 5\",\r\n              \"ProductName\": \"sample string 6\"\r\n            },\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"OrderDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"OrderUniqueID\": 2,\r\n              \"SpendProgress\": 3.1,\r\n              \"ProductID\": 4,\r\n              \"ProductCode\": \"sample string 5\",\r\n              \"ProductName\": \"sample string 6\"\r\n            }\r\n          ]\r\n        },\r\n        \"RewardJourneyContactVisitProgress\": {\r\n          \"RewardJourneyContactVisitDetails\": [\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"VisitDate\": \"2026-03-25T07:30:09.5456665+00:00\"\r\n            },\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"VisitDate\": \"2026-03-25T07:30:09.5456665+00:00\"\r\n            }\r\n          ]\r\n        },\r\n        \"RewardJourneyContactSpendProgress\": {\r\n          \"RewardJourneyContactSpendsDetails\": [\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"OrderDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"OrderUniqueID\": 2,\r\n              \"Spend\": 3.1\r\n            },\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"OrderDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"OrderUniqueID\": 2,\r\n              \"Spend\": 3.1\r\n            }\r\n          ]\r\n        },\r\n        \"RewardJourneyContactBookingProgress\": {\r\n          \"RewardJourneyContactBookingsDetails\": [\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"BookingDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"VisitDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"BookingID\": 3,\r\n              \"BookingStatus\": {\r\n                \"BookingStatusID\": 1,\r\n                \"BookingStatusName\": \"sample string 2\"\r\n              }\r\n            },\r\n            {\r\n              \"Location\": {\r\n                \"ActeolSiteID\": 1,\r\n                \"OriginSiteID\": \"sample string 2\",\r\n                \"SiteName\": \"sample string 3\"\r\n              },\r\n              \"BookingDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"VisitDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n              \"BookingID\": 3,\r\n              \"BookingStatus\": {\r\n                \"BookingStatusID\": 1,\r\n                \"BookingStatusName\": \"sample string 2\"\r\n              }\r\n            }\r\n          ]\r\n        },\r\n        \"RewardJourneyID\": 3,\r\n        \"UID\": \"sample string 4\",\r\n        \"RewardJourneyName\": \"sample string 5\",\r\n        \"RewardJourneyTextDescription\": \"sample string 6\",\r\n        \"RewardJourneyHtmlDescription\": \"sample string 7\",\r\n        \"RewardJourneyStartDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n        \"RewardJourneyEndDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n        \"RewardJourneySchedulesDays\": [\r\n          {\r\n            \"ID\": 1,\r\n            \"days\": [\r\n              {\r\n                \"ID\": 1,\r\n                \"Daypart_ScheduleID\": 2,\r\n                \"day\": 3\r\n              },\r\n              {\r\n                \"ID\": 1,\r\n                \"Daypart_ScheduleID\": 2,\r\n                \"day\": 3\r\n              }\r\n            ],\r\n            \"day\": 2,\r\n            \"start_minute\": 3,\r\n            \"end_minute\": 4,\r\n            \"timezone_type\": \"sample string 5\"\r\n          },\r\n          {\r\n            \"ID\": 1,\r\n            \"days\": [\r\n              {\r\n                \"ID\": 1,\r\n                \"Daypart_ScheduleID\": 2,\r\n                \"day\": 3\r\n              },\r\n              {\r\n                \"ID\": 1,\r\n                \"Daypart_ScheduleID\": 2,\r\n                \"day\": 3\r\n              }\r\n            ],\r\n            \"day\": 2,\r\n            \"start_minute\": 3,\r\n            \"end_minute\": 4,\r\n            \"timezone_type\": \"sample string 5\"\r\n          }\r\n        ],\r\n        \"RewardJourneySchedules\": [\r\n          {\r\n            \"Day\": \"Tuesday\",\r\n            \"RewardJourneyScheduleSegments\": [\r\n              {\r\n                \"day\": 0,\r\n                \"start_minute\": 3,\r\n                \"end_minute\": 4,\r\n                \"timezone_type\": null\r\n              },\r\n              {\r\n                \"day\": 0,\r\n                \"start_minute\": 3,\r\n                \"end_minute\": 4,\r\n                \"timezone_type\": null\r\n              }\r\n            ]\r\n          }\r\n        ],\r\n        \"RewardJourneyType\": 1,\r\n        \"RewardJourneyStatus\": 3,\r\n        \"RewardJourneyStatusName\": \"Expired\",\r\n        \"RewardJourneyTypeName\": \"Product\",\r\n        \"RewardJourneyProduct\": {\r\n          \"PurchaseEachProduct\": true,\r\n          \"GoalToAchieve\": 2,\r\n          \"ProductGroup\": [\r\n            {\r\n              \"GroupID\": 1,\r\n              \"BrandID\": 1,\r\n              \"GroupName\": \"sample string 2\"\r\n            },\r\n            {\r\n              \"GroupID\": 1,\r\n              \"BrandID\": 1,\r\n              \"GroupName\": \"sample string 2\"\r\n            }\r\n          ],\r\n          \"ProductSubGroup\": [\r\n            {\r\n              \"SubGroupID\": 1,\r\n              \"BrandID\": 1,\r\n              \"GroupID\": 2,\r\n              \"SubGroupName\": \"sample string 3\"\r\n            },\r\n            {\r\n              \"SubGroupID\": 1,\r\n              \"BrandID\": 1,\r\n              \"GroupID\": 2,\r\n              \"SubGroupName\": \"sample string 3\"\r\n            }\r\n          ],\r\n          \"Products\": [\r\n            {\r\n              \"ProductID\": 1,\r\n              \"ProductCode\": \"sample string 2\",\r\n              \"ProductName\": \"sample string 3\"\r\n            },\r\n            {\r\n              \"ProductID\": 1,\r\n              \"ProductCode\": \"sample string 2\",\r\n              \"ProductName\": \"sample string 3\"\r\n            }\r\n          ],\r\n          \"AllowFreeProducts\": true,\r\n          \"AllowDiscountProducts\": true\r\n        },\r\n        \"RewardJourneySpend\": {\r\n          \"GoalToAchieve\": 1.1\r\n        },\r\n        \"RewardJourneyVisit\": {\r\n          \"GoalToAchieve\": 1,\r\n          \"VisitEachLocation\": true\r\n        },\r\n        \"RewardJourneyBooking\": {\r\n          \"GoalToAchieve\": 1,\r\n          \"BookingStatus\": [\r\n            {\r\n              \"BookingStatusID\": 1,\r\n              \"BookingStatusName\": \"sample string 2\"\r\n            },\r\n            {\r\n              \"BookingStatusID\": 1,\r\n              \"BookingStatusName\": \"sample string 2\"\r\n            }\r\n          ],\r\n          \"StartVisitDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n          \"EndVisitDate\": \"2026-03-25T07:30:09.5456665+00:00\"\r\n        },\r\n        \"RewardJourneyReward\": {\r\n          \"RewardJourneyRewardType\": 1,\r\n          \"RewardJourneyRewardTypeName\": \"sample string 1\",\r\n          \"RewardJourneyOffer\": {\r\n            \"OfferID\": 1,\r\n            \"Title\": \"sample string 2\",\r\n            \"Description\": \"sample string 3\",\r\n            \"OfferCode\": \"sample string 4\",\r\n            \"VoucherTypeName\": \"sample string 5\",\r\n            \"ExpiryDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n            \"Active\": true,\r\n            \"Status\": \"Expired\",\r\n            \"OfferStatus\": \"<div id='Status_1' class='badge-status pending'>Expired</div>\"\r\n          },\r\n          \"RewardJourneyStampsValue\": 2.1\r\n        },\r\n        \"RewardJourneyImage\": {\r\n          \"AssetID\": 1,\r\n          \"AssetData\": \"QEA=\",\r\n          \"URL\": \"sample string 2\"\r\n        },\r\n        \"Active\": true,\r\n        \"SignUpPerCustomer\": 11,\r\n        \"RewardJourneyDurationInDays\": 12,\r\n        \"Brand\": {\r\n          \"BrandID\": 1,\r\n          \"BrandName\": \"sample string 2\"\r\n        },\r\n        \"IsAllLocations\": true,\r\n        \"RewardJourneyLocations\": [\r\n          {\r\n            \"ActeolSiteID\": 1,\r\n            \"OriginSiteID\": \"sample string 2\",\r\n            \"SiteName\": \"sample string 3\"\r\n          },\r\n          {\r\n            \"ActeolSiteID\": 1,\r\n            \"OriginSiteID\": \"sample string 2\",\r\n            \"SiteName\": \"sample string 3\"\r\n          }\r\n        ],\r\n        \"IsAllWeekDays\": true,\r\n        \"AddedDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n        \"ModifiedDate\": \"2026-03-25T07:30:09.5456665+00:00\",\r\n        \"AddedByName\": \"--\",\r\n        \"ModifiedByName\": \"--\",\r\n        \"IsPreview\": true,\r\n        \"SelectionID\": 17,\r\n        \"SelectionTitle\": \"sample string 18\",\r\n        \"IsSelection\": true\r\n      }\r\n    ],\r\n    \"AvailableRewardJourneys\": [\r\n      {\r\n        \"RewardJourneyID\": 1\r\n      },\r\n      {\r\n        \"RewardJourneyID\": 1\r\n      }\r\n    ]\r\n  },\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"3db6b992-1f99-4c23-a82d-07bb92f19872"},{"name":"RemoveFromRewardJourney","id":"8ef752ea-0302-4a75-a55a-2948457f3326","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"RewardJourneyID\": 2\r\n}"},"url":"https://{{Host}}/api/RewardJourneys/RemoveFromRewardJourney","description":" <p>\n            Remove Contact signed from Reward Journey\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>InputSignUp Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td>ID of the Customer who will register to RewardJourney</td><td>False</td></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>RewardJourney ID of which the customer will sign up to</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","RewardJourneys","RemoveFromRewardJourney"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"9ba6898b-9932-4072-a2f7-c1a971fd46ae","name":"api/RewardJourneys/RemoveFromRewardJourney Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"RewardJourneyID\": 2\r\n}"},"url":"https://{{Host}}/api/RewardJourneys/RemoveFromRewardJourney","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Remove Contact signed from Reward Journey\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>InputSignUp Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td>ID of the Customer who will register to RewardJourney</td><td>False</td></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>RewardJourney ID of which the customer will sign up to</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"8ef752ea-0302-4a75-a55a-2948457f3326"},{"name":"SignUpToRewardJourney","id":"4681caf1-80ae-4b32-89df-15e163d35a15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"RewardJourneyID\": 2\r\n}"},"url":"https://{{Host}}/api/RewardJourneys/SignUpToRewardJourney","description":" <p>\n            Sign Up a contact To a Reward Journey\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>InputSignUp Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td>ID of the Customer who will register to RewardJourney</td><td>False</td></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>RewardJourney ID of which the customer will sign up to</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","RewardJourneys","SignUpToRewardJourney"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"099901f2-24a4-484c-af5a-eceb7477d5df","name":"api/RewardJourneys/SignUpToRewardJourney Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"RewardJourneyID\": 2\r\n}"},"url":"https://{{Host}}/api/RewardJourneys/SignUpToRewardJourney","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Sign Up a contact To a Reward Journey\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>InputSignUp Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td>ID of the Customer who will register to RewardJourney</td><td>False</td></tr><tr><td>RewardJourneyID</td><td>Int32</td><td>RewardJourney ID of which the customer will sign up to</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"4681caf1-80ae-4b32-89df-15e163d35a15"}],"id":"3d0b08d8-a808-4947-a804-b321f7c3d06a","description":"<p>Api Methods for RewardJourneys</p>\n","_postman_id":"3d0b08d8-a808-4947-a804-b321f7c3d06a"},{"name":"SalesLeads","item":[{"name":"AssignLead","id":"597867e4-e75f-4294-8eb2-74282f847086","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"LeadID\": 1,\r\n  \"AssignedTo\": 2,\r\n  \"Assignedby\": 3,\r\n  \"LocationID\": 4,\r\n  \"CategoryID\": 1,\r\n  \"SubCategoryID\": 1,\r\n  \"SourceID\": 5,\r\n  \"AssignToLocation\": true\r\n}"},"url":"https://{{Host}}/api/SalesLeads/AssignLead","description":" <p>\n            The AssignLead.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>AssignLeadInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Assignedby</td><td>Int32</td><td></td><td>False</td></tr><tr><td>AssignedTo</td><td>Int32</td><td></td><td>False</td></tr><tr><td>AssignToLocation</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>CategoryID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LocationID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostSLPOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>ProjectID</td><td>Int32</td><td>ID of the new project</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","SalesLeads","AssignLead"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"49fbe223-92ba-4a35-91d5-85fe12fa2f06","name":"api/SalesLeads/AssignLead Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"LeadID\": 1,\r\n  \"AssignedTo\": 2,\r\n  \"Assignedby\": 3,\r\n  \"LocationID\": 4,\r\n  \"CategoryID\": 1,\r\n  \"SubCategoryID\": 1,\r\n  \"SourceID\": 5,\r\n  \"AssignToLocation\": true\r\n}"},"url":"https://{{Host}}/api/SalesLeads/AssignLead","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            The AssignLead.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>AssignLeadInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Assignedby</td><td>Int32</td><td></td><td>False</td></tr><tr><td>AssignedTo</td><td>Int32</td><td></td><td>False</td></tr><tr><td>AssignToLocation</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>CategoryID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LocationID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostSLPOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>ProjectID</td><td>Int32</td><td>ID of the new project</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"ProjectID\": 2,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"597867e4-e75f-4294-8eb2-74282f847086"},{"name":"GetAllCategories","id":"8fe7dc6a-29a0-4c21-a453-53778f755f0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/SalesLeads/GetAllCategories","description":" <p>\n            The GetAllCategories.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetAllCategoriesOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Categories</td><td>List&lt;Lead_Category&gt;</td><td>List of categories</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>Response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td><h4>Lead_Category Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandIDFromConnectedUser</td><td>Int32 (nullable)</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CategoryBrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CreatedBy</td><td>Int32</td><td></td></tr><tr><td>CreatedUser</td><td>String</td><td></td></tr><tr><td>DefaultTemplate</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Deleted</td><td>Boolean</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>DisplayForFeedback</td><td>Boolean</td><td></td></tr><tr><td>DisplayForSLP</td><td>Boolean</td><td></td></tr><tr><td>DisplayForSurveys</td><td>Boolean</td><td></td></tr><tr><td>DisplayForTracker</td><td>Boolean</td><td></td></tr><tr><td>IsShowDeleted</td><td>Boolean</td><td></td></tr><tr><td>LastModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>ModificationUser</td><td>String</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>SenderVenue</td><td>Int32</td><td></td></tr><tr><td>URD</td><td>DateTime</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","SalesLeads","GetAllCategories"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"eed2ec87-3cf5-488e-bad6-452a447460fe","name":"api/SalesLeads/GetAllCategories Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/SalesLeads/GetAllCategories","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            The GetAllCategories.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetAllCategoriesOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Categories</td><td>List&lt;Lead_Category&gt;</td><td>List of categories</td></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>Response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td colspan=3><h4>Lead_Category Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandIDFromConnectedUser</td><td>Int32 (nullable)</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CategoryBrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CreatedBy</td><td>Int32</td><td></td></tr><tr><td>CreatedUser</td><td>String</td><td></td></tr><tr><td>DefaultTemplate</td><td>Int32 (nullable)</td><td></td></tr><tr><td>Deleted</td><td>Boolean</td><td></td></tr><tr><td>Description</td><td>String</td><td></td></tr><tr><td>DisplayForFeedback</td><td>Boolean</td><td></td></tr><tr><td>DisplayForSLP</td><td>Boolean</td><td></td></tr><tr><td>DisplayForSurveys</td><td>Boolean</td><td></td></tr><tr><td>DisplayForTracker</td><td>Boolean</td><td></td></tr><tr><td>IsShowDeleted</td><td>Boolean</td><td></td></tr><tr><td>LastModifiedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td></tr><tr><td>ModificationUser</td><td>String</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>SenderVenue</td><td>Int32</td><td></td></tr><tr><td>URD</td><td>DateTime</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Categories\": [\r\n    {\r\n      \"CategoryID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Description\": \"sample string 3\",\r\n      \"CreatedBy\": 4,\r\n      \"URD\": \"2026-03-25T07:30:09.686995+00:00\",\r\n      \"LastModifiedBy\": 1,\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:09.686995+00:00\",\r\n      \"Deleted\": true,\r\n      \"CreatedUser\": \"sample string 8\",\r\n      \"ModificationUser\": \"sample string 9\",\r\n      \"DisplayForSurveys\": true,\r\n      \"DisplayForFeedback\": true,\r\n      \"DisplayForSLP\": true,\r\n      \"DisplayForTracker\": true,\r\n      \"CategoryBrandID\": 1,\r\n      \"BrandIDFromConnectedUser\": 1,\r\n      \"DefaultTemplate\": 1,\r\n      \"SenderVenue\": 14,\r\n      \"BrandName\": \"sample string 15\",\r\n      \"IsShowDeleted\": true\r\n    },\r\n    {\r\n      \"CategoryID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Description\": \"sample string 3\",\r\n      \"CreatedBy\": 4,\r\n      \"URD\": \"2026-03-25T07:30:09.686995+00:00\",\r\n      \"LastModifiedBy\": 1,\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:09.686995+00:00\",\r\n      \"Deleted\": true,\r\n      \"CreatedUser\": \"sample string 8\",\r\n      \"ModificationUser\": \"sample string 9\",\r\n      \"DisplayForSurveys\": true,\r\n      \"DisplayForFeedback\": true,\r\n      \"DisplayForSLP\": true,\r\n      \"DisplayForTracker\": true,\r\n      \"CategoryBrandID\": 1,\r\n      \"BrandIDFromConnectedUser\": 1,\r\n      \"DefaultTemplate\": 1,\r\n      \"SenderVenue\": 14,\r\n      \"BrandName\": \"sample string 15\",\r\n      \"IsShowDeleted\": true\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"8fe7dc6a-29a0-4c21-a453-53778f755f0c"},{"name":"GetAllSources","id":"45e20d4f-f3ba-4f3e-aa9f-26353f71610e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/SalesLeads/GetAllSources","description":" <p>\n            The GetAllSources.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetAllSourcesOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>Sources</td><td>List&lt;SlpSource&gt;</td><td>List of sources</td></tr><tr><td><h4>SlpSource Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>SourceID</td><td>Int32</td><td>Slp Status ID</td></tr><tr><td>SourceName</td><td>String</td><td>Slp Status Name</td></tr></table>","urlObject":{"protocol":"https","path":["api","SalesLeads","GetAllSources"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"c180ba4d-a5bc-452c-bbaf-8b817b36a41f","name":"api/SalesLeads/GetAllSources Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/SalesLeads/GetAllSources","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            The GetAllSources.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetAllSourcesOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>Sources</td><td>List&lt;SlpSource&gt;</td><td>List of sources</td></tr><tr><td colspan=3><h4>SlpSource Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>SourceID</td><td>Int32</td><td>Slp Status ID</td></tr><tr><td>SourceName</td><td>String</td><td>Slp Status Name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"Sources\": [\r\n    {\r\n      \"SourceName\": \"sample string 1\",\r\n      \"SourceID\": 2\r\n    },\r\n    {\r\n      \"SourceName\": \"sample string 1\",\r\n      \"SourceID\": 2\r\n    }\r\n  ],\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"45e20d4f-f3ba-4f3e-aa9f-26353f71610e"},{"name":"GetAllStatus","id":"a712d571-8e4c-46e1-b0f2-207bc5566476","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/SalesLeads/GetAllStatus","description":" <p>\n            The GetAllStatus.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetAllLeadStatusOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>Response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>Status</td><td>List&lt;Lead_Status&gt;</td><td>List of Status</td></tr><tr><td><h4>Lead_Status Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DispayInFilters</td><td>Boolean</td><td></td></tr><tr><td>EnablePriority</td><td>Boolean</td><td></td></tr><tr><td>IsAppointment</td><td>Boolean</td><td></td></tr><tr><td>IsFinalStatus</td><td>Boolean</td><td></td></tr><tr><td>IsFollowUp</td><td>Boolean</td><td></td></tr><tr><td>IsSale</td><td>Boolean</td><td></td></tr><tr><td>PipelineGroupID</td><td>Int32</td><td></td></tr><tr><td>PipelineStageID</td><td>Int32</td><td></td></tr><tr><td>PriorityID</td><td>Int32</td><td></td></tr><tr><td>ShowDeleted</td><td>Boolean</td><td></td></tr><tr><td>StatusColor</td><td>String</td><td></td></tr><tr><td>StatusDesc</td><td>String</td><td></td></tr><tr><td>StatusID</td><td>Int32</td><td></td></tr><tr><td>StatusTemplate</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","SalesLeads","GetAllStatus"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"a8c7bd17-17ba-4111-9f8f-6ccc963dc6ad","name":"api/SalesLeads/GetAllStatus Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/SalesLeads/GetAllStatus","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            The GetAllStatus.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetAllLeadStatusOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>Response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>Status</td><td>List&lt;Lead_Status&gt;</td><td>List of Status</td></tr><tr><td colspan=3><h4>Lead_Status Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DispayInFilters</td><td>Boolean</td><td></td></tr><tr><td>EnablePriority</td><td>Boolean</td><td></td></tr><tr><td>IsAppointment</td><td>Boolean</td><td></td></tr><tr><td>IsFinalStatus</td><td>Boolean</td><td></td></tr><tr><td>IsFollowUp</td><td>Boolean</td><td></td></tr><tr><td>IsSale</td><td>Boolean</td><td></td></tr><tr><td>PipelineGroupID</td><td>Int32</td><td></td></tr><tr><td>PipelineStageID</td><td>Int32</td><td></td></tr><tr><td>PriorityID</td><td>Int32</td><td></td></tr><tr><td>ShowDeleted</td><td>Boolean</td><td></td></tr><tr><td>StatusColor</td><td>String</td><td></td></tr><tr><td>StatusDesc</td><td>String</td><td></td></tr><tr><td>StatusID</td><td>Int32</td><td></td></tr><tr><td>StatusTemplate</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Status\": [\r\n    {\r\n      \"StatusID\": 1,\r\n      \"PriorityID\": 2,\r\n      \"StatusDesc\": \"sample string 3\",\r\n      \"StatusColor\": \"sample string 4\",\r\n      \"IsAppointment\": true,\r\n      \"IsSale\": true,\r\n      \"IsFollowUp\": true,\r\n      \"IsFinalStatus\": true,\r\n      \"EnablePriority\": true,\r\n      \"ShowDeleted\": true,\r\n      \"StatusTemplate\": \"<a id=\\\"StatusBadge_\\\"style = \\\"width: 60% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: sample string 4;border: solid 1px sample string 4\\\">sample string 3</span></a>\",\r\n      \"PipelineStageID\": 11,\r\n      \"PipelineGroupID\": 12,\r\n      \"DispayInFilters\": true,\r\n      \"BrandID\": 1\r\n    },\r\n    {\r\n      \"StatusID\": 1,\r\n      \"PriorityID\": 2,\r\n      \"StatusDesc\": \"sample string 3\",\r\n      \"StatusColor\": \"sample string 4\",\r\n      \"IsAppointment\": true,\r\n      \"IsSale\": true,\r\n      \"IsFollowUp\": true,\r\n      \"IsFinalStatus\": true,\r\n      \"EnablePriority\": true,\r\n      \"ShowDeleted\": true,\r\n      \"StatusTemplate\": \"<a id=\\\"StatusBadge_\\\"style = \\\"width: 60% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: sample string 4;border: solid 1px sample string 4\\\">sample string 3</span></a>\",\r\n      \"PipelineStageID\": 11,\r\n      \"PipelineGroupID\": 12,\r\n      \"DispayInFilters\": true,\r\n      \"BrandID\": 1\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"a712d571-8e4c-46e1-b0f2-207bc5566476"},{"name":"GetLeads","id":"a19d52ae-1758-44b9-9786-4e62e037eedf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Source\": \"sample string 1\",\r\n  \"SubSource\": \"sample string 2\",\r\n  \"Categories\": \"sample string 3\",\r\n  \"SubCategories\": \"sample string 4\",\r\n  \"Status\": \"sample string 5\",\r\n  \"BrandID\": 1,\r\n  \"CtcID\": 6,\r\n  \"LeadID\": 7,\r\n  \"PageSize\": 8,\r\n  \"Offset\": 9,\r\n  \"StartDate\": \"sample string 10\",\r\n  \"EndDate\": \"sample string 11\",\r\n  \"Locations\": \"sample string 12\",\r\n  \"AppDate\": \"sample string 13\",\r\n  \"FollowUpDate\": \"sample string 14\"\r\n}"},"url":"https://{{Host}}/api/SalesLeads/GetLeads","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>FilterInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppDate</td><td>String</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Categories</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>String</td><td></td><td>False</td></tr><tr><td>FollowUpDate</td><td>String</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Locations</td><td>String</td><td></td><td>False</td></tr><tr><td>Offset</td><td>Int32</td><td></td><td>False</td></tr><tr><td>PageSize</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Source</td><td>String</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>String</td><td></td><td>False</td></tr><tr><td>Status</td><td>String</td><td></td><td>False</td></tr><tr><td>SubCategories</td><td>String</td><td></td><td>False</td></tr><tr><td>SubSource</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>LeadsByCtcID_Output Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>Leads</td><td>List&lt;Lead_Grid&gt;</td><td>List of leads</td></tr><tr><td>Response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td><h4>Lead_Grid Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AlertEvent</td><td>Boolean</td><td></td></tr><tr><td>AppDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>AppID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>BookingID</td><td>String</td><td></td></tr><tr><td>BookingStatus</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>ClaimedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>ContactMade</td><td>Boolean</td><td></td></tr><tr><td>ConversationStatusDesc</td><td>String</td><td></td></tr><tr><td>ConversationStatusID</td><td>Int32</td><td></td></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CountChild</td><td>Int32</td><td></td></tr><tr><td>Covers</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td></td></tr><tr><td>CreateDate</td><td>DateTime</td><td></td></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>CtcUID</td><td>String</td><td></td></tr><tr><td>FollowUpDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>FromSlave</td><td>Boolean (nullable)</td><td></td></tr><tr><td>FullName</td><td>String</td><td></td></tr><tr><td>HasBooking</td><td>Boolean</td><td></td></tr><tr><td>HasComment</td><td>Boolean</td><td></td></tr><tr><td>HasMasterBooking</td><td>Boolean</td><td></td></tr><tr><td>IsAppointmentShow</td><td>Boolean (nullable)</td><td></td></tr><tr><td>IsAppointmentShowTemplate</td><td>String</td><td></td></tr><tr><td>IsClaimed</td><td>Boolean</td><td></td></tr><tr><td>IsContactMadeTemplate</td><td>String</td><td></td></tr><tr><td>IsFavoriteLead</td><td>Boolean</td><td></td></tr><tr><td>IsFinalStatus</td><td>Boolean</td><td></td></tr><tr><td>IsMaster</td><td>Boolean (nullable)</td><td></td></tr><tr><td>IsMerged</td><td>Boolean</td><td></td></tr><tr><td>IsWalkIn</td><td>Boolean</td><td></td></tr><tr><td>IsWalkInTemplate</td><td>String</td><td></td></tr><tr><td>LeadID</td><td>Int32</td><td></td></tr><tr><td>LeadSource</td><td>String</td><td></td></tr><tr><td>LeadValue</td><td>Double</td><td></td></tr><tr><td>Location</td><td>String</td><td></td></tr><tr><td>LocationID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MasterTemplate</td><td>String</td><td></td></tr><tr><td>NameClaimedBy</td><td>String</td><td></td></tr><tr><td>Notes</td><td>String</td><td></td></tr><tr><td>PriorityColor</td><td>String</td><td></td></tr><tr><td>PriorityDesc</td><td>String</td><td></td></tr><tr><td>PriorityTemplate</td><td>String</td><td></td></tr><tr><td>Region</td><td>String</td><td></td></tr><tr><td>Revenue</td><td>String</td><td></td></tr><tr><td>SessionRemainingTime</td><td>String</td><td></td></tr><tr><td>SessionTemplate</td><td>String</td><td></td></tr><tr><td>SessionTimeTemplate</td><td>String</td><td></td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>SourceID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>StartSessionDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>StatusColor</td><td>String</td><td></td></tr><tr><td>StatusDesc</td><td>String</td><td></td></tr><tr><td>StatusID</td><td>Int32</td><td></td></tr><tr><td>StatusTemplate</td><td>String</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr><tr><td>SubSourceName</td><td>String</td><td></td></tr><tr><td>TotalPrice</td><td>Single</td><td></td></tr><tr><td>VisitDate</td><td>DateTime (nullable)</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","SalesLeads","GetLeads"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"340ddba8-4a13-4063-9ed1-a3782466f470","name":"api/SalesLeads/GetLeads Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Source\": \"sample string 1\",\r\n  \"SubSource\": \"sample string 2\",\r\n  \"Categories\": \"sample string 3\",\r\n  \"SubCategories\": \"sample string 4\",\r\n  \"Status\": \"sample string 5\",\r\n  \"BrandID\": 1,\r\n  \"CtcID\": 6,\r\n  \"LeadID\": 7,\r\n  \"PageSize\": 8,\r\n  \"Offset\": 9,\r\n  \"StartDate\": \"sample string 10\",\r\n  \"EndDate\": \"sample string 11\",\r\n  \"Locations\": \"sample string 12\",\r\n  \"AppDate\": \"sample string 13\",\r\n  \"FollowUpDate\": \"sample string 14\"\r\n}"},"url":"https://{{Host}}/api/SalesLeads/GetLeads","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>FilterInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppDate</td><td>String</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Categories</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>String</td><td></td><td>False</td></tr><tr><td>FollowUpDate</td><td>String</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Locations</td><td>String</td><td></td><td>False</td></tr><tr><td>Offset</td><td>Int32</td><td></td><td>False</td></tr><tr><td>PageSize</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Source</td><td>String</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>String</td><td></td><td>False</td></tr><tr><td>Status</td><td>String</td><td></td><td>False</td></tr><tr><td>SubCategories</td><td>String</td><td></td><td>False</td></tr><tr><td>SubSource</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>LeadsByCtcID_Output Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>Leads</td><td>List&lt;Lead_Grid&gt;</td><td>List of leads</td></tr><tr><td>Response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td colspan=3><h4>Lead_Grid Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AlertEvent</td><td>Boolean</td><td></td></tr><tr><td>AppDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>AppID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>BookingID</td><td>String</td><td></td></tr><tr><td>BookingStatus</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>ClaimedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>ContactMade</td><td>Boolean</td><td></td></tr><tr><td>ConversationStatusDesc</td><td>String</td><td></td></tr><tr><td>ConversationStatusID</td><td>Int32</td><td></td></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CountChild</td><td>Int32</td><td></td></tr><tr><td>Covers</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td></td></tr><tr><td>CreateDate</td><td>DateTime</td><td></td></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>CtcUID</td><td>String</td><td></td></tr><tr><td>FollowUpDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>FromSlave</td><td>Boolean (nullable)</td><td></td></tr><tr><td>FullName</td><td>String</td><td></td></tr><tr><td>HasBooking</td><td>Boolean</td><td></td></tr><tr><td>HasComment</td><td>Boolean</td><td></td></tr><tr><td>HasMasterBooking</td><td>Boolean</td><td></td></tr><tr><td>IsAppointmentShow</td><td>Boolean (nullable)</td><td></td></tr><tr><td>IsAppointmentShowTemplate</td><td>String</td><td></td></tr><tr><td>IsClaimed</td><td>Boolean</td><td></td></tr><tr><td>IsContactMadeTemplate</td><td>String</td><td></td></tr><tr><td>IsFavoriteLead</td><td>Boolean</td><td></td></tr><tr><td>IsFinalStatus</td><td>Boolean</td><td></td></tr><tr><td>IsMaster</td><td>Boolean (nullable)</td><td></td></tr><tr><td>IsMerged</td><td>Boolean</td><td></td></tr><tr><td>IsWalkIn</td><td>Boolean</td><td></td></tr><tr><td>IsWalkInTemplate</td><td>String</td><td></td></tr><tr><td>LeadID</td><td>Int32</td><td></td></tr><tr><td>LeadSource</td><td>String</td><td></td></tr><tr><td>LeadValue</td><td>Double</td><td></td></tr><tr><td>Location</td><td>String</td><td></td></tr><tr><td>LocationID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MasterTemplate</td><td>String</td><td></td></tr><tr><td>NameClaimedBy</td><td>String</td><td></td></tr><tr><td>Notes</td><td>String</td><td></td></tr><tr><td>PriorityColor</td><td>String</td><td></td></tr><tr><td>PriorityDesc</td><td>String</td><td></td></tr><tr><td>PriorityTemplate</td><td>String</td><td></td></tr><tr><td>Region</td><td>String</td><td></td></tr><tr><td>Revenue</td><td>String</td><td></td></tr><tr><td>SessionRemainingTime</td><td>String</td><td></td></tr><tr><td>SessionTemplate</td><td>String</td><td></td></tr><tr><td>SessionTimeTemplate</td><td>String</td><td></td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>SourceID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>StartSessionDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>StatusColor</td><td>String</td><td></td></tr><tr><td>StatusDesc</td><td>String</td><td></td></tr><tr><td>StatusID</td><td>Int32</td><td></td></tr><tr><td>StatusTemplate</td><td>String</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr><tr><td>SubSourceName</td><td>String</td><td></td></tr><tr><td>TotalPrice</td><td>Single</td><td></td></tr><tr><td>VisitDate</td><td>DateTime (nullable)</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Leads\": [\r\n    {\r\n      \"LeadID\": 1,\r\n      \"SourceID\": 1,\r\n      \"FullName\": \"sample string 2\",\r\n      \"AppDate\": \"2026-03-25T07:30:09.8432514+00:00\",\r\n      \"PriorityDesc\": \"sample string 3\",\r\n      \"PriorityColor\": \"sample string 4\",\r\n      \"AppID\": 1,\r\n      \"PriorityTemplate\": \"<a id=\\\"priorityBadge_\\\"style = \\\"width: 80% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: sample string 4;border: solid 1px sample string 4\\\">sample string 3</span></a>\",\r\n      \"MasterTemplate\": \"<i class=\\\"fas fa-crown\\\" style =\\\"font-size: 17px; margin-right: 5px; position: relative; \\\"></i><span style = \\\"font-weight: bold;\\\">1</span>\",\r\n      \"StatusID\": 5,\r\n      \"StatusDesc\": \"sample string 6\",\r\n      \"StatusColor\": \"sample string 7\",\r\n      \"StatusTemplate\": \"<a id=\\\"StatusBadge_\\\"style = \\\"width: 60% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: sample string 7;border: solid 1px sample string 7\\\">sample string 6</span></a>\",\r\n      \"StartSessionDate\": \"2026-03-25T07:30:09.8432514+00:00\",\r\n      \"ConversationStatusID\": 8,\r\n      \"ConversationStatusDesc\": \"sample string 9\",\r\n      \"SessionRemainingTime\": \"sample string 10\",\r\n      \"SessionTimeTemplate\": \"<i class=\\\"fas fa-stopwatch\\\" style=\\\"color: #ffa800;\\\"></i><span class=\\\"text-hover-primary\\\" style=\\\" color: #ffa800;margin-left: 5%;\\\">sample string 10</span>\",\r\n      \"SessionTemplate\": \"<a id=\\\"StatusBadge_\\\"style = \\\"width: 60% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: #ffa800;border: solid 1px #ffa800\\\">sample string 9</span></a>\",\r\n      \"LocationID\": 1,\r\n      \"CpyID\": 11,\r\n      \"CtcID\": 12,\r\n      \"CtcUID\": \"sample string 13\",\r\n      \"Location\": \"sample string 14\",\r\n      \"CreateDate\": \"2026-03-25T07:30:09.8432514+00:00\",\r\n      \"FollowUpDate\": \"2026-03-25T07:30:09.8432514+00:00\",\r\n      \"Source\": \"sample string 16\",\r\n      \"LeadSource\": \"sample string 17\",\r\n      \"IsClaimed\": true,\r\n      \"ClaimedBy\": 1,\r\n      \"NameClaimedBy\": \"sample string 19\",\r\n      \"CategoryName\": \"sample string 20\",\r\n      \"CategoryID\": 1,\r\n      \"ContactMade\": true,\r\n      \"IsWalkIn\": true,\r\n      \"IsAppointmentShow\": true,\r\n      \"Revenue\": \"sample string 23\",\r\n      \"SubCategoryID\": 1,\r\n      \"SubCategoryName\": \"sample string 24\",\r\n      \"CorporateID\": 1,\r\n      \"CorporateName\": \"sample string 25\",\r\n      \"SubSourceName\": \"sample string 26\",\r\n      \"IsWalkInTemplate\": \"<div><i id=\\\"IsWalkIn_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsContactMadeTemplate\": \"<div><i id=\\\"IsContactMade_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsAppointmentShowTemplate\": \"<div><i id=\\\"IsAppointmentShow_1\\\" class=\\\"far fa-calendar-check\\\" style=\\\"display: inline;font-size: 16px;\\\"></i></div>\",\r\n      \"IsFavoriteLead\": true,\r\n      \"BrandName\": \"sample string 28\",\r\n      \"BrandID\": 1,\r\n      \"TotalPrice\": 29.1,\r\n      \"Region\": \"sample string 30\",\r\n      \"HasComment\": true,\r\n      \"BookingID\": \"sample string 32\",\r\n      \"BookingStatus\": \"sample string 33\",\r\n      \"VisitDate\": \"2026-03-25T07:30:09.8432514+00:00\",\r\n      \"Covers\": 1,\r\n      \"IsMaster\": true,\r\n      \"AlertEvent\": true,\r\n      \"FromSlave\": true,\r\n      \"HasBooking\": true,\r\n      \"CountChild\": 36,\r\n      \"IsFinalStatus\": true,\r\n      \"Notes\": \"sample string 38\",\r\n      \"LeadValue\": 39.1,\r\n      \"IsMerged\": true,\r\n      \"HasMasterBooking\": true\r\n    },\r\n    {\r\n      \"LeadID\": 1,\r\n      \"SourceID\": 1,\r\n      \"FullName\": \"sample string 2\",\r\n      \"AppDate\": \"2026-03-25T07:30:09.8432514+00:00\",\r\n      \"PriorityDesc\": \"sample string 3\",\r\n      \"PriorityColor\": \"sample string 4\",\r\n      \"AppID\": 1,\r\n      \"PriorityTemplate\": \"<a id=\\\"priorityBadge_\\\"style = \\\"width: 80% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: sample string 4;border: solid 1px sample string 4\\\">sample string 3</span></a>\",\r\n      \"MasterTemplate\": \"<i class=\\\"fas fa-crown\\\" style =\\\"font-size: 17px; margin-right: 5px; position: relative; \\\"></i><span style = \\\"font-weight: bold;\\\">1</span>\",\r\n      \"StatusID\": 5,\r\n      \"StatusDesc\": \"sample string 6\",\r\n      \"StatusColor\": \"sample string 7\",\r\n      \"StatusTemplate\": \"<a id=\\\"StatusBadge_\\\"style = \\\"width: 60% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: sample string 7;border: solid 1px sample string 7\\\">sample string 6</span></a>\",\r\n      \"StartSessionDate\": \"2026-03-25T07:30:09.8432514+00:00\",\r\n      \"ConversationStatusID\": 8,\r\n      \"ConversationStatusDesc\": \"sample string 9\",\r\n      \"SessionRemainingTime\": \"sample string 10\",\r\n      \"SessionTimeTemplate\": \"<i class=\\\"fas fa-stopwatch\\\" style=\\\"color: #ffa800;\\\"></i><span class=\\\"text-hover-primary\\\" style=\\\" color: #ffa800;margin-left: 5%;\\\">sample string 10</span>\",\r\n      \"SessionTemplate\": \"<a id=\\\"StatusBadge_\\\"style = \\\"width: 60% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: #ffa800;border: solid 1px #ffa800\\\">sample string 9</span></a>\",\r\n      \"LocationID\": 1,\r\n      \"CpyID\": 11,\r\n      \"CtcID\": 12,\r\n      \"CtcUID\": \"sample string 13\",\r\n      \"Location\": \"sample string 14\",\r\n      \"CreateDate\": \"2026-03-25T07:30:09.8432514+00:00\",\r\n      \"FollowUpDate\": \"2026-03-25T07:30:09.8432514+00:00\",\r\n      \"Source\": \"sample string 16\",\r\n      \"LeadSource\": \"sample string 17\",\r\n      \"IsClaimed\": true,\r\n      \"ClaimedBy\": 1,\r\n      \"NameClaimedBy\": \"sample string 19\",\r\n      \"CategoryName\": \"sample string 20\",\r\n      \"CategoryID\": 1,\r\n      \"ContactMade\": true,\r\n      \"IsWalkIn\": true,\r\n      \"IsAppointmentShow\": true,\r\n      \"Revenue\": \"sample string 23\",\r\n      \"SubCategoryID\": 1,\r\n      \"SubCategoryName\": \"sample string 24\",\r\n      \"CorporateID\": 1,\r\n      \"CorporateName\": \"sample string 25\",\r\n      \"SubSourceName\": \"sample string 26\",\r\n      \"IsWalkInTemplate\": \"<div><i id=\\\"IsWalkIn_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsContactMadeTemplate\": \"<div><i id=\\\"IsContactMade_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsAppointmentShowTemplate\": \"<div><i id=\\\"IsAppointmentShow_1\\\" class=\\\"far fa-calendar-check\\\" style=\\\"display: inline;font-size: 16px;\\\"></i></div>\",\r\n      \"IsFavoriteLead\": true,\r\n      \"BrandName\": \"sample string 28\",\r\n      \"BrandID\": 1,\r\n      \"TotalPrice\": 29.1,\r\n      \"Region\": \"sample string 30\",\r\n      \"HasComment\": true,\r\n      \"BookingID\": \"sample string 32\",\r\n      \"BookingStatus\": \"sample string 33\",\r\n      \"VisitDate\": \"2026-03-25T07:30:09.8432514+00:00\",\r\n      \"Covers\": 1,\r\n      \"IsMaster\": true,\r\n      \"AlertEvent\": true,\r\n      \"FromSlave\": true,\r\n      \"HasBooking\": true,\r\n      \"CountChild\": 36,\r\n      \"IsFinalStatus\": true,\r\n      \"Notes\": \"sample string 38\",\r\n      \"LeadValue\": 39.1,\r\n      \"IsMerged\": true,\r\n      \"HasMasterBooking\": true\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"a19d52ae-1758-44b9-9786-4e62e037eedf"},{"name":"GetLeadsByCtcID","id":"5969affd-9343-41fc-9959-ff526fba5aeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/SalesLeads/GetLeadsByCtcID?CtcID=CtcID-value","description":" <p>\n            The GetLeadsByCtcID.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>LeadsByCtcID_Output Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>Leads</td><td>List&lt;Lead_Grid&gt;</td><td>List of leads</td></tr><tr><td>Response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td><h4>Lead_Grid Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AlertEvent</td><td>Boolean</td><td></td></tr><tr><td>AppDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>AppID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>BookingID</td><td>String</td><td></td></tr><tr><td>BookingStatus</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>ClaimedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>ContactMade</td><td>Boolean</td><td></td></tr><tr><td>ConversationStatusDesc</td><td>String</td><td></td></tr><tr><td>ConversationStatusID</td><td>Int32</td><td></td></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CountChild</td><td>Int32</td><td></td></tr><tr><td>Covers</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td></td></tr><tr><td>CreateDate</td><td>DateTime</td><td></td></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>CtcUID</td><td>String</td><td></td></tr><tr><td>FollowUpDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>FromSlave</td><td>Boolean (nullable)</td><td></td></tr><tr><td>FullName</td><td>String</td><td></td></tr><tr><td>HasBooking</td><td>Boolean</td><td></td></tr><tr><td>HasComment</td><td>Boolean</td><td></td></tr><tr><td>HasMasterBooking</td><td>Boolean</td><td></td></tr><tr><td>IsAppointmentShow</td><td>Boolean (nullable)</td><td></td></tr><tr><td>IsAppointmentShowTemplate</td><td>String</td><td></td></tr><tr><td>IsClaimed</td><td>Boolean</td><td></td></tr><tr><td>IsContactMadeTemplate</td><td>String</td><td></td></tr><tr><td>IsFavoriteLead</td><td>Boolean</td><td></td></tr><tr><td>IsFinalStatus</td><td>Boolean</td><td></td></tr><tr><td>IsMaster</td><td>Boolean (nullable)</td><td></td></tr><tr><td>IsMerged</td><td>Boolean</td><td></td></tr><tr><td>IsWalkIn</td><td>Boolean</td><td></td></tr><tr><td>IsWalkInTemplate</td><td>String</td><td></td></tr><tr><td>LeadID</td><td>Int32</td><td></td></tr><tr><td>LeadSource</td><td>String</td><td></td></tr><tr><td>LeadValue</td><td>Double</td><td></td></tr><tr><td>Location</td><td>String</td><td></td></tr><tr><td>LocationID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MasterTemplate</td><td>String</td><td></td></tr><tr><td>NameClaimedBy</td><td>String</td><td></td></tr><tr><td>Notes</td><td>String</td><td></td></tr><tr><td>PriorityColor</td><td>String</td><td></td></tr><tr><td>PriorityDesc</td><td>String</td><td></td></tr><tr><td>PriorityTemplate</td><td>String</td><td></td></tr><tr><td>Region</td><td>String</td><td></td></tr><tr><td>Revenue</td><td>String</td><td></td></tr><tr><td>SessionRemainingTime</td><td>String</td><td></td></tr><tr><td>SessionTemplate</td><td>String</td><td></td></tr><tr><td>SessionTimeTemplate</td><td>String</td><td></td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>SourceID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>StartSessionDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>StatusColor</td><td>String</td><td></td></tr><tr><td>StatusDesc</td><td>String</td><td></td></tr><tr><td>StatusID</td><td>Int32</td><td></td></tr><tr><td>StatusTemplate</td><td>String</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr><tr><td>SubSourceName</td><td>String</td><td></td></tr><tr><td>TotalPrice</td><td>Single</td><td></td></tr><tr><td>VisitDate</td><td>DateTime (nullable)</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","SalesLeads","GetLeadsByCtcID"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"}],"variable":[]}},"response":[{"id":"738240c3-5c31-443a-a90a-041a8f942c12","name":"api/SalesLeads/GetLeadsByCtcID?CtcID={CtcID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/SalesLeads/GetLeadsByCtcID?CtcID=CtcID-value","protocol":"https","host":["{{Host}}"],"path":["api","SalesLeads","GetLeadsByCtcID"],"query":[{"key":"CtcID","value":"CtcID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            The GetLeadsByCtcID.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>LeadsByCtcID_Output Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>Leads</td><td>List&lt;Lead_Grid&gt;</td><td>List of leads</td></tr><tr><td>Response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td colspan=3><h4>Lead_Grid Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>AlertEvent</td><td>Boolean</td><td></td></tr><tr><td>AppDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>AppID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>BookingID</td><td>String</td><td></td></tr><tr><td>BookingStatus</td><td>String</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>ClaimedBy</td><td>Int32 (nullable)</td><td></td></tr><tr><td>ContactMade</td><td>Boolean</td><td></td></tr><tr><td>ConversationStatusDesc</td><td>String</td><td></td></tr><tr><td>ConversationStatusID</td><td>Int32</td><td></td></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CorporateName</td><td>String</td><td></td></tr><tr><td>CountChild</td><td>Int32</td><td></td></tr><tr><td>Covers</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CpyID</td><td>Int32</td><td></td></tr><tr><td>CreateDate</td><td>DateTime</td><td></td></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>CtcUID</td><td>String</td><td></td></tr><tr><td>FollowUpDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>FromSlave</td><td>Boolean (nullable)</td><td></td></tr><tr><td>FullName</td><td>String</td><td></td></tr><tr><td>HasBooking</td><td>Boolean</td><td></td></tr><tr><td>HasComment</td><td>Boolean</td><td></td></tr><tr><td>HasMasterBooking</td><td>Boolean</td><td></td></tr><tr><td>IsAppointmentShow</td><td>Boolean (nullable)</td><td></td></tr><tr><td>IsAppointmentShowTemplate</td><td>String</td><td></td></tr><tr><td>IsClaimed</td><td>Boolean</td><td></td></tr><tr><td>IsContactMadeTemplate</td><td>String</td><td></td></tr><tr><td>IsFavoriteLead</td><td>Boolean</td><td></td></tr><tr><td>IsFinalStatus</td><td>Boolean</td><td></td></tr><tr><td>IsMaster</td><td>Boolean (nullable)</td><td></td></tr><tr><td>IsMerged</td><td>Boolean</td><td></td></tr><tr><td>IsWalkIn</td><td>Boolean</td><td></td></tr><tr><td>IsWalkInTemplate</td><td>String</td><td></td></tr><tr><td>LeadID</td><td>Int32</td><td></td></tr><tr><td>LeadSource</td><td>String</td><td></td></tr><tr><td>LeadValue</td><td>Double</td><td></td></tr><tr><td>Location</td><td>String</td><td></td></tr><tr><td>LocationID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MasterTemplate</td><td>String</td><td></td></tr><tr><td>NameClaimedBy</td><td>String</td><td></td></tr><tr><td>Notes</td><td>String</td><td></td></tr><tr><td>PriorityColor</td><td>String</td><td></td></tr><tr><td>PriorityDesc</td><td>String</td><td></td></tr><tr><td>PriorityTemplate</td><td>String</td><td></td></tr><tr><td>Region</td><td>String</td><td></td></tr><tr><td>Revenue</td><td>String</td><td></td></tr><tr><td>SessionRemainingTime</td><td>String</td><td></td></tr><tr><td>SessionTemplate</td><td>String</td><td></td></tr><tr><td>SessionTimeTemplate</td><td>String</td><td></td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>SourceID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>StartSessionDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>StatusColor</td><td>String</td><td></td></tr><tr><td>StatusDesc</td><td>String</td><td></td></tr><tr><td>StatusID</td><td>Int32</td><td></td></tr><tr><td>StatusTemplate</td><td>String</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr><tr><td>SubSourceName</td><td>String</td><td></td></tr><tr><td>TotalPrice</td><td>Single</td><td></td></tr><tr><td>VisitDate</td><td>DateTime (nullable)</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Leads\": [\r\n    {\r\n      \"LeadID\": 1,\r\n      \"SourceID\": 1,\r\n      \"FullName\": \"sample string 2\",\r\n      \"AppDate\": \"2026-03-25T07:30:09.7494881+00:00\",\r\n      \"PriorityDesc\": \"sample string 3\",\r\n      \"PriorityColor\": \"sample string 4\",\r\n      \"AppID\": 1,\r\n      \"PriorityTemplate\": \"<a id=\\\"priorityBadge_\\\"style = \\\"width: 80% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: sample string 4;border: solid 1px sample string 4\\\">sample string 3</span></a>\",\r\n      \"MasterTemplate\": \"<i class=\\\"fas fa-crown\\\" style =\\\"font-size: 17px; margin-right: 5px; position: relative; \\\"></i><span style = \\\"font-weight: bold;\\\">1</span>\",\r\n      \"StatusID\": 5,\r\n      \"StatusDesc\": \"sample string 6\",\r\n      \"StatusColor\": \"sample string 7\",\r\n      \"StatusTemplate\": \"<a id=\\\"StatusBadge_\\\"style = \\\"width: 60% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: sample string 7;border: solid 1px sample string 7\\\">sample string 6</span></a>\",\r\n      \"StartSessionDate\": \"2026-03-25T07:30:09.7494881+00:00\",\r\n      \"ConversationStatusID\": 8,\r\n      \"ConversationStatusDesc\": \"sample string 9\",\r\n      \"SessionRemainingTime\": \"sample string 10\",\r\n      \"SessionTimeTemplate\": \"<i class=\\\"fas fa-stopwatch\\\" style=\\\"color: #ffa800;\\\"></i><span class=\\\"text-hover-primary\\\" style=\\\" color: #ffa800;margin-left: 5%;\\\">sample string 10</span>\",\r\n      \"SessionTemplate\": \"<a id=\\\"StatusBadge_\\\"style = \\\"width: 60% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: #ffa800;border: solid 1px #ffa800\\\">sample string 9</span></a>\",\r\n      \"LocationID\": 1,\r\n      \"CpyID\": 11,\r\n      \"CtcID\": 12,\r\n      \"CtcUID\": \"sample string 13\",\r\n      \"Location\": \"sample string 14\",\r\n      \"CreateDate\": \"2026-03-25T07:30:09.7494881+00:00\",\r\n      \"FollowUpDate\": \"2026-03-25T07:30:09.7494881+00:00\",\r\n      \"Source\": \"sample string 16\",\r\n      \"LeadSource\": \"sample string 17\",\r\n      \"IsClaimed\": true,\r\n      \"ClaimedBy\": 1,\r\n      \"NameClaimedBy\": \"sample string 19\",\r\n      \"CategoryName\": \"sample string 20\",\r\n      \"CategoryID\": 1,\r\n      \"ContactMade\": true,\r\n      \"IsWalkIn\": true,\r\n      \"IsAppointmentShow\": true,\r\n      \"Revenue\": \"sample string 23\",\r\n      \"SubCategoryID\": 1,\r\n      \"SubCategoryName\": \"sample string 24\",\r\n      \"CorporateID\": 1,\r\n      \"CorporateName\": \"sample string 25\",\r\n      \"SubSourceName\": \"sample string 26\",\r\n      \"IsWalkInTemplate\": \"<div><i id=\\\"IsWalkIn_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsContactMadeTemplate\": \"<div><i id=\\\"IsContactMade_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsAppointmentShowTemplate\": \"<div><i id=\\\"IsAppointmentShow_1\\\" class=\\\"far fa-calendar-check\\\" style=\\\"display: inline;font-size: 16px;\\\"></i></div>\",\r\n      \"IsFavoriteLead\": true,\r\n      \"BrandName\": \"sample string 28\",\r\n      \"BrandID\": 1,\r\n      \"TotalPrice\": 29.1,\r\n      \"Region\": \"sample string 30\",\r\n      \"HasComment\": true,\r\n      \"BookingID\": \"sample string 32\",\r\n      \"BookingStatus\": \"sample string 33\",\r\n      \"VisitDate\": \"2026-03-25T07:30:09.7494881+00:00\",\r\n      \"Covers\": 1,\r\n      \"IsMaster\": true,\r\n      \"AlertEvent\": true,\r\n      \"FromSlave\": true,\r\n      \"HasBooking\": true,\r\n      \"CountChild\": 36,\r\n      \"IsFinalStatus\": true,\r\n      \"Notes\": \"sample string 38\",\r\n      \"LeadValue\": 39.1,\r\n      \"IsMerged\": true,\r\n      \"HasMasterBooking\": true\r\n    },\r\n    {\r\n      \"LeadID\": 1,\r\n      \"SourceID\": 1,\r\n      \"FullName\": \"sample string 2\",\r\n      \"AppDate\": \"2026-03-25T07:30:09.7494881+00:00\",\r\n      \"PriorityDesc\": \"sample string 3\",\r\n      \"PriorityColor\": \"sample string 4\",\r\n      \"AppID\": 1,\r\n      \"PriorityTemplate\": \"<a id=\\\"priorityBadge_\\\"style = \\\"width: 80% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: sample string 4;border: solid 1px sample string 4\\\">sample string 3</span></a>\",\r\n      \"MasterTemplate\": \"<i class=\\\"fas fa-crown\\\" style =\\\"font-size: 17px; margin-right: 5px; position: relative; \\\"></i><span style = \\\"font-weight: bold;\\\">1</span>\",\r\n      \"StatusID\": 5,\r\n      \"StatusDesc\": \"sample string 6\",\r\n      \"StatusColor\": \"sample string 7\",\r\n      \"StatusTemplate\": \"<a id=\\\"StatusBadge_\\\"style = \\\"width: 60% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: sample string 7;border: solid 1px sample string 7\\\">sample string 6</span></a>\",\r\n      \"StartSessionDate\": \"2026-03-25T07:30:09.7494881+00:00\",\r\n      \"ConversationStatusID\": 8,\r\n      \"ConversationStatusDesc\": \"sample string 9\",\r\n      \"SessionRemainingTime\": \"sample string 10\",\r\n      \"SessionTimeTemplate\": \"<i class=\\\"fas fa-stopwatch\\\" style=\\\"color: #ffa800;\\\"></i><span class=\\\"text-hover-primary\\\" style=\\\" color: #ffa800;margin-left: 5%;\\\">sample string 10</span>\",\r\n      \"SessionTemplate\": \"<a id=\\\"StatusBadge_\\\"style = \\\"width: 60% \\\"><span class=\\\"text-hover-primary lead-badge-status-k priorityBage\\\" id=\\\"priorityBadge\\\" style=\\\" color: #ffa800;border: solid 1px #ffa800\\\">sample string 9</span></a>\",\r\n      \"LocationID\": 1,\r\n      \"CpyID\": 11,\r\n      \"CtcID\": 12,\r\n      \"CtcUID\": \"sample string 13\",\r\n      \"Location\": \"sample string 14\",\r\n      \"CreateDate\": \"2026-03-25T07:30:09.7494881+00:00\",\r\n      \"FollowUpDate\": \"2026-03-25T07:30:09.7494881+00:00\",\r\n      \"Source\": \"sample string 16\",\r\n      \"LeadSource\": \"sample string 17\",\r\n      \"IsClaimed\": true,\r\n      \"ClaimedBy\": 1,\r\n      \"NameClaimedBy\": \"sample string 19\",\r\n      \"CategoryName\": \"sample string 20\",\r\n      \"CategoryID\": 1,\r\n      \"ContactMade\": true,\r\n      \"IsWalkIn\": true,\r\n      \"IsAppointmentShow\": true,\r\n      \"Revenue\": \"sample string 23\",\r\n      \"SubCategoryID\": 1,\r\n      \"SubCategoryName\": \"sample string 24\",\r\n      \"CorporateID\": 1,\r\n      \"CorporateName\": \"sample string 25\",\r\n      \"SubSourceName\": \"sample string 26\",\r\n      \"IsWalkInTemplate\": \"<div><i id=\\\"IsWalkIn_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsContactMadeTemplate\": \"<div><i id=\\\"IsContactMade_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsAppointmentShowTemplate\": \"<div><i id=\\\"IsAppointmentShow_1\\\" class=\\\"far fa-calendar-check\\\" style=\\\"display: inline;font-size: 16px;\\\"></i></div>\",\r\n      \"IsFavoriteLead\": true,\r\n      \"BrandName\": \"sample string 28\",\r\n      \"BrandID\": 1,\r\n      \"TotalPrice\": 29.1,\r\n      \"Region\": \"sample string 30\",\r\n      \"HasComment\": true,\r\n      \"BookingID\": \"sample string 32\",\r\n      \"BookingStatus\": \"sample string 33\",\r\n      \"VisitDate\": \"2026-03-25T07:30:09.7494881+00:00\",\r\n      \"Covers\": 1,\r\n      \"IsMaster\": true,\r\n      \"AlertEvent\": true,\r\n      \"FromSlave\": true,\r\n      \"HasBooking\": true,\r\n      \"CountChild\": 36,\r\n      \"IsFinalStatus\": true,\r\n      \"Notes\": \"sample string 38\",\r\n      \"LeadValue\": 39.1,\r\n      \"IsMerged\": true,\r\n      \"HasMasterBooking\": true\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"5969affd-9343-41fc-9959-ff526fba5aeb"},{"name":"GetSubCategoriesByCategoryID","id":"ef4d5005-8361-45a1-af3f-dc18ca99bc98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/SalesLeads/GetSubCategoriesByCategoryID?CategoryID=CategoryID-value","description":" <p>\n            The GetSubCategoriesByCategoryID.\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetLeadSubCategoriesOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>Response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>SubCategories</td><td>List&lt;Lead_SubCategory&gt;</td><td>List of sub categories</td></tr><tr><td><h4>Lead_SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>Deleted</td><td>Boolean</td><td></td></tr><tr><td>DisplayForFeedback</td><td>Boolean</td><td></td></tr><tr><td>DisplayForSLP</td><td>Boolean</td><td></td></tr><tr><td>DisplayForSurveys</td><td>Boolean</td><td></td></tr><tr><td>DisplayForTracker</td><td>Boolean</td><td></td></tr><tr><td>IsShowDeleted</td><td>Boolean</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>ParentDisplayForSLP</td><td>Boolean</td><td></td></tr><tr><td>ParentDisplayForSurveys</td><td>Boolean</td><td></td></tr><tr><td>ParentDisplayForTracker</td><td>Boolean</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","SalesLeads","GetSubCategoriesByCategoryID"],"host":["{{Host}}"],"query":[{"key":"CategoryID","value":"CategoryID-value"}],"variable":[]}},"response":[{"id":"149dc468-2264-4554-8da9-6e0608217a17","name":"api/SalesLeads/GetSubCategoriesByCategoryID?CategoryID={CategoryID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/SalesLeads/GetSubCategoriesByCategoryID?CategoryID=CategoryID-value","protocol":"https","host":["{{Host}}"],"path":["api","SalesLeads","GetSubCategoriesByCategoryID"],"query":[{"key":"CategoryID","value":"CategoryID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            The GetSubCategoriesByCategoryID.\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetLeadSubCategoriesOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>Response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>SubCategories</td><td>List&lt;Lead_SubCategory&gt;</td><td>List of sub categories</td></tr><tr><td colspan=3><h4>Lead_SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>Deleted</td><td>Boolean</td><td></td></tr><tr><td>DisplayForFeedback</td><td>Boolean</td><td></td></tr><tr><td>DisplayForSLP</td><td>Boolean</td><td></td></tr><tr><td>DisplayForSurveys</td><td>Boolean</td><td></td></tr><tr><td>DisplayForTracker</td><td>Boolean</td><td></td></tr><tr><td>IsShowDeleted</td><td>Boolean</td><td></td></tr><tr><td>Name</td><td>String</td><td></td></tr><tr><td>ParentDisplayForSLP</td><td>Boolean</td><td></td></tr><tr><td>ParentDisplayForSurveys</td><td>Boolean</td><td></td></tr><tr><td>ParentDisplayForTracker</td><td>Boolean</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"SubCategories\": [\r\n    {\r\n      \"SubCategoryID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"DisplayForSurveys\": true,\r\n      \"DisplayForFeedback\": true,\r\n      \"DisplayForSLP\": true,\r\n      \"CategoryID\": 6,\r\n      \"CategoryName\": \"sample string 7\",\r\n      \"DisplayForTracker\": true,\r\n      \"ParentDisplayForSurveys\": true,\r\n      \"ParentDisplayForSLP\": true,\r\n      \"ParentDisplayForTracker\": true,\r\n      \"Deleted\": true,\r\n      \"IsShowDeleted\": true\r\n    },\r\n    {\r\n      \"SubCategoryID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"DisplayForSurveys\": true,\r\n      \"DisplayForFeedback\": true,\r\n      \"DisplayForSLP\": true,\r\n      \"CategoryID\": 6,\r\n      \"CategoryName\": \"sample string 7\",\r\n      \"DisplayForTracker\": true,\r\n      \"ParentDisplayForSurveys\": true,\r\n      \"ParentDisplayForSLP\": true,\r\n      \"ParentDisplayForTracker\": true,\r\n      \"Deleted\": true,\r\n      \"IsShowDeleted\": true\r\n    }\r\n  ],\r\n  \"Errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"ef4d5005-8361-45a1-af3f-dc18ca99bc98"},{"name":"Patch","id":"8ea3adfa-fa0d-4968-a996-e7ca5c576bf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"LocationID\": 1,\r\n  \"SourceID\": 2,\r\n  \"StatusID\": 3,\r\n  \"PriorityID\": 4,\r\n  \"CategoryID\": 5,\r\n  \"SubCategoryID\": 6,\r\n  \"Notes\": \"Sample string 1\",\r\n  \"AppDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"FollowUpDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"EventDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"EventEndDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"ProvisionalEventDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"ProvisionalEndDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"PostSalescallDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"ContactMade\": true,\r\n  \"ContactMadeDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"ContactType\": 7,\r\n  \"IsWalkIn\": true,\r\n  \"MembershipType\": 8,\r\n  \"CorporateID\": 9,\r\n  \"FeedbackID\": 10,\r\n  \"IsAppReminder\": true,\r\n  \"AppReminderNote\": \"Sample string 2\",\r\n  \"IsFollowUpReminder\": true,\r\n  \"FollowUpReminderNote\": \"Sample string 3\",\r\n  \"IsAppointmentShow\": true,\r\n  \"POSRevenue\": \"Sample string 4\",\r\n  \"BrandID\": 11,\r\n  \"Covers\": 12,\r\n  \"VisitDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"BookingTypeID\": \"Sample string 5\",\r\n  \"SubSourceID\": 13,\r\n  \"Budget\": \"Sample string 6\",\r\n  \"ExpectedRevenue\": \"Sample string 7\",\r\n  \"PipelineStageID\": 14,\r\n  \"BookingStatus\": \"Sample string 8\",\r\n  \"SurveyOpCode\": 15,\r\n  \"SurveyResponseID\": 16,\r\n  \"Products\": [\r\n    {\r\n      \"<ProductID>k__BackingField\": 17,\r\n      \"<ID>k__BackingField\": 18,\r\n      \"<LeadID>k__BackingField\": 19,\r\n      \"<UnitPrice>k__BackingField\": 20.1,\r\n      \"<Discount>k__BackingField\": 21.1,\r\n      \"<Total>k__BackingField\": 22.1,\r\n      \"<FullName>k__BackingField\": \"Sample string 9\",\r\n      \"<Description>k__BackingField\": \"Sample string 10\",\r\n      \"<Quantity>k__BackingField\": 23,\r\n      \"<QuantityEstimate>k__BackingField\": 24,\r\n      \"<Estimate>k__BackingField\": 25.1,\r\n      \"<GrossCost>k__BackingField\": 26.1,\r\n      \"<TotalPrice>k__BackingField\": 27.1,\r\n      \"<CtcID>k__BackingField\": 28,\r\n      \"<URD>k__BackingField\": \"2026-03-25T00:00:00+00:00\",\r\n      \"<ModifiedBy>k__BackingField\": \"Sample string 11\",\r\n      \"<Picture>k__BackingField\": \"Sample string 12\",\r\n      \"<LongDescription>k__BackingField\": \"Sample string 13\"\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/SalesLeads/Patch?LeadID=LeadID-value","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>PatchLeadsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>AppReminderNote</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingTypeID</td><td>String</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Budget</td><td>String</td><td></td><td>False</td></tr><tr><td>CategoryID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>ContactMade</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>ContactMadeDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ContactType</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Covers</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>EventDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>EventEndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ExpectedRevenue</td><td>String</td><td></td><td>False</td></tr><tr><td>FeedbackID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>FollowUpDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>FollowUpReminderNote</td><td>String</td><td></td><td>False</td></tr><tr><td>IsAppointmentShow</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsAppReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsFollowUpReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsWalkIn</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>LocationID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>MembershipType</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Notes</td><td>String</td><td></td><td>False</td></tr><tr><td>PipelineStageID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>POSRevenue</td><td>String</td><td></td><td>False</td></tr><tr><td>PostSalescallDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>PriorityID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Products</td><td>List&lt;ProductLead&gt;</td><td></td><td>False</td></tr><tr><td>ProvisionalEndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ProvisionalEventDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>StatusID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SubSourceID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SurveyOpCode</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SurveyResponseID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>VisitDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td><h4>ProductLead Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>Discount</td><td>Single</td><td></td><td>False</td></tr><tr><td>Estimate</td><td>Single</td><td></td><td>False</td></tr><tr><td>FullName</td><td>String</td><td></td><td>False</td></tr><tr><td>GrossCost</td><td>Single</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LongDescription</td><td>String</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>Picture</td><td>String</td><td></td><td>False</td></tr><tr><td>ProductID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Quantity</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>QuantityEstimate</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Total</td><td>Single</td><td></td><td>False</td></tr><tr><td>TotalPrice</td><td>Single</td><td></td><td>False</td></tr><tr><td>UnitPrice</td><td>Single</td><td></td><td>False</td></tr><tr><td>URD</td><td>DateTime</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostSLPOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>ProjectID</td><td>Int32</td><td>ID of the new project</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","SalesLeads","Patch"],"host":["{{Host}}"],"query":[{"key":"LeadID","value":"LeadID-value"}],"variable":[]}},"response":[{"id":"a339468e-d359-4146-83c8-97639e72daad","name":"api/SalesLeads/Patch?LeadID={LeadID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"LocationID\": 1,\r\n  \"SourceID\": 2,\r\n  \"StatusID\": 3,\r\n  \"PriorityID\": 4,\r\n  \"CategoryID\": 5,\r\n  \"SubCategoryID\": 6,\r\n  \"Notes\": \"Sample string 1\",\r\n  \"AppDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"FollowUpDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"EventDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"EventEndDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"ProvisionalEventDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"ProvisionalEndDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"PostSalescallDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"ContactMade\": true,\r\n  \"ContactMadeDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"ContactType\": 7,\r\n  \"IsWalkIn\": true,\r\n  \"MembershipType\": 8,\r\n  \"CorporateID\": 9,\r\n  \"FeedbackID\": 10,\r\n  \"IsAppReminder\": true,\r\n  \"AppReminderNote\": \"Sample string 2\",\r\n  \"IsFollowUpReminder\": true,\r\n  \"FollowUpReminderNote\": \"Sample string 3\",\r\n  \"IsAppointmentShow\": true,\r\n  \"POSRevenue\": \"Sample string 4\",\r\n  \"BrandID\": 11,\r\n  \"Covers\": 12,\r\n  \"VisitDate\": \"2026-03-25T00:00:00+00:00\",\r\n  \"BookingTypeID\": \"Sample string 5\",\r\n  \"SubSourceID\": 13,\r\n  \"Budget\": \"Sample string 6\",\r\n  \"ExpectedRevenue\": \"Sample string 7\",\r\n  \"PipelineStageID\": 14,\r\n  \"BookingStatus\": \"Sample string 8\",\r\n  \"SurveyOpCode\": 15,\r\n  \"SurveyResponseID\": 16,\r\n  \"Products\": [\r\n    {\r\n      \"<ProductID>k__BackingField\": 17,\r\n      \"<ID>k__BackingField\": 18,\r\n      \"<LeadID>k__BackingField\": 19,\r\n      \"<UnitPrice>k__BackingField\": 20.1,\r\n      \"<Discount>k__BackingField\": 21.1,\r\n      \"<Total>k__BackingField\": 22.1,\r\n      \"<FullName>k__BackingField\": \"Sample string 9\",\r\n      \"<Description>k__BackingField\": \"Sample string 10\",\r\n      \"<Quantity>k__BackingField\": 23,\r\n      \"<QuantityEstimate>k__BackingField\": 24,\r\n      \"<Estimate>k__BackingField\": 25.1,\r\n      \"<GrossCost>k__BackingField\": 26.1,\r\n      \"<TotalPrice>k__BackingField\": 27.1,\r\n      \"<CtcID>k__BackingField\": 28,\r\n      \"<URD>k__BackingField\": \"2026-03-25T00:00:00+00:00\",\r\n      \"<ModifiedBy>k__BackingField\": \"Sample string 11\",\r\n      \"<Picture>k__BackingField\": \"Sample string 12\",\r\n      \"<LongDescription>k__BackingField\": \"Sample string 13\"\r\n    }\r\n  ]\r\n}"},"url":{"raw":"https://{{Host}}/api/SalesLeads/Patch?LeadID=LeadID-value","protocol":"https","host":["{{Host}}"],"path":["api","SalesLeads","Patch"],"query":[{"key":"LeadID","value":"LeadID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PatchLeadsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AppDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>AppReminderNote</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingTypeID</td><td>String</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Budget</td><td>String</td><td></td><td>False</td></tr><tr><td>CategoryID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>ContactMade</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>ContactMadeDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ContactType</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Covers</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>EventDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>EventEndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ExpectedRevenue</td><td>String</td><td></td><td>False</td></tr><tr><td>FeedbackID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>FollowUpDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>FollowUpReminderNote</td><td>String</td><td></td><td>False</td></tr><tr><td>IsAppointmentShow</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsAppReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsFollowUpReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsWalkIn</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>LocationID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>MembershipType</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Notes</td><td>String</td><td></td><td>False</td></tr><tr><td>PipelineStageID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>POSRevenue</td><td>String</td><td></td><td>False</td></tr><tr><td>PostSalescallDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>PriorityID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Products</td><td>List&lt;ProductLead&gt;</td><td></td><td>False</td></tr><tr><td>ProvisionalEndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ProvisionalEventDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>StatusID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SubSourceID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SurveyOpCode</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SurveyResponseID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>VisitDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>ProductLead Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>Discount</td><td>Single</td><td></td><td>False</td></tr><tr><td>Estimate</td><td>Single</td><td></td><td>False</td></tr><tr><td>FullName</td><td>String</td><td></td><td>False</td></tr><tr><td>GrossCost</td><td>Single</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LongDescription</td><td>String</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>Picture</td><td>String</td><td></td><td>False</td></tr><tr><td>ProductID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Quantity</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>QuantityEstimate</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Total</td><td>Single</td><td></td><td>False</td></tr><tr><td>TotalPrice</td><td>Single</td><td></td><td>False</td></tr><tr><td>UnitPrice</td><td>Single</td><td></td><td>False</td></tr><tr><td>URD</td><td>DateTime</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostSLPOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>ProjectID</td><td>Int32</td><td>ID of the new project</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"ProjectID\": 2,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"8ea3adfa-fa0d-4968-a996-e7ca5c576bf5"},{"name":"Post","id":"6baa525f-33d7-4d61-b925-d7adfa4c1c19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CpyID\": 1,\r\n  \"CtcID\": 2,\r\n  \"FullName\": \"sample string 3\",\r\n  \"LocationID\": 4,\r\n  \"SourceID\": 5,\r\n  \"StatusID\": 6,\r\n  \"PriorityID\": 7,\r\n  \"ProductIDs\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"Value\": 1.1,\r\n  \"CategoryID\": 8,\r\n  \"SubCategoryID\": 9,\r\n  \"LeadSource\": \"sample string 10\",\r\n  \"SurveyOpCode\": 1,\r\n  \"SurveyResponseID\": 1,\r\n  \"Notes\": \"sample string 11\",\r\n  \"NotesTime\": \"sample string 12\",\r\n  \"AdminNotes\": \"sample string 13\",\r\n  \"AdminNotesTime\": \"sample string 14\",\r\n  \"CtcComment\": \"sample string 15\",\r\n  \"SaleCancelled\": true,\r\n  \"FeedbackID\": 17,\r\n  \"MembershipType\": 1,\r\n  \"FollowUpDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"ContactMade\": true,\r\n  \"ContactMadeDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"IsWalkIn\": true,\r\n  \"EventDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"EventEndDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"ProvisionalEventDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"ProvisionalEndDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"PostSalescallDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"AppDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"Products\": [\r\n    {\r\n      \"<ProductID>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 2,\r\n      \"<LeadID>k__BackingField\": 3,\r\n      \"<UnitPrice>k__BackingField\": 4.1,\r\n      \"<Discount>k__BackingField\": 5.1,\r\n      \"<Total>k__BackingField\": 6.1,\r\n      \"<FullName>k__BackingField\": \"sample string 7\",\r\n      \"<Description>k__BackingField\": \"sample string 8\",\r\n      \"<Quantity>k__BackingField\": 1,\r\n      \"<QuantityEstimate>k__BackingField\": 9,\r\n      \"<Estimate>k__BackingField\": 10.1,\r\n      \"<GrossCost>k__BackingField\": 11.1,\r\n      \"<TotalPrice>k__BackingField\": 12.1,\r\n      \"<CtcID>k__BackingField\": 13,\r\n      \"<URD>k__BackingField\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n      \"<ModifiedBy>k__BackingField\": \"sample string 15\",\r\n      \"<Picture>k__BackingField\": \"sample string 16\",\r\n      \"<LongDescription>k__BackingField\": \"sample string 17\"\r\n    },\r\n    {\r\n      \"<ProductID>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 2,\r\n      \"<LeadID>k__BackingField\": 3,\r\n      \"<UnitPrice>k__BackingField\": 4.1,\r\n      \"<Discount>k__BackingField\": 5.1,\r\n      \"<Total>k__BackingField\": 6.1,\r\n      \"<FullName>k__BackingField\": \"sample string 7\",\r\n      \"<Description>k__BackingField\": \"sample string 8\",\r\n      \"<Quantity>k__BackingField\": 1,\r\n      \"<QuantityEstimate>k__BackingField\": 9,\r\n      \"<Estimate>k__BackingField\": 10.1,\r\n      \"<GrossCost>k__BackingField\": 11.1,\r\n      \"<TotalPrice>k__BackingField\": 12.1,\r\n      \"<CtcID>k__BackingField\": 13,\r\n      \"<URD>k__BackingField\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n      \"<ModifiedBy>k__BackingField\": \"sample string 15\",\r\n      \"<Picture>k__BackingField\": \"sample string 16\",\r\n      \"<LongDescription>k__BackingField\": \"sample string 17\"\r\n    }\r\n  ],\r\n  \"CorporateID\": 1,\r\n  \"IsAppReminder\": true,\r\n  \"AppReminderNote\": \"sample string 20\",\r\n  \"IsFollowUpReminder\": true,\r\n  \"FollowUpReminderNote\": \"sample string 21\",\r\n  \"ContactType\": 22,\r\n  \"POSRevenue\": \"sample string 23\",\r\n  \"IsAppointmentShow\": true,\r\n  \"IsClaimed\": true,\r\n  \"EcastOpCode\": 1,\r\n  \"AppID\": 1,\r\n  \"FollowUpID\": 1,\r\n  \"BrandID\": 1,\r\n  \"BookingID\": \"sample string 25\",\r\n  \"CollinsStatus\": \"sample string 26\",\r\n  \"Covers\": 1,\r\n  \"VisitDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"BookingTypeID\": \"sample string 27\",\r\n  \"SubSourceID\": 1,\r\n  \"Budget\": \"sample string 28\",\r\n  \"BookingReference\": \"sample string 29\",\r\n  \"ExpectedRevenue\": \"sample string 30\",\r\n  \"PipelineStageID\": 31,\r\n  \"BookingStatus\": \"sample string 32\",\r\n  \"UserID\": 33\r\n}"},"url":"https://{{Host}}/api/SalesLeads/Post","description":" <p>\n            The Post.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>PostLeadsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdminNotes</td><td>String</td><td></td><td>False</td></tr><tr><td>AdminNotesTime</td><td>String</td><td></td><td>False</td></tr><tr><td>AppDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>AppID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>AppReminderNote</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingID</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingReference</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingTypeID</td><td>String</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Budget</td><td>String</td><td></td><td>False</td></tr><tr><td>CategoryID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CollinsStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>ContactMade</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ContactMadeDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ContactType</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Covers</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CtcComment</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EcastOpCode</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>EventDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>EventEndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ExpectedRevenue</td><td>String</td><td></td><td>False</td></tr><tr><td>FeedbackID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>FollowUpDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>FollowUpID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>FollowUpReminderNote</td><td>String</td><td></td><td>False</td></tr><tr><td>FullName</td><td>String</td><td></td><td>False</td></tr><tr><td>IsAppointmentShow</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsAppReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsClaimed</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFollowUpReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsWalkIn</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>LeadSource</td><td>String</td><td></td><td>False</td></tr><tr><td>LocationID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MembershipType</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Notes</td><td>String</td><td></td><td>False</td></tr><tr><td>NotesTime</td><td>String</td><td></td><td>False</td></tr><tr><td>PipelineStageID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>POSRevenue</td><td>String</td><td></td><td>False</td></tr><tr><td>PostSalescallDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>PriorityID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>ProductIDs</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Products</td><td>List&lt;ProductLead&gt;</td><td></td><td>False</td></tr><tr><td>ProvisionalEndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ProvisionalEventDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>SaleCancelled</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>StatusID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubSourceID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SurveyOpCode</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SurveyResponseID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Value</td><td>Single (nullable)</td><td></td><td>False</td></tr><tr><td>VisitDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td><h4>ProductLead Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>Discount</td><td>Single</td><td></td><td>False</td></tr><tr><td>Estimate</td><td>Single</td><td></td><td>False</td></tr><tr><td>FullName</td><td>String</td><td></td><td>False</td></tr><tr><td>GrossCost</td><td>Single</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LongDescription</td><td>String</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>Picture</td><td>String</td><td></td><td>False</td></tr><tr><td>ProductID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Quantity</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>QuantityEstimate</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Total</td><td>Single</td><td></td><td>False</td></tr><tr><td>TotalPrice</td><td>Single</td><td></td><td>False</td></tr><tr><td>UnitPrice</td><td>Single</td><td></td><td>False</td></tr><tr><td>URD</td><td>DateTime</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostSLPOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>ProjectID</td><td>Int32</td><td>ID of the new project</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","SalesLeads","Post"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"2978d161-d5b1-496b-8bbd-7b3f368e6c4d","name":"api/SalesLeads/Post Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CpyID\": 1,\r\n  \"CtcID\": 2,\r\n  \"FullName\": \"sample string 3\",\r\n  \"LocationID\": 4,\r\n  \"SourceID\": 5,\r\n  \"StatusID\": 6,\r\n  \"PriorityID\": 7,\r\n  \"ProductIDs\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"Value\": 1.1,\r\n  \"CategoryID\": 8,\r\n  \"SubCategoryID\": 9,\r\n  \"LeadSource\": \"sample string 10\",\r\n  \"SurveyOpCode\": 1,\r\n  \"SurveyResponseID\": 1,\r\n  \"Notes\": \"sample string 11\",\r\n  \"NotesTime\": \"sample string 12\",\r\n  \"AdminNotes\": \"sample string 13\",\r\n  \"AdminNotesTime\": \"sample string 14\",\r\n  \"CtcComment\": \"sample string 15\",\r\n  \"SaleCancelled\": true,\r\n  \"FeedbackID\": 17,\r\n  \"MembershipType\": 1,\r\n  \"FollowUpDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"ContactMade\": true,\r\n  \"ContactMadeDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"IsWalkIn\": true,\r\n  \"EventDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"EventEndDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"ProvisionalEventDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"ProvisionalEndDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"PostSalescallDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"AppDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"Products\": [\r\n    {\r\n      \"<ProductID>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 2,\r\n      \"<LeadID>k__BackingField\": 3,\r\n      \"<UnitPrice>k__BackingField\": 4.1,\r\n      \"<Discount>k__BackingField\": 5.1,\r\n      \"<Total>k__BackingField\": 6.1,\r\n      \"<FullName>k__BackingField\": \"sample string 7\",\r\n      \"<Description>k__BackingField\": \"sample string 8\",\r\n      \"<Quantity>k__BackingField\": 1,\r\n      \"<QuantityEstimate>k__BackingField\": 9,\r\n      \"<Estimate>k__BackingField\": 10.1,\r\n      \"<GrossCost>k__BackingField\": 11.1,\r\n      \"<TotalPrice>k__BackingField\": 12.1,\r\n      \"<CtcID>k__BackingField\": 13,\r\n      \"<URD>k__BackingField\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n      \"<ModifiedBy>k__BackingField\": \"sample string 15\",\r\n      \"<Picture>k__BackingField\": \"sample string 16\",\r\n      \"<LongDescription>k__BackingField\": \"sample string 17\"\r\n    },\r\n    {\r\n      \"<ProductID>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 2,\r\n      \"<LeadID>k__BackingField\": 3,\r\n      \"<UnitPrice>k__BackingField\": 4.1,\r\n      \"<Discount>k__BackingField\": 5.1,\r\n      \"<Total>k__BackingField\": 6.1,\r\n      \"<FullName>k__BackingField\": \"sample string 7\",\r\n      \"<Description>k__BackingField\": \"sample string 8\",\r\n      \"<Quantity>k__BackingField\": 1,\r\n      \"<QuantityEstimate>k__BackingField\": 9,\r\n      \"<Estimate>k__BackingField\": 10.1,\r\n      \"<GrossCost>k__BackingField\": 11.1,\r\n      \"<TotalPrice>k__BackingField\": 12.1,\r\n      \"<CtcID>k__BackingField\": 13,\r\n      \"<URD>k__BackingField\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n      \"<ModifiedBy>k__BackingField\": \"sample string 15\",\r\n      \"<Picture>k__BackingField\": \"sample string 16\",\r\n      \"<LongDescription>k__BackingField\": \"sample string 17\"\r\n    }\r\n  ],\r\n  \"CorporateID\": 1,\r\n  \"IsAppReminder\": true,\r\n  \"AppReminderNote\": \"sample string 20\",\r\n  \"IsFollowUpReminder\": true,\r\n  \"FollowUpReminderNote\": \"sample string 21\",\r\n  \"ContactType\": 22,\r\n  \"POSRevenue\": \"sample string 23\",\r\n  \"IsAppointmentShow\": true,\r\n  \"IsClaimed\": true,\r\n  \"EcastOpCode\": 1,\r\n  \"AppID\": 1,\r\n  \"FollowUpID\": 1,\r\n  \"BrandID\": 1,\r\n  \"BookingID\": \"sample string 25\",\r\n  \"CollinsStatus\": \"sample string 26\",\r\n  \"Covers\": 1,\r\n  \"VisitDate\": \"2026-03-25T07:30:09.8588814+00:00\",\r\n  \"BookingTypeID\": \"sample string 27\",\r\n  \"SubSourceID\": 1,\r\n  \"Budget\": \"sample string 28\",\r\n  \"BookingReference\": \"sample string 29\",\r\n  \"ExpectedRevenue\": \"sample string 30\",\r\n  \"PipelineStageID\": 31,\r\n  \"BookingStatus\": \"sample string 32\",\r\n  \"UserID\": 33\r\n}"},"url":"https://{{Host}}/api/SalesLeads/Post","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            The Post.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PostLeadsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdminNotes</td><td>String</td><td></td><td>False</td></tr><tr><td>AdminNotesTime</td><td>String</td><td></td><td>False</td></tr><tr><td>AppDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>AppID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>AppReminderNote</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingID</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingReference</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingTypeID</td><td>String</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Budget</td><td>String</td><td></td><td>False</td></tr><tr><td>CategoryID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CollinsStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>ContactMade</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ContactMadeDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ContactType</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Covers</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CtcComment</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EcastOpCode</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>EventDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>EventEndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ExpectedRevenue</td><td>String</td><td></td><td>False</td></tr><tr><td>FeedbackID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>FollowUpDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>FollowUpID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>FollowUpReminderNote</td><td>String</td><td></td><td>False</td></tr><tr><td>FullName</td><td>String</td><td></td><td>False</td></tr><tr><td>IsAppointmentShow</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsAppReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsClaimed</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFollowUpReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsWalkIn</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>LeadSource</td><td>String</td><td></td><td>False</td></tr><tr><td>LocationID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MembershipType</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Notes</td><td>String</td><td></td><td>False</td></tr><tr><td>NotesTime</td><td>String</td><td></td><td>False</td></tr><tr><td>PipelineStageID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>POSRevenue</td><td>String</td><td></td><td>False</td></tr><tr><td>PostSalescallDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>PriorityID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>ProductIDs</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Products</td><td>List&lt;ProductLead&gt;</td><td></td><td>False</td></tr><tr><td>ProvisionalEndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ProvisionalEventDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>SaleCancelled</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>StatusID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubSourceID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SurveyOpCode</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SurveyResponseID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Value</td><td>Single (nullable)</td><td></td><td>False</td></tr><tr><td>VisitDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>ProductLead Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>Discount</td><td>Single</td><td></td><td>False</td></tr><tr><td>Estimate</td><td>Single</td><td></td><td>False</td></tr><tr><td>FullName</td><td>String</td><td></td><td>False</td></tr><tr><td>GrossCost</td><td>Single</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LongDescription</td><td>String</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>Picture</td><td>String</td><td></td><td>False</td></tr><tr><td>ProductID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Quantity</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>QuantityEstimate</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Total</td><td>Single</td><td></td><td>False</td></tr><tr><td>TotalPrice</td><td>Single</td><td></td><td>False</td></tr><tr><td>UnitPrice</td><td>Single</td><td></td><td>False</td></tr><tr><td>URD</td><td>DateTime</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostSLPOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>ProjectID</td><td>Int32</td><td>ID of the new project</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"ProjectID\": 2,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"6baa525f-33d7-4d61-b925-d7adfa4c1c19"},{"name":"Put","id":"2fd160e5-3f53-4ba5-ba32-b4feee086973","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"LeadID\": 1,\r\n  \"IsAddAppointment\": true,\r\n  \"IsAddFollowUp\": true,\r\n  \"UpdatedByBooking\": true,\r\n  \"CpyID\": 5,\r\n  \"CtcID\": 6,\r\n  \"FullName\": \"sample string 7\",\r\n  \"LocationID\": 8,\r\n  \"SourceID\": 9,\r\n  \"StatusID\": 10,\r\n  \"PriorityID\": 11,\r\n  \"ProductIDs\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"Value\": 1.1,\r\n  \"CategoryID\": 12,\r\n  \"SubCategoryID\": 13,\r\n  \"LeadSource\": \"sample string 14\",\r\n  \"SurveyOpCode\": 1,\r\n  \"SurveyResponseID\": 1,\r\n  \"Notes\": \"sample string 15\",\r\n  \"NotesTime\": \"sample string 16\",\r\n  \"AdminNotes\": \"sample string 17\",\r\n  \"AdminNotesTime\": \"sample string 18\",\r\n  \"CtcComment\": \"sample string 19\",\r\n  \"SaleCancelled\": true,\r\n  \"FeedbackID\": 21,\r\n  \"MembershipType\": 1,\r\n  \"FollowUpDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"ContactMade\": true,\r\n  \"ContactMadeDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"IsWalkIn\": true,\r\n  \"EventDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"EventEndDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"ProvisionalEventDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"ProvisionalEndDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"PostSalescallDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"AppDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"Products\": [\r\n    {\r\n      \"<ProductID>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 2,\r\n      \"<LeadID>k__BackingField\": 3,\r\n      \"<UnitPrice>k__BackingField\": 4.1,\r\n      \"<Discount>k__BackingField\": 5.1,\r\n      \"<Total>k__BackingField\": 6.1,\r\n      \"<FullName>k__BackingField\": \"sample string 7\",\r\n      \"<Description>k__BackingField\": \"sample string 8\",\r\n      \"<Quantity>k__BackingField\": 1,\r\n      \"<QuantityEstimate>k__BackingField\": 9,\r\n      \"<Estimate>k__BackingField\": 10.1,\r\n      \"<GrossCost>k__BackingField\": 11.1,\r\n      \"<TotalPrice>k__BackingField\": 12.1,\r\n      \"<CtcID>k__BackingField\": 13,\r\n      \"<URD>k__BackingField\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n      \"<ModifiedBy>k__BackingField\": \"sample string 15\",\r\n      \"<Picture>k__BackingField\": \"sample string 16\",\r\n      \"<LongDescription>k__BackingField\": \"sample string 17\"\r\n    },\r\n    {\r\n      \"<ProductID>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 2,\r\n      \"<LeadID>k__BackingField\": 3,\r\n      \"<UnitPrice>k__BackingField\": 4.1,\r\n      \"<Discount>k__BackingField\": 5.1,\r\n      \"<Total>k__BackingField\": 6.1,\r\n      \"<FullName>k__BackingField\": \"sample string 7\",\r\n      \"<Description>k__BackingField\": \"sample string 8\",\r\n      \"<Quantity>k__BackingField\": 1,\r\n      \"<QuantityEstimate>k__BackingField\": 9,\r\n      \"<Estimate>k__BackingField\": 10.1,\r\n      \"<GrossCost>k__BackingField\": 11.1,\r\n      \"<TotalPrice>k__BackingField\": 12.1,\r\n      \"<CtcID>k__BackingField\": 13,\r\n      \"<URD>k__BackingField\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n      \"<ModifiedBy>k__BackingField\": \"sample string 15\",\r\n      \"<Picture>k__BackingField\": \"sample string 16\",\r\n      \"<LongDescription>k__BackingField\": \"sample string 17\"\r\n    }\r\n  ],\r\n  \"CorporateID\": 1,\r\n  \"IsAppReminder\": true,\r\n  \"AppReminderNote\": \"sample string 24\",\r\n  \"IsFollowUpReminder\": true,\r\n  \"FollowUpReminderNote\": \"sample string 25\",\r\n  \"ContactType\": 26,\r\n  \"POSRevenue\": \"sample string 27\",\r\n  \"IsAppointmentShow\": true,\r\n  \"IsClaimed\": true,\r\n  \"EcastOpCode\": 1,\r\n  \"AppID\": 1,\r\n  \"FollowUpID\": 1,\r\n  \"BrandID\": 1,\r\n  \"BookingID\": \"sample string 29\",\r\n  \"CollinsStatus\": \"sample string 30\",\r\n  \"Covers\": 1,\r\n  \"VisitDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"BookingTypeID\": \"sample string 31\",\r\n  \"SubSourceID\": 1,\r\n  \"Budget\": \"sample string 32\",\r\n  \"BookingReference\": \"sample string 33\",\r\n  \"ExpectedRevenue\": \"sample string 34\",\r\n  \"PipelineStageID\": 35,\r\n  \"BookingStatus\": \"sample string 36\",\r\n  \"UserID\": 37\r\n}"},"url":"https://{{Host}}/api/SalesLeads/Put","description":" <p>\n            The Put.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>PutLeadsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdminNotes</td><td>String</td><td></td><td>False</td></tr><tr><td>AdminNotesTime</td><td>String</td><td></td><td>False</td></tr><tr><td>AppDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>AppID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>AppReminderNote</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingID</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingReference</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingTypeID</td><td>String</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Budget</td><td>String</td><td></td><td>False</td></tr><tr><td>CategoryID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CollinsStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>ContactMade</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ContactMadeDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ContactType</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Covers</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CtcComment</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EcastOpCode</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>EventDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>EventEndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ExpectedRevenue</td><td>String</td><td></td><td>False</td></tr><tr><td>FeedbackID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>FollowUpDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>FollowUpID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>FollowUpReminderNote</td><td>String</td><td></td><td>False</td></tr><tr><td>FullName</td><td>String</td><td></td><td>False</td></tr><tr><td>IsAddAppointment</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsAddFollowUp</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsAppointmentShow</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsAppReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsClaimed</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFollowUpReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsWalkIn</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LeadSource</td><td>String</td><td></td><td>False</td></tr><tr><td>LocationID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MembershipType</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Notes</td><td>String</td><td></td><td>False</td></tr><tr><td>NotesTime</td><td>String</td><td></td><td>False</td></tr><tr><td>PipelineStageID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>POSRevenue</td><td>String</td><td></td><td>False</td></tr><tr><td>PostSalescallDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>PriorityID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>ProductIDs</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Products</td><td>List&lt;ProductLead&gt;</td><td></td><td>False</td></tr><tr><td>ProvisionalEndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ProvisionalEventDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>SaleCancelled</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>StatusID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubSourceID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SurveyOpCode</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SurveyResponseID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>UpdatedByBooking</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Value</td><td>Single (nullable)</td><td></td><td>False</td></tr><tr><td>VisitDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td><h4>ProductLead Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>Discount</td><td>Single</td><td></td><td>False</td></tr><tr><td>Estimate</td><td>Single</td><td></td><td>False</td></tr><tr><td>FullName</td><td>String</td><td></td><td>False</td></tr><tr><td>GrossCost</td><td>Single</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LongDescription</td><td>String</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>Picture</td><td>String</td><td></td><td>False</td></tr><tr><td>ProductID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Quantity</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>QuantityEstimate</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Total</td><td>Single</td><td></td><td>False</td></tr><tr><td>TotalPrice</td><td>Single</td><td></td><td>False</td></tr><tr><td>UnitPrice</td><td>Single</td><td></td><td>False</td></tr><tr><td>URD</td><td>DateTime</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostSLPOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>ProjectID</td><td>Int32</td><td>ID of the new project</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","SalesLeads","Put"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"048dac46-2147-4226-b8bf-e17022efe92b","name":"api/SalesLeads/Put Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"LeadID\": 1,\r\n  \"IsAddAppointment\": true,\r\n  \"IsAddFollowUp\": true,\r\n  \"UpdatedByBooking\": true,\r\n  \"CpyID\": 5,\r\n  \"CtcID\": 6,\r\n  \"FullName\": \"sample string 7\",\r\n  \"LocationID\": 8,\r\n  \"SourceID\": 9,\r\n  \"StatusID\": 10,\r\n  \"PriorityID\": 11,\r\n  \"ProductIDs\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"Value\": 1.1,\r\n  \"CategoryID\": 12,\r\n  \"SubCategoryID\": 13,\r\n  \"LeadSource\": \"sample string 14\",\r\n  \"SurveyOpCode\": 1,\r\n  \"SurveyResponseID\": 1,\r\n  \"Notes\": \"sample string 15\",\r\n  \"NotesTime\": \"sample string 16\",\r\n  \"AdminNotes\": \"sample string 17\",\r\n  \"AdminNotesTime\": \"sample string 18\",\r\n  \"CtcComment\": \"sample string 19\",\r\n  \"SaleCancelled\": true,\r\n  \"FeedbackID\": 21,\r\n  \"MembershipType\": 1,\r\n  \"FollowUpDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"ContactMade\": true,\r\n  \"ContactMadeDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"IsWalkIn\": true,\r\n  \"EventDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"EventEndDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"ProvisionalEventDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"ProvisionalEndDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"PostSalescallDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"AppDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"Products\": [\r\n    {\r\n      \"<ProductID>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 2,\r\n      \"<LeadID>k__BackingField\": 3,\r\n      \"<UnitPrice>k__BackingField\": 4.1,\r\n      \"<Discount>k__BackingField\": 5.1,\r\n      \"<Total>k__BackingField\": 6.1,\r\n      \"<FullName>k__BackingField\": \"sample string 7\",\r\n      \"<Description>k__BackingField\": \"sample string 8\",\r\n      \"<Quantity>k__BackingField\": 1,\r\n      \"<QuantityEstimate>k__BackingField\": 9,\r\n      \"<Estimate>k__BackingField\": 10.1,\r\n      \"<GrossCost>k__BackingField\": 11.1,\r\n      \"<TotalPrice>k__BackingField\": 12.1,\r\n      \"<CtcID>k__BackingField\": 13,\r\n      \"<URD>k__BackingField\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n      \"<ModifiedBy>k__BackingField\": \"sample string 15\",\r\n      \"<Picture>k__BackingField\": \"sample string 16\",\r\n      \"<LongDescription>k__BackingField\": \"sample string 17\"\r\n    },\r\n    {\r\n      \"<ProductID>k__BackingField\": 1,\r\n      \"<ID>k__BackingField\": 2,\r\n      \"<LeadID>k__BackingField\": 3,\r\n      \"<UnitPrice>k__BackingField\": 4.1,\r\n      \"<Discount>k__BackingField\": 5.1,\r\n      \"<Total>k__BackingField\": 6.1,\r\n      \"<FullName>k__BackingField\": \"sample string 7\",\r\n      \"<Description>k__BackingField\": \"sample string 8\",\r\n      \"<Quantity>k__BackingField\": 1,\r\n      \"<QuantityEstimate>k__BackingField\": 9,\r\n      \"<Estimate>k__BackingField\": 10.1,\r\n      \"<GrossCost>k__BackingField\": 11.1,\r\n      \"<TotalPrice>k__BackingField\": 12.1,\r\n      \"<CtcID>k__BackingField\": 13,\r\n      \"<URD>k__BackingField\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n      \"<ModifiedBy>k__BackingField\": \"sample string 15\",\r\n      \"<Picture>k__BackingField\": \"sample string 16\",\r\n      \"<LongDescription>k__BackingField\": \"sample string 17\"\r\n    }\r\n  ],\r\n  \"CorporateID\": 1,\r\n  \"IsAppReminder\": true,\r\n  \"AppReminderNote\": \"sample string 24\",\r\n  \"IsFollowUpReminder\": true,\r\n  \"FollowUpReminderNote\": \"sample string 25\",\r\n  \"ContactType\": 26,\r\n  \"POSRevenue\": \"sample string 27\",\r\n  \"IsAppointmentShow\": true,\r\n  \"IsClaimed\": true,\r\n  \"EcastOpCode\": 1,\r\n  \"AppID\": 1,\r\n  \"FollowUpID\": 1,\r\n  \"BrandID\": 1,\r\n  \"BookingID\": \"sample string 29\",\r\n  \"CollinsStatus\": \"sample string 30\",\r\n  \"Covers\": 1,\r\n  \"VisitDate\": \"2026-03-25T07:30:09.9213683+00:00\",\r\n  \"BookingTypeID\": \"sample string 31\",\r\n  \"SubSourceID\": 1,\r\n  \"Budget\": \"sample string 32\",\r\n  \"BookingReference\": \"sample string 33\",\r\n  \"ExpectedRevenue\": \"sample string 34\",\r\n  \"PipelineStageID\": 35,\r\n  \"BookingStatus\": \"sample string 36\",\r\n  \"UserID\": 37\r\n}"},"url":"https://{{Host}}/api/SalesLeads/Put","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            The Put.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PutLeadsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdminNotes</td><td>String</td><td></td><td>False</td></tr><tr><td>AdminNotesTime</td><td>String</td><td></td><td>False</td></tr><tr><td>AppDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>AppID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>AppReminderNote</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingID</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingReference</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingTypeID</td><td>String</td><td></td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Budget</td><td>String</td><td></td><td>False</td></tr><tr><td>CategoryID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CollinsStatus</td><td>String</td><td></td><td>False</td></tr><tr><td>ContactMade</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ContactMadeDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ContactType</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Covers</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CtcComment</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EcastOpCode</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>EventDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>EventEndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ExpectedRevenue</td><td>String</td><td></td><td>False</td></tr><tr><td>FeedbackID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>FollowUpDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>FollowUpID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>FollowUpReminderNote</td><td>String</td><td></td><td>False</td></tr><tr><td>FullName</td><td>String</td><td></td><td>False</td></tr><tr><td>IsAddAppointment</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsAddFollowUp</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsAppointmentShow</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsAppReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsClaimed</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFollowUpReminder</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsWalkIn</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LeadSource</td><td>String</td><td></td><td>False</td></tr><tr><td>LocationID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MembershipType</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Notes</td><td>String</td><td></td><td>False</td></tr><tr><td>NotesTime</td><td>String</td><td></td><td>False</td></tr><tr><td>PipelineStageID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>POSRevenue</td><td>String</td><td></td><td>False</td></tr><tr><td>PostSalescallDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>PriorityID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>ProductIDs</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Products</td><td>List&lt;ProductLead&gt;</td><td></td><td>False</td></tr><tr><td>ProvisionalEndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ProvisionalEventDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>SaleCancelled</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>StatusID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubSourceID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SurveyOpCode</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SurveyResponseID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>UpdatedByBooking</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Value</td><td>Single (nullable)</td><td></td><td>False</td></tr><tr><td>VisitDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>ProductLead Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>Discount</td><td>Single</td><td></td><td>False</td></tr><tr><td>Estimate</td><td>Single</td><td></td><td>False</td></tr><tr><td>FullName</td><td>String</td><td></td><td>False</td></tr><tr><td>GrossCost</td><td>Single</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LongDescription</td><td>String</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>Picture</td><td>String</td><td></td><td>False</td></tr><tr><td>ProductID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Quantity</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>QuantityEstimate</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Total</td><td>Single</td><td></td><td>False</td></tr><tr><td>TotalPrice</td><td>Single</td><td></td><td>False</td></tr><tr><td>UnitPrice</td><td>Single</td><td></td><td>False</td></tr><tr><td>URD</td><td>DateTime</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostSLPOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>ProjectID</td><td>Int32</td><td>ID of the new project</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"ProjectID\": 2,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"2fd160e5-3f53-4ba5-ba32-b4feee086973"},{"name":"UpdateLeadByBooking","id":"8938ab95-0a5d-4440-bc2d-8e489df914da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"LeadID\": 1,\r\n  \"CtcID\": 2,\r\n  \"CollinsLocationID\": \"sample string 3\",\r\n  \"Status\": \"sample string 4\",\r\n  \"BookingID\": \"sample string 5\",\r\n  \"BookingTypeName\": \"sample string 6\",\r\n  \"BookingTypeID\": \"sample string 7\",\r\n  \"Covers\": 8,\r\n  \"VisitDate\": \"2026-03-25T07:30:09.9682502+00:00\",\r\n  \"Partner_source\": \"sample string 10\",\r\n  \"BookingReference\": \"sample string 11\",\r\n  \"Notes\": \"sample string 12\",\r\n  \"NotesTime\": \"sample string 13\",\r\n  \"AdminNotes\": \"sample string 14\",\r\n  \"AdminNotesTime\": \"sample string 15\",\r\n  \"CtcComment\": \"sample string 16\",\r\n  \"Budget\": \"sample string 17\"\r\n}"},"url":"https://{{Host}}/api/SalesLeads/UpdateLeadByBooking","description":" <p>\n            The UpdateLeadByBooking.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>LeadBookingInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdminNotes</td><td>String</td><td></td><td>False</td></tr><tr><td>AdminNotesTime</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingID</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingReference</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingTypeID</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingTypeName</td><td>String</td><td></td><td>False</td></tr><tr><td>Budget</td><td>String</td><td></td><td>False</td></tr><tr><td>CollinsLocationID</td><td>String</td><td></td><td>False</td></tr><tr><td>Covers</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CtcComment</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Notes</td><td>String</td><td></td><td>False</td></tr><tr><td>NotesTime</td><td>String</td><td></td><td>False</td></tr><tr><td>Partner_source</td><td>String</td><td></td><td>False</td></tr><tr><td>Status</td><td>String</td><td></td><td>False</td></tr><tr><td>VisitDate</td><td>DateTime</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostSLPOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>ProjectID</td><td>Int32</td><td>ID of the new project</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","SalesLeads","UpdateLeadByBooking"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"38cdabee-ec3a-4ad1-8195-b2db848d3736","name":"api/SalesLeads/UpdateLeadByBooking Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"LeadID\": 1,\r\n  \"CtcID\": 2,\r\n  \"CollinsLocationID\": \"sample string 3\",\r\n  \"Status\": \"sample string 4\",\r\n  \"BookingID\": \"sample string 5\",\r\n  \"BookingTypeName\": \"sample string 6\",\r\n  \"BookingTypeID\": \"sample string 7\",\r\n  \"Covers\": 8,\r\n  \"VisitDate\": \"2026-03-25T07:30:09.9682502+00:00\",\r\n  \"Partner_source\": \"sample string 10\",\r\n  \"BookingReference\": \"sample string 11\",\r\n  \"Notes\": \"sample string 12\",\r\n  \"NotesTime\": \"sample string 13\",\r\n  \"AdminNotes\": \"sample string 14\",\r\n  \"AdminNotesTime\": \"sample string 15\",\r\n  \"CtcComment\": \"sample string 16\",\r\n  \"Budget\": \"sample string 17\"\r\n}"},"url":"https://{{Host}}/api/SalesLeads/UpdateLeadByBooking","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            The UpdateLeadByBooking.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>LeadBookingInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdminNotes</td><td>String</td><td></td><td>False</td></tr><tr><td>AdminNotesTime</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingID</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingReference</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingTypeID</td><td>String</td><td></td><td>False</td></tr><tr><td>BookingTypeName</td><td>String</td><td></td><td>False</td></tr><tr><td>Budget</td><td>String</td><td></td><td>False</td></tr><tr><td>CollinsLocationID</td><td>String</td><td></td><td>False</td></tr><tr><td>Covers</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CtcComment</td><td>String</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LeadID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Notes</td><td>String</td><td></td><td>False</td></tr><tr><td>NotesTime</td><td>String</td><td></td><td>False</td></tr><tr><td>Partner_source</td><td>String</td><td></td><td>False</td></tr><tr><td>Status</td><td>String</td><td></td><td>False</td></tr><tr><td>VisitDate</td><td>DateTime</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostSLPOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>ProjectID</td><td>Int32</td><td>ID of the new project</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"ProjectID\": 2,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"8938ab95-0a5d-4440-bc2d-8e489df914da"}],"id":"4185eb26-bffd-4d46-a7b9-acef06296b42","description":"<p>Api Methods for SalesLeads</p>\n","_postman_id":"4185eb26-bffd-4d46-a7b9-acef06296b42"},{"name":"Selection","item":[{"name":"GetCubeSelection","id":"074aa812-8fbf-463f-a8d7-b5879fa33f4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SelectionID\": 1,\r\n  \"UserID\": 2\r\n}"},"url":"https://{{Host}}/api/Selection/GetCubeSelection","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>GetCubeSelectionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>SelectionID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>GetCubeSelectionOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>Result</td><td>CubeSelection</td><td>The IDs belongs in this selection</td></tr><tr><td>SelectionCount</td><td>Int32</td><td></td></tr><tr><td><h4>CubeSelection Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CritID</td><td>Int32</td><td></td></tr><tr><td>CritSQL</td><td>String</td><td></td></tr><tr><td>CritSQL222</td><td>String</td><td></td></tr><tr><td>CritType</td><td>CritTypes</td><td></td></tr><tr><td>ExtensionData</td><td>ExtensionDataObject</td><td></td></tr><tr><td>ItemID</td><td>Int32</td><td></td></tr><tr><td>Items</td><td>CubeSelection[]</td><td></td></tr><tr><td>UniqueID</td><td>Int32</td><td></td></tr><tr><td><h4>CubeSelection[] Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsFixedSize</td><td>Boolean</td><td></td></tr><tr><td>IsReadOnly</td><td>Boolean</td><td></td></tr><tr><td>IsSynchronized</td><td>Boolean</td><td></td></tr><tr><td>Length</td><td>Int32</td><td></td></tr><tr><td>LongLength</td><td>Int64</td><td></td></tr><tr><td>Rank</td><td>Int32</td><td></td></tr><tr><td>SyncRoot</td><td>Object</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Selection","GetCubeSelection"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"683d3e6e-3b92-4c27-a017-26243a82e932","name":"api/Selection/GetCubeSelection Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SelectionID\": 1,\r\n  \"UserID\": 2\r\n}"},"url":"https://{{Host}}/api/Selection/GetCubeSelection","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>GetCubeSelectionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>SelectionID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetCubeSelectionOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>Result</td><td>CubeSelection</td><td>The IDs belongs in this selection</td></tr><tr><td>SelectionCount</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>CubeSelection Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CritID</td><td>Int32</td><td></td></tr><tr><td>CritSQL</td><td>String</td><td></td></tr><tr><td>CritSQL222</td><td>String</td><td></td></tr><tr><td>CritType</td><td>CritTypes</td><td></td></tr><tr><td>ExtensionData</td><td>ExtensionDataObject</td><td></td></tr><tr><td>ItemID</td><td>Int32</td><td></td></tr><tr><td>Items</td><td>CubeSelection[]</td><td></td></tr><tr><td>UniqueID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>CubeSelection[] Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsFixedSize</td><td>Boolean</td><td></td></tr><tr><td>IsReadOnly</td><td>Boolean</td><td></td></tr><tr><td>IsSynchronized</td><td>Boolean</td><td></td></tr><tr><td>Length</td><td>Int32</td><td></td></tr><tr><td>LongLength</td><td>Int64</td><td></td></tr><tr><td>Rank</td><td>Int32</td><td></td></tr><tr><td>SyncRoot</td><td>Object</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"074aa812-8fbf-463f-a8d7-b5879fa33f4b"},{"name":"GetSelectionResult","id":"df8f38cb-7b82-48b5-9835-cc91fac3fd3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SelectionID\": 1,\r\n  \"FormatID\": 2,\r\n  \"UserID\": 1,\r\n  \"IsContactSelection\": true,\r\n  \"Filter\": {\r\n    \"CriteriaID\": 1,\r\n    \"IsSelection\": true\r\n  }\r\n}"},"url":"https://{{Host}}/api/Selection/GetSelectionResult","description":" <p>\n            Get Selection result\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>GetSelectionResultInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Filter</td><td>SelectionCriteria</td><td></td><td>False</td></tr><tr><td>FormatID</td><td>Int32</td><td>The Export format ID</td><td>False</td></tr><tr><td>IsContactSelection</td><td>Boolean</td><td>The Export format ID</td><td>False</td></tr><tr><td>SelectionID</td><td>Int32</td><td>The ID of the Selection</td><td>False</td></tr><tr><td>UserID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SelectionCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CriteriaID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>IsSelection</td><td>Boolean</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>GetSelectionResultOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>Result</td><td>DataTable</td><td>The IDs belongs in this selection</td></tr></table>","urlObject":{"protocol":"https","path":["api","Selection","GetSelectionResult"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"eae0de09-1a33-4da0-bc1a-f999a85a26c6","name":"api/Selection/GetSelectionResult Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SelectionID\": 1,\r\n  \"FormatID\": 2,\r\n  \"UserID\": 1,\r\n  \"IsContactSelection\": true,\r\n  \"Filter\": {\r\n    \"CriteriaID\": 1,\r\n    \"IsSelection\": true\r\n  }\r\n}"},"url":"https://{{Host}}/api/Selection/GetSelectionResult","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Selection result\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>GetSelectionResultInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Filter</td><td>SelectionCriteria</td><td></td><td>False</td></tr><tr><td>FormatID</td><td>Int32</td><td>The Export format ID</td><td>False</td></tr><tr><td>IsContactSelection</td><td>Boolean</td><td>The Export format ID</td><td>False</td></tr><tr><td>SelectionID</td><td>Int32</td><td>The ID of the Selection</td><td>False</td></tr><tr><td>UserID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SelectionCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CriteriaID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>IsSelection</td><td>Boolean</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetSelectionResultOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>Result</td><td>DataTable</td><td>The IDs belongs in this selection</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Result\": null,\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"df8f38cb-7b82-48b5-9835-cc91fac3fd3b"},{"name":"GetSelectionResult_Ext","id":"da3230e2-1eae-4dfe-9c31-aee2aa6f022f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Selection/GetSelectionResult_Ext","description":" <p>\n            Get Selection result\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>GetSelectionResultInputExt Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Filter</td><td>SelectionCriteria</td><td></td><td>False</td></tr><tr><td>FormatID</td><td>Int32</td><td>The Export format ID</td><td>False</td></tr><tr><td>IncludeDeletedContacts</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsContactSelection</td><td>Boolean</td><td>The Export format ID</td><td>False</td></tr><tr><td>OFFSET</td><td>Int32</td><td></td><td>False</td></tr><tr><td>ReturnCountOnly</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Selection</td><td>CubeSelection</td><td>The ID of the Selection</td><td>False</td></tr><tr><td>TableName</td><td>String</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SelectionCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CriteriaID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>IsSelection</td><td>Boolean</td><td></td><td>False</td></tr><tr><td><h4>CubeSelection Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CritID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CritSQL</td><td>String</td><td></td><td>False</td></tr><tr><td>CritSQL222</td><td>String</td><td></td><td>False</td></tr><tr><td>CritType</td><td>CritTypes</td><td></td><td>False</td></tr><tr><td>ExtensionData</td><td>ExtensionDataObject</td><td></td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Items</td><td>CubeSelection[]</td><td></td><td>False</td></tr><tr><td>UniqueID</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>CubeSelection[] Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>IsFixedSize</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsReadOnly</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsSynchronized</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>Length</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LongLength</td><td>Int64</td><td></td><td>False</td></tr><tr><td>Rank</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SyncRoot</td><td>Object</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>GetSelectionResultOutput_Ext Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>Result</td><td>DataTable</td><td>The IDs belongs in this selection</td></tr><tr><td>TableName</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Selection","GetSelectionResult_Ext"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"ca87216f-1d04-4e0a-ab03-f09bd494d237","name":"api/Selection/GetSelectionResult_Ext Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Selection/GetSelectionResult_Ext","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Selection result\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>GetSelectionResultInputExt Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Filter</td><td>SelectionCriteria</td><td></td><td>False</td></tr><tr><td>FormatID</td><td>Int32</td><td>The Export format ID</td><td>False</td></tr><tr><td>IncludeDeletedContacts</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsContactSelection</td><td>Boolean</td><td>The Export format ID</td><td>False</td></tr><tr><td>OFFSET</td><td>Int32</td><td></td><td>False</td></tr><tr><td>ReturnCountOnly</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>Selection</td><td>CubeSelection</td><td>The ID of the Selection</td><td>False</td></tr><tr><td>TableName</td><td>String</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SelectionCriteria Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CriteriaID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>IsSelection</td><td>Boolean</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CubeSelection Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CritID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CritSQL</td><td>String</td><td></td><td>False</td></tr><tr><td>CritSQL222</td><td>String</td><td></td><td>False</td></tr><tr><td>CritType</td><td>CritTypes</td><td></td><td>False</td></tr><tr><td>ExtensionData</td><td>ExtensionDataObject</td><td></td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Items</td><td>CubeSelection[]</td><td></td><td>False</td></tr><tr><td>UniqueID</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CubeSelection[] Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>IsFixedSize</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsReadOnly</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsSynchronized</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>Length</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LongLength</td><td>Int64</td><td></td><td>False</td></tr><tr><td>Rank</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SyncRoot</td><td>Object</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetSelectionResultOutput_Ext Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>Result</td><td>DataTable</td><td>The IDs belongs in this selection</td></tr><tr><td>TableName</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Result\": null,\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"TableName\": \"sample string 2\"\r\n}"}],"_postman_id":"da3230e2-1eae-4dfe-9c31-aee2aa6f022f"},{"name":"GetSelectionResultWithUserFilter","id":"589abc6b-9377-4c1f-bb64-f60a18244baf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Selection/GetSelectionResultWithUserFilter","description":" <p>\n            Get Selection result\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>GetSelectionResultWithUserFilterInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FormatID</td><td>Int32</td><td>The Export format ID</td><td>False</td></tr><tr><td>IsContactSelection</td><td>Boolean</td><td>The Export format ID</td><td>False</td></tr><tr><td>Selection</td><td>CubeSelection</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>CubeSelection Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CritID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CritSQL</td><td>String</td><td></td><td>False</td></tr><tr><td>CritSQL222</td><td>String</td><td></td><td>False</td></tr><tr><td>CritType</td><td>CritTypes</td><td></td><td>False</td></tr><tr><td>ExtensionData</td><td>ExtensionDataObject</td><td></td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Items</td><td>CubeSelection[]</td><td></td><td>False</td></tr><tr><td>UniqueID</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>CubeSelection[] Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>IsFixedSize</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsReadOnly</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsSynchronized</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>Length</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LongLength</td><td>Int64</td><td></td><td>False</td></tr><tr><td>Rank</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SyncRoot</td><td>Object</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>GetSelectionResultOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>Result</td><td>DataTable</td><td>The IDs belongs in this selection</td></tr></table>","urlObject":{"protocol":"https","path":["api","Selection","GetSelectionResultWithUserFilter"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"bca162f5-4f0d-40b3-b05f-cd17ca9ece1f","name":"api/Selection/GetSelectionResultWithUserFilter Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Selection/GetSelectionResultWithUserFilter","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Selection result\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>GetSelectionResultWithUserFilterInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FormatID</td><td>Int32</td><td>The Export format ID</td><td>False</td></tr><tr><td>IsContactSelection</td><td>Boolean</td><td>The Export format ID</td><td>False</td></tr><tr><td>Selection</td><td>CubeSelection</td><td></td><td>False</td></tr><tr><td>UserID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CubeSelection Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CritID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CritSQL</td><td>String</td><td></td><td>False</td></tr><tr><td>CritSQL222</td><td>String</td><td></td><td>False</td></tr><tr><td>CritType</td><td>CritTypes</td><td></td><td>False</td></tr><tr><td>ExtensionData</td><td>ExtensionDataObject</td><td></td><td>False</td></tr><tr><td>ItemID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Items</td><td>CubeSelection[]</td><td></td><td>False</td></tr><tr><td>UniqueID</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>CubeSelection[] Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>IsFixedSize</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsReadOnly</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsSynchronized</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>Length</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LongLength</td><td>Int64</td><td></td><td>False</td></tr><tr><td>Rank</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SyncRoot</td><td>Object</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetSelectionResultOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>Result</td><td>DataTable</td><td>The IDs belongs in this selection</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Result\": null,\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"589abc6b-9377-4c1f-bb64-f60a18244baf"}],"id":"4263020d-114c-4474-8fd1-577eaedfd968","description":"<p>Api Methods for Selection</p>\n","_postman_id":"4263020d-114c-4474-8fd1-577eaedfd968"},{"name":"SmsApi","item":[{"name":"Send","id":"4b9f4f58-ccaa-4e59-8777-1887e9ae3303","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CampaignID\": 1,\r\n  \"MobileNumber\": \"sample string 2\",\r\n  \"smsContent\": \"sample string 3\",\r\n  \"CtcID\": 4\r\n}"},"url":"https://{{Host}}/api/SmsApi/Send","description":" <p>\n            Send Sms\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>SmsModel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CampaignID</td><td>Int32</td><td>CampaignID of the project</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID</td><td>False</td></tr><tr><td>MobileNumber</td><td>String</td><td>Mobile Number of the contact</td><td>False</td></tr><tr><td>smsContent</td><td>String</td><td>SMS Content</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>SmsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","SmsApi","Send"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"ea472e5a-76d9-40b2-bec1-b93aba27995c","name":"api/SmsApi/Send Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CampaignID\": 1,\r\n  \"MobileNumber\": \"sample string 2\",\r\n  \"smsContent\": \"sample string 3\",\r\n  \"CtcID\": 4\r\n}"},"url":"https://{{Host}}/api/SmsApi/Send","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Send Sms\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>SmsModel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CampaignID</td><td>Int32</td><td>CampaignID of the project</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID</td><td>False</td></tr><tr><td>MobileNumber</td><td>String</td><td>Mobile Number of the contact</td><td>False</td></tr><tr><td>smsContent</td><td>String</td><td>SMS Content</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>SmsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"4b9f4f58-ccaa-4e59-8777-1887e9ae3303"}],"id":"e44a9718-e019-40b0-8c41-e455d1051f14","description":"<p>Api Methods for SmsApi</p>\n","_postman_id":"e44a9718-e019-40b0-8c41-e455d1051f14"},{"name":"Social","item":[{"name":"ApproveSocialCampaign","id":"215f68dd-8385-4429-831a-d0f21c4c4502","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Social/ApproveSocialCampaign/:id?status=status-value&userID=userID-value&userName=userName-value&createdBy=createdBy-value&dueDate=dueDate-value&message=message-value","description":" <p>\n            Amends the status of a social campaign.\n            \n</p>","urlObject":{"protocol":"https","path":["api","Social","ApproveSocialCampaign",":id"],"host":["{{Host}}"],"query":[{"key":"status","value":"status-value"},{"key":"userID","value":"userID-value"},{"key":"userName","value":"userName-value"},{"key":"createdBy","value":"createdBy-value"},{"key":"dueDate","value":"dueDate-value"},{"key":"message","value":"message-value"}],"variable":[{"id":"f5bb174c-4a3b-4b55-beb4-b6826f7bab3d","type":"any","key":"id"}]}},"response":[{"id":"d49f64ef-4665-40c5-8f3f-240abe97a107","name":"api/Social/ApproveSocialCampaign/{id}?status={status}&userID={userID}&userName={userName}&createdBy={createdBy}&dueDate={dueDate}&message={message} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Social/ApproveSocialCampaign/:id?status=status-value&userID=userID-value&userName=userName-value&createdBy=createdBy-value&dueDate=dueDate-value&message=message-value","protocol":"https","host":["{{Host}}"],"path":["api","Social","ApproveSocialCampaign",":id"],"query":[{"key":"status","value":"status-value"},{"key":"userID","value":"userID-value"},{"key":"userName","value":"userName-value"},{"key":"createdBy","value":"createdBy-value"},{"key":"dueDate","value":"dueDate-value"},{"key":"message","value":"message-value"}],"variable":[{"key":"id"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Amends the status of a social campaign.\r\n            \n</p></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"215f68dd-8385-4429-831a-d0f21c4c4502"}],"id":"bf6b6fc6-6506-46d9-9c5e-d157b147e795","description":"<p>Api Methods for Social</p>\n","_postman_id":"bf6b6fc6-6506-46d9-9c5e-d157b147e795"},{"name":"Subscription","item":[{"name":"Get","id":"a989be25-9675-47c8-b481-0a5e37340548","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Subscription/Get","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>Subscription Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ExternalID</td><td>String</td><td>Subscription External ID</td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td></tr><tr><td>SubscriptionDescription</td><td>String</td><td>Subscription Description</td></tr><tr><td>SubscriptionField1</td><td>String</td><td>Extra Field 1</td></tr><tr><td>SubscriptionField2</td><td>String</td><td>Extra Field 2</td></tr><tr><td>SubscriptionField3</td><td>String</td><td>Extra Field 3</td></tr><tr><td>SubscriptionField4</td><td>String</td><td>Extra Field 4</td></tr><tr><td>SubscriptionField5</td><td>String</td><td>Extra Field 5</td></tr><tr><td>SubscriptionPrice</td><td>Double (nullable)</td><td>Subscription Price</td></tr></table>","urlObject":{"protocol":"https","path":["api","Subscription","Get"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"dc19840e-a2cf-440c-a13c-190f01b2b236","name":"api/Subscription/Get Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Subscription/Get","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>Subscription Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ExternalID</td><td>String</td><td>Subscription External ID</td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td></tr><tr><td>SubscriptionDescription</td><td>String</td><td>Subscription Description</td></tr><tr><td>SubscriptionField1</td><td>String</td><td>Extra Field 1</td></tr><tr><td>SubscriptionField2</td><td>String</td><td>Extra Field 2</td></tr><tr><td>SubscriptionField3</td><td>String</td><td>Extra Field 3</td></tr><tr><td>SubscriptionField4</td><td>String</td><td>Extra Field 4</td></tr><tr><td>SubscriptionField5</td><td>String</td><td>Extra Field 5</td></tr><tr><td>SubscriptionPrice</td><td>Double (nullable)</td><td>Subscription Price</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"SubscriptionDescription\": \"sample string 1\",\r\n    \"ExternalID\": \"sample string 2\",\r\n    \"SubscriptionCode\": \"sample string 3\",\r\n    \"SubscriptionField1\": \"sample string 4\",\r\n    \"SubscriptionField2\": \"sample string 5\",\r\n    \"SubscriptionField3\": \"sample string 6\",\r\n    \"SubscriptionField4\": \"sample string 7\",\r\n    \"SubscriptionField5\": \"sample string 8\",\r\n    \"SubscriptionPrice\": 1.1\r\n  },\r\n  {\r\n    \"SubscriptionDescription\": \"sample string 1\",\r\n    \"ExternalID\": \"sample string 2\",\r\n    \"SubscriptionCode\": \"sample string 3\",\r\n    \"SubscriptionField1\": \"sample string 4\",\r\n    \"SubscriptionField2\": \"sample string 5\",\r\n    \"SubscriptionField3\": \"sample string 6\",\r\n    \"SubscriptionField4\": \"sample string 7\",\r\n    \"SubscriptionField5\": \"sample string 8\",\r\n    \"SubscriptionPrice\": 1.1\r\n  }\r\n]"}],"_postman_id":"a989be25-9675-47c8-b481-0a5e37340548"},{"name":"Get","id":"03a8f179-96b7-4123-8bda-455ca5b375cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Subscription/Get?ExternalID=ExternalID-value","description":" <p>\n            Get Subscriptions By External ID\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>Subscription Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ExternalID</td><td>String</td><td>Subscription External ID</td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td></tr><tr><td>SubscriptionDescription</td><td>String</td><td>Subscription Description</td></tr><tr><td>SubscriptionField1</td><td>String</td><td>Extra Field 1</td></tr><tr><td>SubscriptionField2</td><td>String</td><td>Extra Field 2</td></tr><tr><td>SubscriptionField3</td><td>String</td><td>Extra Field 3</td></tr><tr><td>SubscriptionField4</td><td>String</td><td>Extra Field 4</td></tr><tr><td>SubscriptionField5</td><td>String</td><td>Extra Field 5</td></tr><tr><td>SubscriptionPrice</td><td>Double (nullable)</td><td>Subscription Price</td></tr></table>","urlObject":{"protocol":"https","path":["api","Subscription","Get"],"host":["{{Host}}"],"query":[{"key":"ExternalID","value":"ExternalID-value"}],"variable":[]}},"response":[{"id":"247a58aa-c1d7-4c21-bb77-a535c171804a","name":"api/Subscription/Get?ExternalID={ExternalID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Subscription/Get?ExternalID=ExternalID-value","protocol":"https","host":["{{Host}}"],"path":["api","Subscription","Get"],"query":[{"key":"ExternalID","value":"ExternalID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Subscriptions By External ID\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>Subscription Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ExternalID</td><td>String</td><td>Subscription External ID</td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td></tr><tr><td>SubscriptionDescription</td><td>String</td><td>Subscription Description</td></tr><tr><td>SubscriptionField1</td><td>String</td><td>Extra Field 1</td></tr><tr><td>SubscriptionField2</td><td>String</td><td>Extra Field 2</td></tr><tr><td>SubscriptionField3</td><td>String</td><td>Extra Field 3</td></tr><tr><td>SubscriptionField4</td><td>String</td><td>Extra Field 4</td></tr><tr><td>SubscriptionField5</td><td>String</td><td>Extra Field 5</td></tr><tr><td>SubscriptionPrice</td><td>Double (nullable)</td><td>Subscription Price</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"SubscriptionDescription\": \"sample string 1\",\r\n  \"ExternalID\": \"sample string 2\",\r\n  \"SubscriptionCode\": \"sample string 3\",\r\n  \"SubscriptionField1\": \"sample string 4\",\r\n  \"SubscriptionField2\": \"sample string 5\",\r\n  \"SubscriptionField3\": \"sample string 6\",\r\n  \"SubscriptionField4\": \"sample string 7\",\r\n  \"SubscriptionField5\": \"sample string 8\",\r\n  \"SubscriptionPrice\": 1.1\r\n}"}],"_postman_id":"03a8f179-96b7-4123-8bda-455ca5b375cf"},{"name":"GetSubscriptionByContact","id":"84880462-f0df-46b7-9bf4-34e4a8d679b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"MemberID\": 1,\r\n  \"OriginID\": \"sample string 1\",\r\n  \"SourceID\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Subscription/GetSubscriptionByContact","description":" <p>\n            Get Subscription linked to specified contact\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>SubscriberDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>CtcID of the subscriber</td><td>False</td></tr><tr><td>MemberID</td><td>Int32 (nullable)</td><td>MemberID of the subscriber</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID of the subscriber</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Subscriber Source ID</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ContactSubscriptionOutPut Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactSubscriptionField1</td><td>String</td><td>Subscription Custom Field 1</td></tr><tr><td>ContactSubscriptionField2</td><td>String</td><td>Subscription Custom Field 2</td></tr><tr><td>ContactSubscriptionField3</td><td>String</td><td>Subscription Custom Field 3</td></tr><tr><td>ContactSubscriptionField4</td><td>String</td><td>Subscription Custom Field 4</td></tr><tr><td>ContactSubscriptionField5</td><td>String</td><td>Subscription Custom Field 5</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Subscription Expiry Date</td></tr><tr><td>LocationID</td><td>String</td><td>Subscription Location ID</td></tr><tr><td>NbDaysToExpire</td><td>Int32 (nullable)</td><td>Number of Days to Expire</td></tr><tr><td>PaidAmount</td><td>Double (nullable)</td><td>Paid Amount</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Subscription Start Date</td></tr><tr><td>Status</td><td>EnumSubscriptionStatus</td><td>Active = 1,\n            Renew = 2,\n            AutoRenew = 3,\n            CancelledByCustomer = 4,\n            CancelledCardExpired = 5,\n            CancelledPaymentDeclined = 6,\n            PendingCancellation = 7,\n            Paused = 8,\n            Trial = 9,\n            Pending= 10</td></tr><tr><td>Subscription</td><td>Subscription</td><td></td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td></tr><tr><td><h4>Subscription Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ExternalID</td><td>String</td><td>Subscription External ID</td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td></tr><tr><td>SubscriptionDescription</td><td>String</td><td>Subscription Description</td></tr><tr><td>SubscriptionField1</td><td>String</td><td>Extra Field 1</td></tr><tr><td>SubscriptionField2</td><td>String</td><td>Extra Field 2</td></tr><tr><td>SubscriptionField3</td><td>String</td><td>Extra Field 3</td></tr><tr><td>SubscriptionField4</td><td>String</td><td>Extra Field 4</td></tr><tr><td>SubscriptionField5</td><td>String</td><td>Extra Field 5</td></tr><tr><td>SubscriptionPrice</td><td>Double (nullable)</td><td>Subscription Price</td></tr></table>","urlObject":{"protocol":"https","path":["api","Subscription","GetSubscriptionByContact"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"bfcf272c-06a6-42c5-afff-9ff1d8555388","name":"api/Subscription/GetSubscriptionByContact Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"MemberID\": 1,\r\n  \"OriginID\": \"sample string 1\",\r\n  \"SourceID\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Subscription/GetSubscriptionByContact","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Subscription linked to specified contact\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>SubscriberDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>CtcID of the subscriber</td><td>False</td></tr><tr><td>MemberID</td><td>Int32 (nullable)</td><td>MemberID of the subscriber</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID of the subscriber</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Subscriber Source ID</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ContactSubscriptionOutPut Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ContactSubscriptionField1</td><td>String</td><td>Subscription Custom Field 1</td></tr><tr><td>ContactSubscriptionField2</td><td>String</td><td>Subscription Custom Field 2</td></tr><tr><td>ContactSubscriptionField3</td><td>String</td><td>Subscription Custom Field 3</td></tr><tr><td>ContactSubscriptionField4</td><td>String</td><td>Subscription Custom Field 4</td></tr><tr><td>ContactSubscriptionField5</td><td>String</td><td>Subscription Custom Field 5</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Subscription Expiry Date</td></tr><tr><td>LocationID</td><td>String</td><td>Subscription Location ID</td></tr><tr><td>NbDaysToExpire</td><td>Int32 (nullable)</td><td>Number of Days to Expire</td></tr><tr><td>PaidAmount</td><td>Double (nullable)</td><td>Paid Amount</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Subscription Start Date</td></tr><tr><td>Status</td><td>EnumSubscriptionStatus</td><td>Active = 1,\n            Renew = 2,\n            AutoRenew = 3,\n            CancelledByCustomer = 4,\n            CancelledCardExpired = 5,\n            CancelledPaymentDeclined = 6,\n            PendingCancellation = 7,\n            Paused = 8,\n            Trial = 9,\n            Pending= 10</td></tr><tr><td>Subscription</td><td>Subscription</td><td></td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td></tr><tr><td colspan=3><h4>Subscription Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ExternalID</td><td>String</td><td>Subscription External ID</td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td></tr><tr><td>SubscriptionDescription</td><td>String</td><td>Subscription Description</td></tr><tr><td>SubscriptionField1</td><td>String</td><td>Extra Field 1</td></tr><tr><td>SubscriptionField2</td><td>String</td><td>Extra Field 2</td></tr><tr><td>SubscriptionField3</td><td>String</td><td>Extra Field 3</td></tr><tr><td>SubscriptionField4</td><td>String</td><td>Extra Field 4</td></tr><tr><td>SubscriptionField5</td><td>String</td><td>Extra Field 5</td></tr><tr><td>SubscriptionPrice</td><td>Double (nullable)</td><td>Subscription Price</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"Subscription\": {\r\n      \"SubscriptionDescription\": \"sample string 1\",\r\n      \"ExternalID\": \"sample string 2\",\r\n      \"SubscriptionCode\": \"sample string 3\",\r\n      \"SubscriptionField1\": \"sample string 4\",\r\n      \"SubscriptionField2\": \"sample string 5\",\r\n      \"SubscriptionField3\": \"sample string 6\",\r\n      \"SubscriptionField4\": \"sample string 7\",\r\n      \"SubscriptionField5\": \"sample string 8\",\r\n      \"SubscriptionPrice\": 1.1\r\n    },\r\n    \"SubscriptionCode\": \"sample string 1\",\r\n    \"StartDate\": \"2026-03-25T07:30:10.0776156+00:00\",\r\n    \"ExpiryDate\": \"2026-03-25T07:30:10.0776156+00:00\",\r\n    \"NbDaysToExpire\": 1,\r\n    \"PaidAmount\": 1.1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"Status\": 1,\r\n    \"ContactSubscriptionField1\": \"sample string 3\",\r\n    \"ContactSubscriptionField2\": \"sample string 4\",\r\n    \"ContactSubscriptionField3\": \"sample string 5\",\r\n    \"ContactSubscriptionField4\": \"sample string 6\",\r\n    \"ContactSubscriptionField5\": \"sample string 7\"\r\n  },\r\n  {\r\n    \"Subscription\": {\r\n      \"SubscriptionDescription\": \"sample string 1\",\r\n      \"ExternalID\": \"sample string 2\",\r\n      \"SubscriptionCode\": \"sample string 3\",\r\n      \"SubscriptionField1\": \"sample string 4\",\r\n      \"SubscriptionField2\": \"sample string 5\",\r\n      \"SubscriptionField3\": \"sample string 6\",\r\n      \"SubscriptionField4\": \"sample string 7\",\r\n      \"SubscriptionField5\": \"sample string 8\",\r\n      \"SubscriptionPrice\": 1.1\r\n    },\r\n    \"SubscriptionCode\": \"sample string 1\",\r\n    \"StartDate\": \"2026-03-25T07:30:10.0776156+00:00\",\r\n    \"ExpiryDate\": \"2026-03-25T07:30:10.0776156+00:00\",\r\n    \"NbDaysToExpire\": 1,\r\n    \"PaidAmount\": 1.1,\r\n    \"LocationID\": \"sample string 2\",\r\n    \"Status\": 1,\r\n    \"ContactSubscriptionField1\": \"sample string 3\",\r\n    \"ContactSubscriptionField2\": \"sample string 4\",\r\n    \"ContactSubscriptionField3\": \"sample string 5\",\r\n    \"ContactSubscriptionField4\": \"sample string 6\",\r\n    \"ContactSubscriptionField5\": \"sample string 7\"\r\n  }\r\n]"}],"_postman_id":"84880462-f0df-46b7-9bf4-34e4a8d679b2"},{"name":"Post","id":"69c98dfd-4ced-4f15-8781-377521c1816e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SubscriptionDescription\": \"sample string 1\",\r\n  \"ExternalID\": \"sample string 2\",\r\n  \"SubscriptionCode\": \"sample string 3\",\r\n  \"SubscriptionField1\": \"sample string 4\",\r\n  \"SubscriptionField2\": \"sample string 5\",\r\n  \"SubscriptionField3\": \"sample string 6\",\r\n  \"SubscriptionField4\": \"sample string 7\",\r\n  \"SubscriptionField5\": \"sample string 8\",\r\n  \"SubscriptionPrice\": 1.1\r\n}"},"url":"https://{{Host}}/api/Subscription/Post","description":" <p>\n            Add a Subscription\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>Subscription Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>Subscription External ID</td><td>True</td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td><td>True</td></tr><tr><td>SubscriptionDescription</td><td>String</td><td>Subscription Description</td><td>True</td></tr><tr><td>SubscriptionField1</td><td>String</td><td>Extra Field 1</td><td>False</td></tr><tr><td>SubscriptionField2</td><td>String</td><td>Extra Field 2</td><td>False</td></tr><tr><td>SubscriptionField3</td><td>String</td><td>Extra Field 3</td><td>False</td></tr><tr><td>SubscriptionField4</td><td>String</td><td>Extra Field 4</td><td>False</td></tr><tr><td>SubscriptionField5</td><td>String</td><td>Extra Field 5</td><td>False</td></tr><tr><td>SubscriptionPrice</td><td>Double (nullable)</td><td>Subscription Price</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Subscription","Post"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"b856c9dd-404e-4a2b-8a64-f9a2e9dee9ec","name":"api/Subscription/Post Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SubscriptionDescription\": \"sample string 1\",\r\n  \"ExternalID\": \"sample string 2\",\r\n  \"SubscriptionCode\": \"sample string 3\",\r\n  \"SubscriptionField1\": \"sample string 4\",\r\n  \"SubscriptionField2\": \"sample string 5\",\r\n  \"SubscriptionField3\": \"sample string 6\",\r\n  \"SubscriptionField4\": \"sample string 7\",\r\n  \"SubscriptionField5\": \"sample string 8\",\r\n  \"SubscriptionPrice\": 1.1\r\n}"},"url":"https://{{Host}}/api/Subscription/Post","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add a Subscription\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>Subscription Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>Subscription External ID</td><td>True</td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td><td>True</td></tr><tr><td>SubscriptionDescription</td><td>String</td><td>Subscription Description</td><td>True</td></tr><tr><td>SubscriptionField1</td><td>String</td><td>Extra Field 1</td><td>False</td></tr><tr><td>SubscriptionField2</td><td>String</td><td>Extra Field 2</td><td>False</td></tr><tr><td>SubscriptionField3</td><td>String</td><td>Extra Field 3</td><td>False</td></tr><tr><td>SubscriptionField4</td><td>String</td><td>Extra Field 4</td><td>False</td></tr><tr><td>SubscriptionField5</td><td>String</td><td>Extra Field 5</td><td>False</td></tr><tr><td>SubscriptionPrice</td><td>Double (nullable)</td><td>Subscription Price</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"69c98dfd-4ced-4f15-8781-377521c1816e"},{"name":"PostSubscriptionContact","id":"43d25545-8a13-4942-83a8-f12381f94c12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SubscriberDetails\": {\r\n    \"CtcID\": 1,\r\n    \"MemberID\": 1,\r\n    \"OriginID\": \"sample string 1\",\r\n    \"SourceID\": \"sample string 2\"\r\n  },\r\n  \"SubscriptionCode\": \"sample string 1\",\r\n  \"StartDate\": \"2026-03-25T07:30:10.0932445+00:00\",\r\n  \"ExpiryDate\": \"2026-03-25T07:30:10.0932445+00:00\",\r\n  \"NbDaysToExpire\": 1,\r\n  \"PaidAmount\": 1.1,\r\n  \"LocationID\": \"sample string 2\",\r\n  \"Status\": 1,\r\n  \"ContactSubscriptionField1\": \"sample string 3\",\r\n  \"ContactSubscriptionField2\": \"sample string 4\",\r\n  \"ContactSubscriptionField3\": \"sample string 5\",\r\n  \"ContactSubscriptionField4\": \"sample string 6\",\r\n  \"ContactSubscriptionField5\": \"sample string 7\"\r\n}"},"url":"https://{{Host}}/api/Subscription/PostSubscriptionContact","description":" <p>\n            Add or update a contact Subsciption\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>ContactSubscription Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ContactSubscriptionField1</td><td>String</td><td>Subscription Custom Field 1</td><td>False</td></tr><tr><td>ContactSubscriptionField2</td><td>String</td><td>Subscription Custom Field 2</td><td>False</td></tr><tr><td>ContactSubscriptionField3</td><td>String</td><td>Subscription Custom Field 3</td><td>False</td></tr><tr><td>ContactSubscriptionField4</td><td>String</td><td>Subscription Custom Field 4</td><td>False</td></tr><tr><td>ContactSubscriptionField5</td><td>String</td><td>Subscription Custom Field 5</td><td>False</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Subscription Expiry Date</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Subscription Location ID</td><td>False</td></tr><tr><td>NbDaysToExpire</td><td>Int32 (nullable)</td><td>Number of Days to Expire</td><td>False</td></tr><tr><td>PaidAmount</td><td>Double (nullable)</td><td>Paid Amount</td><td>False</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Subscription Start Date</td><td>True</td></tr><tr><td>Status</td><td>EnumSubscriptionStatus</td><td>Active = 1,\n            Renew = 2,\n            AutoRenew = 3,\n            CancelledByCustomer = 4,\n            CancelledCardExpired = 5,\n            CancelledPaymentDeclined = 6,\n            PendingCancellation = 7,\n            Paused = 8,\n            Trial = 9,\n            Pending= 10</td><td>True</td></tr><tr><td>SubscriberDetails</td><td>SubscriberDetails</td><td></td><td>False</td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td><td>True</td></tr><tr><td><h4>SubscriberDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>CtcID of the subscriber</td><td>False</td></tr><tr><td>MemberID</td><td>Int32 (nullable)</td><td>MemberID of the subscriber</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID of the subscriber</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Subscriber Source ID</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Subscription","PostSubscriptionContact"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"de8655df-0354-4882-ba9a-4d8c2cff9209","name":"api/Subscription/PostSubscriptionContact Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SubscriberDetails\": {\r\n    \"CtcID\": 1,\r\n    \"MemberID\": 1,\r\n    \"OriginID\": \"sample string 1\",\r\n    \"SourceID\": \"sample string 2\"\r\n  },\r\n  \"SubscriptionCode\": \"sample string 1\",\r\n  \"StartDate\": \"2026-03-25T07:30:10.0932445+00:00\",\r\n  \"ExpiryDate\": \"2026-03-25T07:30:10.0932445+00:00\",\r\n  \"NbDaysToExpire\": 1,\r\n  \"PaidAmount\": 1.1,\r\n  \"LocationID\": \"sample string 2\",\r\n  \"Status\": 1,\r\n  \"ContactSubscriptionField1\": \"sample string 3\",\r\n  \"ContactSubscriptionField2\": \"sample string 4\",\r\n  \"ContactSubscriptionField3\": \"sample string 5\",\r\n  \"ContactSubscriptionField4\": \"sample string 6\",\r\n  \"ContactSubscriptionField5\": \"sample string 7\"\r\n}"},"url":"https://{{Host}}/api/Subscription/PostSubscriptionContact","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add or update a contact Subsciption\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ContactSubscription Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ContactSubscriptionField1</td><td>String</td><td>Subscription Custom Field 1</td><td>False</td></tr><tr><td>ContactSubscriptionField2</td><td>String</td><td>Subscription Custom Field 2</td><td>False</td></tr><tr><td>ContactSubscriptionField3</td><td>String</td><td>Subscription Custom Field 3</td><td>False</td></tr><tr><td>ContactSubscriptionField4</td><td>String</td><td>Subscription Custom Field 4</td><td>False</td></tr><tr><td>ContactSubscriptionField5</td><td>String</td><td>Subscription Custom Field 5</td><td>False</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Subscription Expiry Date</td><td>False</td></tr><tr><td>LocationID</td><td>String</td><td>Subscription Location ID</td><td>False</td></tr><tr><td>NbDaysToExpire</td><td>Int32 (nullable)</td><td>Number of Days to Expire</td><td>False</td></tr><tr><td>PaidAmount</td><td>Double (nullable)</td><td>Paid Amount</td><td>False</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Subscription Start Date</td><td>True</td></tr><tr><td>Status</td><td>EnumSubscriptionStatus</td><td>Active = 1,\n            Renew = 2,\n            AutoRenew = 3,\n            CancelledByCustomer = 4,\n            CancelledCardExpired = 5,\n            CancelledPaymentDeclined = 6,\n            PendingCancellation = 7,\n            Paused = 8,\n            Trial = 9,\n            Pending= 10</td><td>True</td></tr><tr><td>SubscriberDetails</td><td>SubscriberDetails</td><td></td><td>False</td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td><td>True</td></tr><tr><td colspan=4><h4>SubscriberDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>CtcID of the subscriber</td><td>False</td></tr><tr><td>MemberID</td><td>Int32 (nullable)</td><td>MemberID of the subscriber</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID of the subscriber</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Subscriber Source ID</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"43d25545-8a13-4942-83a8-f12381f94c12"},{"name":"Put","id":"1ae11bcf-ddb8-4fc0-9d84-5343c010b677","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SubscriptionDescription\": \"sample string 1\",\r\n  \"ExternalID\": \"sample string 2\",\r\n  \"SubscriptionCode\": \"sample string 3\",\r\n  \"SubscriptionField1\": \"sample string 4\",\r\n  \"SubscriptionField2\": \"sample string 5\",\r\n  \"SubscriptionField3\": \"sample string 6\",\r\n  \"SubscriptionField4\": \"sample string 7\",\r\n  \"SubscriptionField5\": \"sample string 8\",\r\n  \"SubscriptionPrice\": 1.1\r\n}"},"url":"https://{{Host}}/api/Subscription/Put","description":" <p>\n            Update a Subscription\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>Subscription Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>Subscription External ID</td><td>True</td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td><td>True</td></tr><tr><td>SubscriptionDescription</td><td>String</td><td>Subscription Description</td><td>True</td></tr><tr><td>SubscriptionField1</td><td>String</td><td>Extra Field 1</td><td>False</td></tr><tr><td>SubscriptionField2</td><td>String</td><td>Extra Field 2</td><td>False</td></tr><tr><td>SubscriptionField3</td><td>String</td><td>Extra Field 3</td><td>False</td></tr><tr><td>SubscriptionField4</td><td>String</td><td>Extra Field 4</td><td>False</td></tr><tr><td>SubscriptionField5</td><td>String</td><td>Extra Field 5</td><td>False</td></tr><tr><td>SubscriptionPrice</td><td>Double (nullable)</td><td>Subscription Price</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Subscription","Put"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"469b97b8-02fb-4f51-88b5-109465b8dd86","name":"api/Subscription/Put Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"SubscriptionDescription\": \"sample string 1\",\r\n  \"ExternalID\": \"sample string 2\",\r\n  \"SubscriptionCode\": \"sample string 3\",\r\n  \"SubscriptionField1\": \"sample string 4\",\r\n  \"SubscriptionField2\": \"sample string 5\",\r\n  \"SubscriptionField3\": \"sample string 6\",\r\n  \"SubscriptionField4\": \"sample string 7\",\r\n  \"SubscriptionField5\": \"sample string 8\",\r\n  \"SubscriptionPrice\": 1.1\r\n}"},"url":"https://{{Host}}/api/Subscription/Put","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Update a Subscription\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>Subscription Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>Subscription External ID</td><td>True</td></tr><tr><td>SubscriptionCode</td><td>String</td><td>Subscription Code</td><td>True</td></tr><tr><td>SubscriptionDescription</td><td>String</td><td>Subscription Description</td><td>True</td></tr><tr><td>SubscriptionField1</td><td>String</td><td>Extra Field 1</td><td>False</td></tr><tr><td>SubscriptionField2</td><td>String</td><td>Extra Field 2</td><td>False</td></tr><tr><td>SubscriptionField3</td><td>String</td><td>Extra Field 3</td><td>False</td></tr><tr><td>SubscriptionField4</td><td>String</td><td>Extra Field 4</td><td>False</td></tr><tr><td>SubscriptionField5</td><td>String</td><td>Extra Field 5</td><td>False</td></tr><tr><td>SubscriptionPrice</td><td>Double (nullable)</td><td>Subscription Price</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"1ae11bcf-ddb8-4fc0-9d84-5343c010b677"}],"id":"15c4f8f6-f14c-44e3-9521-a5181b201821","description":"<p>Api Methods for Subscription</p>\n","_postman_id":"15c4f8f6-f14c-44e3-9521-a5181b201821"},{"name":"Survey(Deprecated)","item":[{"name":"Get","id":"a2fb73ae-eef2-4296-af5d-8e649aa9b0e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Survey/Get?OpCode=OpCode-value","description":" <p>\n</p>","urlObject":{"protocol":"https","path":["api","Survey","Get"],"host":["{{Host}}"],"query":[{"key":"OpCode","value":"OpCode-value"}],"variable":[]}},"response":[{"id":"e45e8ca1-7ce0-41b9-9276-98ff99b4d506","name":"api/Survey/Get?OpCode={OpCode} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Survey/Get?OpCode=OpCode-value","protocol":"https","host":["{{Host}}"],"path":["api","Survey","Get"],"query":[{"key":"OpCode","value":"OpCode-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"Survey\": {\r\n    \"OpCode\": 1,\r\n    \"Description\": \"sample string 2\",\r\n    \"PageTitle\": \"sample string 3\",\r\n    \"SurveyName\": \"sample string 4\",\r\n    \"SurveyIntroduction\": \"sample string 5\",\r\n    \"ThankyouPageDescription\": \"sample string 6\",\r\n    \"CreateContactQuestionID\": 1,\r\n    \"ConsentMinAge\": 1,\r\n    \"ParentConsentEnabled\": true,\r\n    \"LoadCtctFromResponses\": true,\r\n    \"PrePopulateResponses\": true,\r\n    \"UpdateContact\": true,\r\n    \"IncorrectDetailsMsg\": \"sample string 11\",\r\n    \"Pages\": [\r\n      {\r\n        \"TabCode\": 1,\r\n        \"Questions\": [\r\n          {\r\n            \"KnownFieldID\": 1,\r\n            \"QuestionID\": 1,\r\n            \"QuestionSubType\": \"sample string 2\",\r\n            \"QuestionType\": \"sample string 3\",\r\n            \"QuestionTypeDescription\": \"sample string 4\",\r\n            \"VirtualQuestionType\": \"sample string 5\",\r\n            \"QuestionDisplayType\": \"sample string 6\",\r\n            \"QuestionNumber\": 1,\r\n            \"QuestionText\": \"sample string 7\",\r\n            \"IsMandatory\": true,\r\n            \"ErrorMessage\": \"sample string 9\",\r\n            \"RuleSet\": {\r\n              \"RuleType\": \"sample string 1\",\r\n              \"Operator\": \"sample string 2\",\r\n              \"Rules\": [\r\n                \"sample string 1\",\r\n                \"sample string 2\"\r\n              ]\r\n            },\r\n            \"Expansive\": true,\r\n            \"ValidationExpression\": \"sample string 11\",\r\n            \"ValidationErrorMessage\": \"sample string 12\",\r\n            \"Minimum\": 1,\r\n            \"Maximum\": 1,\r\n            \"Step\": 1,\r\n            \"WordLimit\": \"sample string 13\",\r\n            \"DefaultText\": \"sample string 14\",\r\n            \"Choices\": [\r\n              {\r\n                \"ChoiceID\": 1,\r\n                \"ChoiceLabel\": \"sample string 2\",\r\n                \"IsOther\": true,\r\n                \"IsRandom\": true,\r\n                \"IsMasterChoice\": true,\r\n                \"RegionID\": 1,\r\n                \"RegionName\": \"sample string 6\",\r\n                \"SubRegionID\": 1,\r\n                \"SubRegionName\": \"sample string 7\",\r\n                \"ChoiceRule\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                }\r\n              },\r\n              {\r\n                \"ChoiceID\": 1,\r\n                \"ChoiceLabel\": \"sample string 2\",\r\n                \"IsOther\": true,\r\n                \"IsRandom\": true,\r\n                \"IsMasterChoice\": true,\r\n                \"RegionID\": 1,\r\n                \"RegionName\": \"sample string 6\",\r\n                \"SubRegionID\": 1,\r\n                \"SubRegionName\": \"sample string 7\",\r\n                \"ChoiceRule\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                }\r\n              }\r\n            ],\r\n            \"SubQuestions\": [\r\n              {\r\n                \"QuestionID\": 1,\r\n                \"QuestionSubType\": \"sample string 2\",\r\n                \"QuestionType\": \"sample string 3\",\r\n                \"VirtualQuestionType\": \"sample string 4\",\r\n                \"QuestionDisplayType\": \"sample string 5\",\r\n                \"QuestionNumber\": 1,\r\n                \"QuestionText\": \"sample string 6\",\r\n                \"IsMandatory\": true,\r\n                \"ErrorMessage\": \"sample string 8\",\r\n                \"RuleSet\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                },\r\n                \"Expansive\": true,\r\n                \"ValidationExpression\": \"sample string 10\",\r\n                \"ValidationErrorMessage\": \"sample string 11\",\r\n                \"Minimum\": 1,\r\n                \"Maximum\": 1,\r\n                \"Step\": 1,\r\n                \"WordLimit\": \"sample string 12\",\r\n                \"Choices\": [\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  },\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  }\r\n                ],\r\n                \"DisplayEmoticons\": true,\r\n                \"Preticked\": true,\r\n                \"RandomizeOptionsOrder\": true,\r\n                \"MinimumAge\": 1\r\n              },\r\n              {\r\n                \"QuestionID\": 1,\r\n                \"QuestionSubType\": \"sample string 2\",\r\n                \"QuestionType\": \"sample string 3\",\r\n                \"VirtualQuestionType\": \"sample string 4\",\r\n                \"QuestionDisplayType\": \"sample string 5\",\r\n                \"QuestionNumber\": 1,\r\n                \"QuestionText\": \"sample string 6\",\r\n                \"IsMandatory\": true,\r\n                \"ErrorMessage\": \"sample string 8\",\r\n                \"RuleSet\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                },\r\n                \"Expansive\": true,\r\n                \"ValidationExpression\": \"sample string 10\",\r\n                \"ValidationErrorMessage\": \"sample string 11\",\r\n                \"Minimum\": 1,\r\n                \"Maximum\": 1,\r\n                \"Step\": 1,\r\n                \"WordLimit\": \"sample string 12\",\r\n                \"Choices\": [\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  },\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  }\r\n                ],\r\n                \"DisplayEmoticons\": true,\r\n                \"Preticked\": true,\r\n                \"RandomizeOptionsOrder\": true,\r\n                \"MinimumAge\": 1\r\n              }\r\n            ],\r\n            \"DisplayEmoticons\": true,\r\n            \"Preticked\": true,\r\n            \"RandomizeOptionsOrder\": true,\r\n            \"MinimumAge\": 1,\r\n            \"PrivacyPolicyLink\": \"sample string 18\",\r\n            \"PrivacyPolicyText\": \"sample string 19\",\r\n            \"EmoticonsID\": 1,\r\n            \"isStaticLocations\": true,\r\n            \"DisplayRegionAsQuest\": true,\r\n            \"MinTime\": \"sample string 21\",\r\n            \"MaxTime\": \"sample string 22\",\r\n            \"DefaultTime\": \"sample string 23\",\r\n            \"StartTime\": \"sample string 24\",\r\n            \"IntervalTime\": 25,\r\n            \"MaxSelectedOptionsCount\": 1,\r\n            \"MinSelectedOptionsCount\": 1,\r\n            \"ValidationMessageForCheckboxSelection\": \"sample string 26\",\r\n            \"IsDynamicDateRange\": true,\r\n            \"StaticEarliestDate\": \"2026-03-25T07:30:10.3365987+00:00\",\r\n            \"StaticLatestDate\": \"2026-03-25T07:30:10.3365987+00:00\",\r\n            \"DynamicEarliestValue\": 1,\r\n            \"DynamicLatestValue\": 1,\r\n            \"DynamicEarliestUnit\": 1,\r\n            \"DynamicLatestUnit\": 1\r\n          },\r\n          {\r\n            \"KnownFieldID\": 1,\r\n            \"QuestionID\": 1,\r\n            \"QuestionSubType\": \"sample string 2\",\r\n            \"QuestionType\": \"sample string 3\",\r\n            \"QuestionTypeDescription\": \"sample string 4\",\r\n            \"VirtualQuestionType\": \"sample string 5\",\r\n            \"QuestionDisplayType\": \"sample string 6\",\r\n            \"QuestionNumber\": 1,\r\n            \"QuestionText\": \"sample string 7\",\r\n            \"IsMandatory\": true,\r\n            \"ErrorMessage\": \"sample string 9\",\r\n            \"RuleSet\": {\r\n              \"RuleType\": \"sample string 1\",\r\n              \"Operator\": \"sample string 2\",\r\n              \"Rules\": [\r\n                \"sample string 1\",\r\n                \"sample string 2\"\r\n              ]\r\n            },\r\n            \"Expansive\": true,\r\n            \"ValidationExpression\": \"sample string 11\",\r\n            \"ValidationErrorMessage\": \"sample string 12\",\r\n            \"Minimum\": 1,\r\n            \"Maximum\": 1,\r\n            \"Step\": 1,\r\n            \"WordLimit\": \"sample string 13\",\r\n            \"DefaultText\": \"sample string 14\",\r\n            \"Choices\": [\r\n              {\r\n                \"ChoiceID\": 1,\r\n                \"ChoiceLabel\": \"sample string 2\",\r\n                \"IsOther\": true,\r\n                \"IsRandom\": true,\r\n                \"IsMasterChoice\": true,\r\n                \"RegionID\": 1,\r\n                \"RegionName\": \"sample string 6\",\r\n                \"SubRegionID\": 1,\r\n                \"SubRegionName\": \"sample string 7\",\r\n                \"ChoiceRule\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                }\r\n              },\r\n              {\r\n                \"ChoiceID\": 1,\r\n                \"ChoiceLabel\": \"sample string 2\",\r\n                \"IsOther\": true,\r\n                \"IsRandom\": true,\r\n                \"IsMasterChoice\": true,\r\n                \"RegionID\": 1,\r\n                \"RegionName\": \"sample string 6\",\r\n                \"SubRegionID\": 1,\r\n                \"SubRegionName\": \"sample string 7\",\r\n                \"ChoiceRule\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                }\r\n              }\r\n            ],\r\n            \"SubQuestions\": [\r\n              {\r\n                \"QuestionID\": 1,\r\n                \"QuestionSubType\": \"sample string 2\",\r\n                \"QuestionType\": \"sample string 3\",\r\n                \"VirtualQuestionType\": \"sample string 4\",\r\n                \"QuestionDisplayType\": \"sample string 5\",\r\n                \"QuestionNumber\": 1,\r\n                \"QuestionText\": \"sample string 6\",\r\n                \"IsMandatory\": true,\r\n                \"ErrorMessage\": \"sample string 8\",\r\n                \"RuleSet\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                },\r\n                \"Expansive\": true,\r\n                \"ValidationExpression\": \"sample string 10\",\r\n                \"ValidationErrorMessage\": \"sample string 11\",\r\n                \"Minimum\": 1,\r\n                \"Maximum\": 1,\r\n                \"Step\": 1,\r\n                \"WordLimit\": \"sample string 12\",\r\n                \"Choices\": [\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  },\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  }\r\n                ],\r\n                \"DisplayEmoticons\": true,\r\n                \"Preticked\": true,\r\n                \"RandomizeOptionsOrder\": true,\r\n                \"MinimumAge\": 1\r\n              },\r\n              {\r\n                \"QuestionID\": 1,\r\n                \"QuestionSubType\": \"sample string 2\",\r\n                \"QuestionType\": \"sample string 3\",\r\n                \"VirtualQuestionType\": \"sample string 4\",\r\n                \"QuestionDisplayType\": \"sample string 5\",\r\n                \"QuestionNumber\": 1,\r\n                \"QuestionText\": \"sample string 6\",\r\n                \"IsMandatory\": true,\r\n                \"ErrorMessage\": \"sample string 8\",\r\n                \"RuleSet\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                },\r\n                \"Expansive\": true,\r\n                \"ValidationExpression\": \"sample string 10\",\r\n                \"ValidationErrorMessage\": \"sample string 11\",\r\n                \"Minimum\": 1,\r\n                \"Maximum\": 1,\r\n                \"Step\": 1,\r\n                \"WordLimit\": \"sample string 12\",\r\n                \"Choices\": [\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  },\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  }\r\n                ],\r\n                \"DisplayEmoticons\": true,\r\n                \"Preticked\": true,\r\n                \"RandomizeOptionsOrder\": true,\r\n                \"MinimumAge\": 1\r\n              }\r\n            ],\r\n            \"DisplayEmoticons\": true,\r\n            \"Preticked\": true,\r\n            \"RandomizeOptionsOrder\": true,\r\n            \"MinimumAge\": 1,\r\n            \"PrivacyPolicyLink\": \"sample string 18\",\r\n            \"PrivacyPolicyText\": \"sample string 19\",\r\n            \"EmoticonsID\": 1,\r\n            \"isStaticLocations\": true,\r\n            \"DisplayRegionAsQuest\": true,\r\n            \"MinTime\": \"sample string 21\",\r\n            \"MaxTime\": \"sample string 22\",\r\n            \"DefaultTime\": \"sample string 23\",\r\n            \"StartTime\": \"sample string 24\",\r\n            \"IntervalTime\": 25,\r\n            \"MaxSelectedOptionsCount\": 1,\r\n            \"MinSelectedOptionsCount\": 1,\r\n            \"ValidationMessageForCheckboxSelection\": \"sample string 26\",\r\n            \"IsDynamicDateRange\": true,\r\n            \"StaticEarliestDate\": \"2026-03-25T07:30:10.3365987+00:00\",\r\n            \"StaticLatestDate\": \"2026-03-25T07:30:10.3365987+00:00\",\r\n            \"DynamicEarliestValue\": 1,\r\n            \"DynamicLatestValue\": 1,\r\n            \"DynamicEarliestUnit\": 1,\r\n            \"DynamicLatestUnit\": 1\r\n          }\r\n        ]\r\n      },\r\n      {\r\n        \"TabCode\": 1,\r\n        \"Questions\": [\r\n          {\r\n            \"KnownFieldID\": 1,\r\n            \"QuestionID\": 1,\r\n            \"QuestionSubType\": \"sample string 2\",\r\n            \"QuestionType\": \"sample string 3\",\r\n            \"QuestionTypeDescription\": \"sample string 4\",\r\n            \"VirtualQuestionType\": \"sample string 5\",\r\n            \"QuestionDisplayType\": \"sample string 6\",\r\n            \"QuestionNumber\": 1,\r\n            \"QuestionText\": \"sample string 7\",\r\n            \"IsMandatory\": true,\r\n            \"ErrorMessage\": \"sample string 9\",\r\n            \"RuleSet\": {\r\n              \"RuleType\": \"sample string 1\",\r\n              \"Operator\": \"sample string 2\",\r\n              \"Rules\": [\r\n                \"sample string 1\",\r\n                \"sample string 2\"\r\n              ]\r\n            },\r\n            \"Expansive\": true,\r\n            \"ValidationExpression\": \"sample string 11\",\r\n            \"ValidationErrorMessage\": \"sample string 12\",\r\n            \"Minimum\": 1,\r\n            \"Maximum\": 1,\r\n            \"Step\": 1,\r\n            \"WordLimit\": \"sample string 13\",\r\n            \"DefaultText\": \"sample string 14\",\r\n            \"Choices\": [\r\n              {\r\n                \"ChoiceID\": 1,\r\n                \"ChoiceLabel\": \"sample string 2\",\r\n                \"IsOther\": true,\r\n                \"IsRandom\": true,\r\n                \"IsMasterChoice\": true,\r\n                \"RegionID\": 1,\r\n                \"RegionName\": \"sample string 6\",\r\n                \"SubRegionID\": 1,\r\n                \"SubRegionName\": \"sample string 7\",\r\n                \"ChoiceRule\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                }\r\n              },\r\n              {\r\n                \"ChoiceID\": 1,\r\n                \"ChoiceLabel\": \"sample string 2\",\r\n                \"IsOther\": true,\r\n                \"IsRandom\": true,\r\n                \"IsMasterChoice\": true,\r\n                \"RegionID\": 1,\r\n                \"RegionName\": \"sample string 6\",\r\n                \"SubRegionID\": 1,\r\n                \"SubRegionName\": \"sample string 7\",\r\n                \"ChoiceRule\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                }\r\n              }\r\n            ],\r\n            \"SubQuestions\": [\r\n              {\r\n                \"QuestionID\": 1,\r\n                \"QuestionSubType\": \"sample string 2\",\r\n                \"QuestionType\": \"sample string 3\",\r\n                \"VirtualQuestionType\": \"sample string 4\",\r\n                \"QuestionDisplayType\": \"sample string 5\",\r\n                \"QuestionNumber\": 1,\r\n                \"QuestionText\": \"sample string 6\",\r\n                \"IsMandatory\": true,\r\n                \"ErrorMessage\": \"sample string 8\",\r\n                \"RuleSet\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                },\r\n                \"Expansive\": true,\r\n                \"ValidationExpression\": \"sample string 10\",\r\n                \"ValidationErrorMessage\": \"sample string 11\",\r\n                \"Minimum\": 1,\r\n                \"Maximum\": 1,\r\n                \"Step\": 1,\r\n                \"WordLimit\": \"sample string 12\",\r\n                \"Choices\": [\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  },\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  }\r\n                ],\r\n                \"DisplayEmoticons\": true,\r\n                \"Preticked\": true,\r\n                \"RandomizeOptionsOrder\": true,\r\n                \"MinimumAge\": 1\r\n              },\r\n              {\r\n                \"QuestionID\": 1,\r\n                \"QuestionSubType\": \"sample string 2\",\r\n                \"QuestionType\": \"sample string 3\",\r\n                \"VirtualQuestionType\": \"sample string 4\",\r\n                \"QuestionDisplayType\": \"sample string 5\",\r\n                \"QuestionNumber\": 1,\r\n                \"QuestionText\": \"sample string 6\",\r\n                \"IsMandatory\": true,\r\n                \"ErrorMessage\": \"sample string 8\",\r\n                \"RuleSet\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                },\r\n                \"Expansive\": true,\r\n                \"ValidationExpression\": \"sample string 10\",\r\n                \"ValidationErrorMessage\": \"sample string 11\",\r\n                \"Minimum\": 1,\r\n                \"Maximum\": 1,\r\n                \"Step\": 1,\r\n                \"WordLimit\": \"sample string 12\",\r\n                \"Choices\": [\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  },\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  }\r\n                ],\r\n                \"DisplayEmoticons\": true,\r\n                \"Preticked\": true,\r\n                \"RandomizeOptionsOrder\": true,\r\n                \"MinimumAge\": 1\r\n              }\r\n            ],\r\n            \"DisplayEmoticons\": true,\r\n            \"Preticked\": true,\r\n            \"RandomizeOptionsOrder\": true,\r\n            \"MinimumAge\": 1,\r\n            \"PrivacyPolicyLink\": \"sample string 18\",\r\n            \"PrivacyPolicyText\": \"sample string 19\",\r\n            \"EmoticonsID\": 1,\r\n            \"isStaticLocations\": true,\r\n            \"DisplayRegionAsQuest\": true,\r\n            \"MinTime\": \"sample string 21\",\r\n            \"MaxTime\": \"sample string 22\",\r\n            \"DefaultTime\": \"sample string 23\",\r\n            \"StartTime\": \"sample string 24\",\r\n            \"IntervalTime\": 25,\r\n            \"MaxSelectedOptionsCount\": 1,\r\n            \"MinSelectedOptionsCount\": 1,\r\n            \"ValidationMessageForCheckboxSelection\": \"sample string 26\",\r\n            \"IsDynamicDateRange\": true,\r\n            \"StaticEarliestDate\": \"2026-03-25T07:30:10.3365987+00:00\",\r\n            \"StaticLatestDate\": \"2026-03-25T07:30:10.3365987+00:00\",\r\n            \"DynamicEarliestValue\": 1,\r\n            \"DynamicLatestValue\": 1,\r\n            \"DynamicEarliestUnit\": 1,\r\n            \"DynamicLatestUnit\": 1\r\n          },\r\n          {\r\n            \"KnownFieldID\": 1,\r\n            \"QuestionID\": 1,\r\n            \"QuestionSubType\": \"sample string 2\",\r\n            \"QuestionType\": \"sample string 3\",\r\n            \"QuestionTypeDescription\": \"sample string 4\",\r\n            \"VirtualQuestionType\": \"sample string 5\",\r\n            \"QuestionDisplayType\": \"sample string 6\",\r\n            \"QuestionNumber\": 1,\r\n            \"QuestionText\": \"sample string 7\",\r\n            \"IsMandatory\": true,\r\n            \"ErrorMessage\": \"sample string 9\",\r\n            \"RuleSet\": {\r\n              \"RuleType\": \"sample string 1\",\r\n              \"Operator\": \"sample string 2\",\r\n              \"Rules\": [\r\n                \"sample string 1\",\r\n                \"sample string 2\"\r\n              ]\r\n            },\r\n            \"Expansive\": true,\r\n            \"ValidationExpression\": \"sample string 11\",\r\n            \"ValidationErrorMessage\": \"sample string 12\",\r\n            \"Minimum\": 1,\r\n            \"Maximum\": 1,\r\n            \"Step\": 1,\r\n            \"WordLimit\": \"sample string 13\",\r\n            \"DefaultText\": \"sample string 14\",\r\n            \"Choices\": [\r\n              {\r\n                \"ChoiceID\": 1,\r\n                \"ChoiceLabel\": \"sample string 2\",\r\n                \"IsOther\": true,\r\n                \"IsRandom\": true,\r\n                \"IsMasterChoice\": true,\r\n                \"RegionID\": 1,\r\n                \"RegionName\": \"sample string 6\",\r\n                \"SubRegionID\": 1,\r\n                \"SubRegionName\": \"sample string 7\",\r\n                \"ChoiceRule\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                }\r\n              },\r\n              {\r\n                \"ChoiceID\": 1,\r\n                \"ChoiceLabel\": \"sample string 2\",\r\n                \"IsOther\": true,\r\n                \"IsRandom\": true,\r\n                \"IsMasterChoice\": true,\r\n                \"RegionID\": 1,\r\n                \"RegionName\": \"sample string 6\",\r\n                \"SubRegionID\": 1,\r\n                \"SubRegionName\": \"sample string 7\",\r\n                \"ChoiceRule\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                }\r\n              }\r\n            ],\r\n            \"SubQuestions\": [\r\n              {\r\n                \"QuestionID\": 1,\r\n                \"QuestionSubType\": \"sample string 2\",\r\n                \"QuestionType\": \"sample string 3\",\r\n                \"VirtualQuestionType\": \"sample string 4\",\r\n                \"QuestionDisplayType\": \"sample string 5\",\r\n                \"QuestionNumber\": 1,\r\n                \"QuestionText\": \"sample string 6\",\r\n                \"IsMandatory\": true,\r\n                \"ErrorMessage\": \"sample string 8\",\r\n                \"RuleSet\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                },\r\n                \"Expansive\": true,\r\n                \"ValidationExpression\": \"sample string 10\",\r\n                \"ValidationErrorMessage\": \"sample string 11\",\r\n                \"Minimum\": 1,\r\n                \"Maximum\": 1,\r\n                \"Step\": 1,\r\n                \"WordLimit\": \"sample string 12\",\r\n                \"Choices\": [\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  },\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  }\r\n                ],\r\n                \"DisplayEmoticons\": true,\r\n                \"Preticked\": true,\r\n                \"RandomizeOptionsOrder\": true,\r\n                \"MinimumAge\": 1\r\n              },\r\n              {\r\n                \"QuestionID\": 1,\r\n                \"QuestionSubType\": \"sample string 2\",\r\n                \"QuestionType\": \"sample string 3\",\r\n                \"VirtualQuestionType\": \"sample string 4\",\r\n                \"QuestionDisplayType\": \"sample string 5\",\r\n                \"QuestionNumber\": 1,\r\n                \"QuestionText\": \"sample string 6\",\r\n                \"IsMandatory\": true,\r\n                \"ErrorMessage\": \"sample string 8\",\r\n                \"RuleSet\": {\r\n                  \"RuleType\": \"sample string 1\",\r\n                  \"Operator\": \"sample string 2\",\r\n                  \"Rules\": [\r\n                    \"sample string 1\",\r\n                    \"sample string 2\"\r\n                  ]\r\n                },\r\n                \"Expansive\": true,\r\n                \"ValidationExpression\": \"sample string 10\",\r\n                \"ValidationErrorMessage\": \"sample string 11\",\r\n                \"Minimum\": 1,\r\n                \"Maximum\": 1,\r\n                \"Step\": 1,\r\n                \"WordLimit\": \"sample string 12\",\r\n                \"Choices\": [\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  },\r\n                  {\r\n                    \"ChoiceID\": 1,\r\n                    \"ChoiceLabel\": \"sample string 2\",\r\n                    \"IsOther\": true,\r\n                    \"IsRandom\": true,\r\n                    \"IsMasterChoice\": true,\r\n                    \"RegionID\": 1,\r\n                    \"RegionName\": \"sample string 6\",\r\n                    \"SubRegionID\": 1,\r\n                    \"SubRegionName\": \"sample string 7\",\r\n                    \"ChoiceRule\": {\r\n                      \"RuleType\": \"sample string 1\",\r\n                      \"Operator\": \"sample string 2\",\r\n                      \"Rules\": [\r\n                        \"sample string 1\",\r\n                        \"sample string 2\"\r\n                      ]\r\n                    }\r\n                  }\r\n                ],\r\n                \"DisplayEmoticons\": true,\r\n                \"Preticked\": true,\r\n                \"RandomizeOptionsOrder\": true,\r\n                \"MinimumAge\": 1\r\n              }\r\n            ],\r\n            \"DisplayEmoticons\": true,\r\n            \"Preticked\": true,\r\n            \"RandomizeOptionsOrder\": true,\r\n            \"MinimumAge\": 1,\r\n            \"PrivacyPolicyLink\": \"sample string 18\",\r\n            \"PrivacyPolicyText\": \"sample string 19\",\r\n            \"EmoticonsID\": 1,\r\n            \"isStaticLocations\": true,\r\n            \"DisplayRegionAsQuest\": true,\r\n            \"MinTime\": \"sample string 21\",\r\n            \"MaxTime\": \"sample string 22\",\r\n            \"DefaultTime\": \"sample string 23\",\r\n            \"StartTime\": \"sample string 24\",\r\n            \"IntervalTime\": 25,\r\n            \"MaxSelectedOptionsCount\": 1,\r\n            \"MinSelectedOptionsCount\": 1,\r\n            \"ValidationMessageForCheckboxSelection\": \"sample string 26\",\r\n            \"IsDynamicDateRange\": true,\r\n            \"StaticEarliestDate\": \"2026-03-25T07:30:10.3365987+00:00\",\r\n            \"StaticLatestDate\": \"2026-03-25T07:30:10.3365987+00:00\",\r\n            \"DynamicEarliestValue\": 1,\r\n            \"DynamicLatestValue\": 1,\r\n            \"DynamicEarliestUnit\": 1,\r\n            \"DynamicLatestUnit\": 1\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"CtcID\": 1\r\n  },\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"a2fb73ae-eef2-4296-af5d-8e649aa9b0e6"},{"name":"GetAllSites","id":"e044a0e7-abd9-4052-b470-f90bbdf26470","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Survey/GetAllSites","description":" <p>\n            Get the mapping between Site ID and Choice ID\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetAllSitesOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>Sites</td><td>List&lt;Sites&gt;</td><td>List of status</td></tr><tr><td><h4>Sites Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChoiceID</td><td>Int32</td><td>Choice ID</td></tr><tr><td>SiteID</td><td>Int32</td><td>Site ID</td></tr><tr><td>SiteName</td><td>String</td><td>Site Name</td></tr></table>","urlObject":{"protocol":"https","path":["api","Survey","GetAllSites"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"9a388a90-95b9-4c9f-9957-d9a33620ce92","name":"api/Survey/GetAllSites Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Survey/GetAllSites","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get the mapping between Site ID and Choice ID\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetAllSitesOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exist</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>Sites</td><td>List&lt;Sites&gt;</td><td>List of status</td></tr><tr><td colspan=3><h4>Sites Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChoiceID</td><td>Int32</td><td>Choice ID</td></tr><tr><td>SiteID</td><td>Int32</td><td>Site ID</td></tr><tr><td>SiteName</td><td>String</td><td>Site Name</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"Sites\": [\r\n    {\r\n      \"SiteID\": 1,\r\n      \"ChoiceID\": 2,\r\n      \"SiteName\": \"sample string 3\"\r\n    },\r\n    {\r\n      \"SiteID\": 1,\r\n      \"ChoiceID\": 2,\r\n      \"SiteName\": \"sample string 3\"\r\n    }\r\n  ],\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"e044a0e7-abd9-4052-b470-f90bbdf26470"},{"name":"Post","id":"b2f06ad9-cec8-4eeb-9e98-7ff5a3b41c32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"Responses\": [\r\n    {\r\n      \"QuestionID\": 1,\r\n      \"NodeValue\": \"sample string 2\",\r\n      \"TextValue\": \"sample string 3\",\r\n      \"FileName\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"QuestionID\": 1,\r\n      \"NodeValue\": \"sample string 2\",\r\n      \"TextValue\": \"sample string 3\",\r\n      \"FileName\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"IsCompleted\": true,\r\n  \"CtcID\": 1,\r\n  \"SessionID\": \"sample string 3\",\r\n  \"Request\": {\r\n    \"UserHostAddress\": \"sample string 1\",\r\n    \"BrowserName\": \"sample string 2\",\r\n    \"BrowserVersion\": \"sample string 3\",\r\n    \"BrowserMajorVersion\": \"sample string 4\",\r\n    \"BrowserMinorVersion\": \"sample string 5\",\r\n    \"BrowserCookies\": true,\r\n    \"BrowserActiveXControls\": true,\r\n    \"BrowserJavaScript\": true,\r\n    \"BrowserJavaApplets\": true,\r\n    \"BrowserVBScript\": true,\r\n    \"BrowserBackgroundSounds\": true,\r\n    \"BrowserFrames\": true,\r\n    \"BrowserTables\": true,\r\n    \"BrowserCDF\": true,\r\n    \"BrowserAOL\": true,\r\n    \"BrowserCrawler\": true,\r\n    \"BrowserBeta\": true,\r\n    \"BrowserW3CDomVersion\": \"sample string 18\",\r\n    \"BrowserMSDomVersion\": \"sample string 19\",\r\n    \"BrowserClrVersion\": \"sample string 20\",\r\n    \"BrowserPlatform\": \"sample string 21\",\r\n    \"BrowserEcmaScriptVersion\": \"sample string 22\",\r\n    \"LogonUserIdentityName\": \"sample string 23\",\r\n    \"LogonUserIdentityUser\": \"sample string 24\",\r\n    \"Url\": \"sample string 25\",\r\n    \"UrlReferrer\": \"sample string 26\",\r\n    \"QueryString\": \"sample string 27\",\r\n    \"UserAgent\": \"sample string 28\"\r\n  },\r\n  \"Source\": \"sample string 4\",\r\n  \"Tracking\": {\r\n    \"Code\": \"sample string 1\",\r\n    \"Source\": \"sample string 2\"\r\n  }\r\n}"},"url":"https://{{Host}}/api/Survey/Post","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>PostSurveyInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Contact CtcID</td><td>False</td></tr><tr><td>IsCompleted</td><td>Boolean</td><td>Shows if the respondent completed answering the survey</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td></td><td>True</td></tr><tr><td>Request</td><td>RequestInfo</td><td>Collection of http request header fields</td><td>False</td></tr><tr><td>Responses</td><td>List&lt;Response&gt;</td><td></td><td>True</td></tr><tr><td>SessionID</td><td>String</td><td>Unique identifier of the call</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>The Source of the call</td><td>False</td></tr><tr><td>Tracking</td><td>Tracking</td><td>Website Tracking</td><td>False</td></tr><tr><td><h4>RequestInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrowserActiveXControls</td><td>Boolean</td><td>A value indicating whether the browser supports ActiveX controls</td><td>False</td></tr><tr><td>BrowserAOL</td><td>Boolean</td><td>A value indicating whether the client is an America Online (AOL) browser</td><td>False</td></tr><tr><td>BrowserBackgroundSounds</td><td>Boolean</td><td>A value indicating whether the browser supports playing background sounds</td><td>False</td></tr><tr><td>BrowserBeta</td><td>Boolean</td><td>A value indicating whether the browser is a beta version</td><td>False</td></tr><tr><td>BrowserCDF</td><td>Boolean</td><td>A value indicating whether the browser supports Channel Definition Format (CDF) for webcasting</td><td>False</td></tr><tr><td>BrowserClrVersion</td><td>String</td><td>The version of the .NET Framework that is installed on the client</td><td>False</td></tr><tr><td>BrowserCookies</td><td>Boolean</td><td>A value indicating whether the browser supports cookies</td><td>False</td></tr><tr><td>BrowserCrawler</td><td>Boolean</td><td>A value indicating whether the browser is a search engine Web crawler</td><td>False</td></tr><tr><td>BrowserEcmaScriptVersion</td><td>String</td><td>The version number of ECMAScript that the browser supports</td><td>False</td></tr><tr><td>BrowserFrames</td><td>Boolean</td><td>Indicates whether the browser supports HTML frames</td><td>False</td></tr><tr><td>BrowserJavaApplets</td><td>Boolean</td><td>A value indicating whether the browser supports Java</td><td>False</td></tr><tr><td>BrowserJavaScript</td><td>Boolean</td><td>A value indicating whether the browser supports JavaScript</td><td>False</td></tr><tr><td>BrowserMajorVersion</td><td>String</td><td>The major (integer) version number of the browser</td><td>False</td></tr><tr><td>BrowserMinorVersion</td><td>String</td><td>The minor (decimal) version number of the browser</td><td>False</td></tr><tr><td>BrowserMSDomVersion</td><td>String</td><td>The version of Microsoft HTML (MSHTML) Document Object Model (DOM) that the browser supports</td><td>False</td></tr><tr><td>BrowserName</td><td>String</td><td>The full name of the browser</td><td>False</td></tr><tr><td>BrowserPlatform</td><td>String</td><td>The name of the platform that the client uses, if it is known</td><td>False</td></tr><tr><td>BrowserTables</td><td>Boolean</td><td>Indicates whether the browser supports HTML table elements</td><td>False</td></tr><tr><td>BrowserVBScript</td><td>Boolean</td><td>A value indicating whether the browser supports Visual Basic Scripting edition (VBScript)</td><td>False</td></tr><tr><td>BrowserVersion</td><td>String</td><td>The full version number (integer and decimal) of the browser as a string</td><td>False</td></tr><tr><td>BrowserW3CDomVersion</td><td>String</td><td>The version of the World Wide Web Consortium (W3C) XML Document Object Model (DOM) that the browser supports</td><td>False</td></tr><tr><td>LogonUserIdentityName</td><td>String</td><td>Gets the user's Windows logon name</td><td>False</td></tr><tr><td>LogonUserIdentityUser</td><td>String</td><td>Gets the security identifier (SID) for the user</td><td>False</td></tr><tr><td>QueryString</td><td>String</td><td>The collection of HTTP query string variables</td><td>False</td></tr><tr><td>Url</td><td>String</td><td>Information about the URL of the current request</td><td>False</td></tr><tr><td>UrlReferrer</td><td>String</td><td>Information about the URL of the client's previous request that linked to the current URL</td><td>False</td></tr><tr><td>UserAgent</td><td>String</td><td>The user agent string of the user agent</td><td>False</td></tr><tr><td>UserHostAddress</td><td>String</td><td>IP host address of the remote client</td><td>False</td></tr><tr><td><h4>Response Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FileName</td><td>String</td><td>this field should be used when the type question is an upload file</td><td>False</td></tr><tr><td>NodeValue</td><td>String</td><td>Question ChoiceID</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32</td><td>QuestionID</td><td>False</td></tr><tr><td>TextValue</td><td>String</td><td>Text value of the answer (if any)</td><td>False</td></tr><tr><td><h4>Tracking Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Code</td><td>String</td><td>Tracking Code</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>Tracking Source</td><td>False</td></tr></table>","urlObject":{"protocol":"https","path":["api","Survey","Post"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"54a375cf-4b81-45f0-b21e-65fe6fec588e","name":"api/Survey/Post Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"Responses\": [\r\n    {\r\n      \"QuestionID\": 1,\r\n      \"NodeValue\": \"sample string 2\",\r\n      \"TextValue\": \"sample string 3\",\r\n      \"FileName\": \"sample string 4\"\r\n    },\r\n    {\r\n      \"QuestionID\": 1,\r\n      \"NodeValue\": \"sample string 2\",\r\n      \"TextValue\": \"sample string 3\",\r\n      \"FileName\": \"sample string 4\"\r\n    }\r\n  ],\r\n  \"IsCompleted\": true,\r\n  \"CtcID\": 1,\r\n  \"SessionID\": \"sample string 3\",\r\n  \"Request\": {\r\n    \"UserHostAddress\": \"sample string 1\",\r\n    \"BrowserName\": \"sample string 2\",\r\n    \"BrowserVersion\": \"sample string 3\",\r\n    \"BrowserMajorVersion\": \"sample string 4\",\r\n    \"BrowserMinorVersion\": \"sample string 5\",\r\n    \"BrowserCookies\": true,\r\n    \"BrowserActiveXControls\": true,\r\n    \"BrowserJavaScript\": true,\r\n    \"BrowserJavaApplets\": true,\r\n    \"BrowserVBScript\": true,\r\n    \"BrowserBackgroundSounds\": true,\r\n    \"BrowserFrames\": true,\r\n    \"BrowserTables\": true,\r\n    \"BrowserCDF\": true,\r\n    \"BrowserAOL\": true,\r\n    \"BrowserCrawler\": true,\r\n    \"BrowserBeta\": true,\r\n    \"BrowserW3CDomVersion\": \"sample string 18\",\r\n    \"BrowserMSDomVersion\": \"sample string 19\",\r\n    \"BrowserClrVersion\": \"sample string 20\",\r\n    \"BrowserPlatform\": \"sample string 21\",\r\n    \"BrowserEcmaScriptVersion\": \"sample string 22\",\r\n    \"LogonUserIdentityName\": \"sample string 23\",\r\n    \"LogonUserIdentityUser\": \"sample string 24\",\r\n    \"Url\": \"sample string 25\",\r\n    \"UrlReferrer\": \"sample string 26\",\r\n    \"QueryString\": \"sample string 27\",\r\n    \"UserAgent\": \"sample string 28\"\r\n  },\r\n  \"Source\": \"sample string 4\",\r\n  \"Tracking\": {\r\n    \"Code\": \"sample string 1\",\r\n    \"Source\": \"sample string 2\"\r\n  }\r\n}"},"url":"https://{{Host}}/api/Survey/Post","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PostSurveyInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Contact CtcID</td><td>False</td></tr><tr><td>IsCompleted</td><td>Boolean</td><td>Shows if the respondent completed answering the survey</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td></td><td>True</td></tr><tr><td>Request</td><td>RequestInfo</td><td>Collection of http request header fields</td><td>False</td></tr><tr><td>Responses</td><td>List&lt;Response&gt;</td><td></td><td>True</td></tr><tr><td>SessionID</td><td>String</td><td>Unique identifier of the call</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>The Source of the call</td><td>False</td></tr><tr><td>Tracking</td><td>Tracking</td><td>Website Tracking</td><td>False</td></tr><tr><td colspan=4><h4>RequestInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrowserActiveXControls</td><td>Boolean</td><td>A value indicating whether the browser supports ActiveX controls</td><td>False</td></tr><tr><td>BrowserAOL</td><td>Boolean</td><td>A value indicating whether the client is an America Online (AOL) browser</td><td>False</td></tr><tr><td>BrowserBackgroundSounds</td><td>Boolean</td><td>A value indicating whether the browser supports playing background sounds</td><td>False</td></tr><tr><td>BrowserBeta</td><td>Boolean</td><td>A value indicating whether the browser is a beta version</td><td>False</td></tr><tr><td>BrowserCDF</td><td>Boolean</td><td>A value indicating whether the browser supports Channel Definition Format (CDF) for webcasting</td><td>False</td></tr><tr><td>BrowserClrVersion</td><td>String</td><td>The version of the .NET Framework that is installed on the client</td><td>False</td></tr><tr><td>BrowserCookies</td><td>Boolean</td><td>A value indicating whether the browser supports cookies</td><td>False</td></tr><tr><td>BrowserCrawler</td><td>Boolean</td><td>A value indicating whether the browser is a search engine Web crawler</td><td>False</td></tr><tr><td>BrowserEcmaScriptVersion</td><td>String</td><td>The version number of ECMAScript that the browser supports</td><td>False</td></tr><tr><td>BrowserFrames</td><td>Boolean</td><td>Indicates whether the browser supports HTML frames</td><td>False</td></tr><tr><td>BrowserJavaApplets</td><td>Boolean</td><td>A value indicating whether the browser supports Java</td><td>False</td></tr><tr><td>BrowserJavaScript</td><td>Boolean</td><td>A value indicating whether the browser supports JavaScript</td><td>False</td></tr><tr><td>BrowserMajorVersion</td><td>String</td><td>The major (integer) version number of the browser</td><td>False</td></tr><tr><td>BrowserMinorVersion</td><td>String</td><td>The minor (decimal) version number of the browser</td><td>False</td></tr><tr><td>BrowserMSDomVersion</td><td>String</td><td>The version of Microsoft HTML (MSHTML) Document Object Model (DOM) that the browser supports</td><td>False</td></tr><tr><td>BrowserName</td><td>String</td><td>The full name of the browser</td><td>False</td></tr><tr><td>BrowserPlatform</td><td>String</td><td>The name of the platform that the client uses, if it is known</td><td>False</td></tr><tr><td>BrowserTables</td><td>Boolean</td><td>Indicates whether the browser supports HTML table elements</td><td>False</td></tr><tr><td>BrowserVBScript</td><td>Boolean</td><td>A value indicating whether the browser supports Visual Basic Scripting edition (VBScript)</td><td>False</td></tr><tr><td>BrowserVersion</td><td>String</td><td>The full version number (integer and decimal) of the browser as a string</td><td>False</td></tr><tr><td>BrowserW3CDomVersion</td><td>String</td><td>The version of the World Wide Web Consortium (W3C) XML Document Object Model (DOM) that the browser supports</td><td>False</td></tr><tr><td>LogonUserIdentityName</td><td>String</td><td>Gets the user's Windows logon name</td><td>False</td></tr><tr><td>LogonUserIdentityUser</td><td>String</td><td>Gets the security identifier (SID) for the user</td><td>False</td></tr><tr><td>QueryString</td><td>String</td><td>The collection of HTTP query string variables</td><td>False</td></tr><tr><td>Url</td><td>String</td><td>Information about the URL of the current request</td><td>False</td></tr><tr><td>UrlReferrer</td><td>String</td><td>Information about the URL of the client's previous request that linked to the current URL</td><td>False</td></tr><tr><td>UserAgent</td><td>String</td><td>The user agent string of the user agent</td><td>False</td></tr><tr><td>UserHostAddress</td><td>String</td><td>IP host address of the remote client</td><td>False</td></tr><tr><td colspan=4><h4>Response Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FileName</td><td>String</td><td>this field should be used when the type question is an upload file</td><td>False</td></tr><tr><td>NodeValue</td><td>String</td><td>Question ChoiceID</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32</td><td>QuestionID</td><td>False</td></tr><tr><td>TextValue</td><td>String</td><td>Text value of the answer (if any)</td><td>False</td></tr><tr><td colspan=4><h4>Tracking Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Code</td><td>String</td><td>Tracking Code</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>Tracking Source</td><td>False</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"SessionID\": \"sample string 2\",\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"b2f06ad9-cec8-4eeb-9e98-7ff5a3b41c32"}],"id":"a5c0e039-6c5b-4352-8abf-0476753121a6","description":"<p>all <b>SURVEY</b> methods are deprecated , Please use the <b>SURVEYAPI</b> methods</p>\n","_postman_id":"a5c0e039-6c5b-4352-8abf-0476753121a6"},{"name":"SurveyApi","item":[{"name":"AddAllOptinQuestion","id":"9f702864-6d89-4d7b-b6fb-7c124bd4a697","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OptinChoiceLabel\": \"sample string 1\",\r\n  \"OptoutChoiceLabel\": \"sample string 2\",\r\n  \"OpCode\": 3,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 4\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 5\",\r\n  \"QuestionType\": \"sample string 6\",\r\n  \"QuestionSubType\": \"sample string 7\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddAllOptinQuestion","description":" <p>\n            Post Optin question\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>AllOptinQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>OptinChoiceLabel</td><td>String</td><td>Optin Choice Text</td><td>False</td></tr><tr><td>OptoutChoiceLabel</td><td>String</td><td>Optout Choice Text</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddAllOptinQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"c39f258d-af68-41b7-ab6f-0684b1b9a49d","name":"api/SurveyApi/AddAllOptinQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OptinChoiceLabel\": \"sample string 1\",\r\n  \"OptoutChoiceLabel\": \"sample string 2\",\r\n  \"OpCode\": 3,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 4\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 5\",\r\n  \"QuestionType\": \"sample string 6\",\r\n  \"QuestionSubType\": \"sample string 7\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddAllOptinQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post Optin question\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>AllOptinQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>OptinChoiceLabel</td><td>String</td><td>Optin Choice Text</td><td>False</td></tr><tr><td>OptoutChoiceLabel</td><td>String</td><td>Optout Choice Text</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9f702864-6d89-4d7b-b6fb-7c124bd4a697"},{"name":"AddCaptchaQuestion","id":"8b51dd24-434c-4b7e-aeda-7f51458b2792","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddCaptchaQuestion","description":" <p>\n            Post Upload question\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>QuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddCaptchaQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"c5eafac0-42cf-4a8e-9a6a-bed399287796","name":"api/SurveyApi/AddCaptchaQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddCaptchaQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post Upload question\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>QuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8b51dd24-434c-4b7e-aeda-7f51458b2792"},{"name":"AddChoiceQuestion","id":"c393cf02-ae50-4d5e-a842-b11d59be5c6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"KnownNodeCodeFromTree\": 1,\r\n  \"Preticked\": true,\r\n  \"RandomiseResponsesOrder\": true,\r\n  \"Choices\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"Label\": \"sample string 1\",\r\n      \"IsOther\": true,\r\n      \"IsRandom\": true,\r\n      \"IsMaster\": true,\r\n      \"Order\": 1\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"Label\": \"sample string 1\",\r\n      \"IsOther\": true,\r\n      \"IsRandom\": true,\r\n      \"IsMaster\": true,\r\n      \"Order\": 1\r\n    }\r\n  ],\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddChoiceQuestion","description":" <p>\n            Post Choices question\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>ChoiceQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Choices</td><td>List&lt;ChoiceItem&gt;</td><td>Response Options</td><td>False</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>KnownNodeCodeFromTree</td><td>Int32 (nullable)</td><td>Existing Node Code From Tree</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>Preticked</td><td>Boolean (nullable)</td><td>Pre-Tick All Options</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>RandomiseResponsesOrder</td><td>Boolean (nullable)</td><td>Randomise The Options Order</td><td>False</td></tr><tr><td><h4>ChoiceItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ID</td><td>Int32 (nullable)</td><td>Option ID</td><td>False</td></tr><tr><td>IsMaster</td><td>Boolean (nullable)</td><td>\"Exclusive\" Option</td><td>False</td></tr><tr><td>IsOther</td><td>Boolean (nullable)</td><td>\"Other\" Option</td><td>False</td></tr><tr><td>IsRandom</td><td>Boolean (nullable)</td><td>Randomise The Option Order</td><td>False</td></tr><tr><td>Label</td><td>String</td><td>Option Text</td><td>False</td></tr><tr><td>Order</td><td>Int32 (nullable)</td><td>Option Order</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddChoiceQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"a2e21097-4741-4bcb-b8a9-aafe5a300859","name":"api/SurveyApi/AddChoiceQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"KnownNodeCodeFromTree\": 1,\r\n  \"Preticked\": true,\r\n  \"RandomiseResponsesOrder\": true,\r\n  \"Choices\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"Label\": \"sample string 1\",\r\n      \"IsOther\": true,\r\n      \"IsRandom\": true,\r\n      \"IsMaster\": true,\r\n      \"Order\": 1\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"Label\": \"sample string 1\",\r\n      \"IsOther\": true,\r\n      \"IsRandom\": true,\r\n      \"IsMaster\": true,\r\n      \"Order\": 1\r\n    }\r\n  ],\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddChoiceQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post Choices question\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ChoiceQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Choices</td><td>List&lt;ChoiceItem&gt;</td><td>Response Options</td><td>False</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>KnownNodeCodeFromTree</td><td>Int32 (nullable)</td><td>Existing Node Code From Tree</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>Preticked</td><td>Boolean (nullable)</td><td>Pre-Tick All Options</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>RandomiseResponsesOrder</td><td>Boolean (nullable)</td><td>Randomise The Options Order</td><td>False</td></tr><tr><td colspan=4><h4>ChoiceItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ID</td><td>Int32 (nullable)</td><td>Option ID</td><td>False</td></tr><tr><td>IsMaster</td><td>Boolean (nullable)</td><td>\"Exclusive\" Option</td><td>False</td></tr><tr><td>IsOther</td><td>Boolean (nullable)</td><td>\"Other\" Option</td><td>False</td></tr><tr><td>IsRandom</td><td>Boolean (nullable)</td><td>Randomise The Option Order</td><td>False</td></tr><tr><td>Label</td><td>String</td><td>Option Text</td><td>False</td></tr><tr><td>Order</td><td>Int32 (nullable)</td><td>Option Order</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c393cf02-ae50-4d5e-a842-b11d59be5c6c"},{"name":"AddDateTimeQuestion","id":"c9f63034-363f-4797-a9cf-8f70e8076a50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"IsDynamicDateRange\": true,\r\n  \"Static\": {\r\n    \"EarliestDate\": \"2026-03-25T07:30:10.1482687+00:00\",\r\n    \"LatestDate\": \"2026-03-25T07:30:10.1482687+00:00\"\r\n  },\r\n  \"Dynamic\": {\r\n    \"EarliestValue\": 1,\r\n    \"LatestValue\": 1,\r\n    \"EarliestUnit\": 0,\r\n    \"LatestUnit\": 0\r\n  },\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddDateTimeQuestion","description":" <p>\n            Post Date question OR Time question\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>DateAndTimeQuestion Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Dynamic</td><td>DynamicDateRange</td><td></td><td>False</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsDynamicDateRange</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>Static</td><td>StaticDateRange</td><td></td><td>False</td></tr><tr><td><h4>DynamicDateRange Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>EarliestUnit</td><td>PeriodUnit (nullable)</td><td></td><td>False</td></tr><tr><td>EarliestValue</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>LatestUnit</td><td>PeriodUnit (nullable)</td><td></td><td>False</td></tr><tr><td>LatestValue</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>StaticDateRange Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>EarliestDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>LatestDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddDateTimeQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"67eaa2da-ee21-4660-8b33-48030ef8af0e","name":"api/SurveyApi/AddDateTimeQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"IsDynamicDateRange\": true,\r\n  \"Static\": {\r\n    \"EarliestDate\": \"2026-03-25T07:30:10.1482687+00:00\",\r\n    \"LatestDate\": \"2026-03-25T07:30:10.1482687+00:00\"\r\n  },\r\n  \"Dynamic\": {\r\n    \"EarliestValue\": 1,\r\n    \"LatestValue\": 1,\r\n    \"EarliestUnit\": 0,\r\n    \"LatestUnit\": 0\r\n  },\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddDateTimeQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post Date question OR Time question\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>DateAndTimeQuestion Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Dynamic</td><td>DynamicDateRange</td><td></td><td>False</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsDynamicDateRange</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>Static</td><td>StaticDateRange</td><td></td><td>False</td></tr><tr><td colspan=4><h4>DynamicDateRange Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>EarliestUnit</td><td>PeriodUnit (nullable)</td><td></td><td>False</td></tr><tr><td>EarliestValue</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>LatestUnit</td><td>PeriodUnit (nullable)</td><td></td><td>False</td></tr><tr><td>LatestValue</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>StaticDateRange Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>EarliestDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>LatestDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c9f63034-363f-4797-a9cf-8f70e8076a50"},{"name":"AddFeedbackScoreQuestion","id":"f9e6f622-11ef-463e-b037-d1b9a925b56d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ScoreRange\": 0,\r\n  \"UseEmoticons\": true,\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddFeedbackScoreQuestion","description":" <p>\n            Post Feedback Score question\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>FeedbackScoreQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>ScoreRange</td><td>ScoreRangeType</td><td>Score Range\n            0 : OneToFive\n            1 : ZeroToTen</td><td>False</td></tr><tr><td>UseEmoticons</td><td>Boolean (nullable)</td><td>Use Emoticons</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddFeedbackScoreQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"e1d075ac-b9d2-4116-a36b-8882124e5c47","name":"api/SurveyApi/AddFeedbackScoreQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ScoreRange\": 0,\r\n  \"UseEmoticons\": true,\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddFeedbackScoreQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post Feedback Score question\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>FeedbackScoreQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>ScoreRange</td><td>ScoreRangeType</td><td>Score Range\n            0 : OneToFive\n            1 : ZeroToTen</td><td>False</td></tr><tr><td>UseEmoticons</td><td>Boolean (nullable)</td><td>Use Emoticons</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f9e6f622-11ef-463e-b037-d1b9a925b56d"},{"name":"AddKnownQuestion","id":"d808e04a-c347-470e-9b82-b231b96b499e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"KnownType\": 1,\r\n  \"SelectedOptions\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"DisplayRegionFilter\": true,\r\n  \"IsStaticLocations\": true,\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddKnownQuestion","description":" <p>\n            Post Knwon question (Location,Category,Subcategory,Preferred Site)\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>KnownQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DisplayRegionFilter</td><td>Boolean (nullable)</td><td>Display Region and Sub region as a Filter For the Location/PreferredSite Questions</td><td>False</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>IsStaticLocations</td><td>Boolean (nullable)</td><td>Automatically Display New Locations in the Location/PreferredSite Question</td><td>False</td></tr><tr><td>KnownType</td><td>KnownQuestionType</td><td>Known Type\n            0 : Location\n            1 : Category\n            2 : SubCategory\n            3 : PreferredSite</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>SelectedOptions</td><td>List&lt;Int32&gt;</td><td>Options To Display (By difault: display all options)</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddKnownQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"0690d17f-809f-4bc1-9a4a-1d2bd4148574","name":"api/SurveyApi/AddKnownQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"KnownType\": 1,\r\n  \"SelectedOptions\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"DisplayRegionFilter\": true,\r\n  \"IsStaticLocations\": true,\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddKnownQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post Knwon question (Location,Category,Subcategory,Preferred Site)\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>KnownQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>DisplayRegionFilter</td><td>Boolean (nullable)</td><td>Display Region and Sub region as a Filter For the Location/PreferredSite Questions</td><td>False</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>IsStaticLocations</td><td>Boolean (nullable)</td><td>Automatically Display New Locations in the Location/PreferredSite Question</td><td>False</td></tr><tr><td>KnownType</td><td>KnownQuestionType</td><td>Known Type\n            0 : Location\n            1 : Category\n            2 : SubCategory\n            3 : PreferredSite</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>SelectedOptions</td><td>List&lt;Int32&gt;</td><td>Options To Display (By difault: display all options)</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d808e04a-c347-470e-9b82-b231b96b499e"},{"name":"AddLabelQuestion","id":"9c9fb719-9214-4d33-b10d-bcff7144c222","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddLabelQuestion","description":" <p>\n            Post label question\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>QuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddLabelQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"70754a5c-6a1a-4a19-a658-5f7f7b0b0c25","name":"api/SurveyApi/AddLabelQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddLabelQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post label question\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>QuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9c9fb719-9214-4d33-b10d-bcff7144c222"},{"name":"AddMatrixQuestion","id":"de30917a-f13e-471b-b874-ad8f8ea99f24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Rows\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"Label\": \"sample string 1\",\r\n      \"IsOther\": true,\r\n      \"IsRandom\": true,\r\n      \"IsMaster\": true,\r\n      \"Order\": 1\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"Label\": \"sample string 1\",\r\n      \"IsOther\": true,\r\n      \"IsRandom\": true,\r\n      \"IsMaster\": true,\r\n      \"Order\": 1\r\n    }\r\n  ],\r\n  \"Columns\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"Label\": \"sample string 1\",\r\n      \"IsOther\": true,\r\n      \"IsRandom\": true,\r\n      \"IsMaster\": true,\r\n      \"Order\": 1\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"Label\": \"sample string 1\",\r\n      \"IsOther\": true,\r\n      \"IsRandom\": true,\r\n      \"IsMaster\": true,\r\n      \"Order\": 1\r\n    }\r\n  ],\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddMatrixQuestion","description":" <p>\n            Post Matrix question\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>MatrixQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Columns</td><td>List&lt;ChoiceItem&gt;</td><td>Column Choices</td><td>False</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>Rows</td><td>List&lt;ChoiceItem&gt;</td><td>Row Choices</td><td>False</td></tr><tr><td><h4>ChoiceItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ID</td><td>Int32 (nullable)</td><td>Option ID</td><td>False</td></tr><tr><td>IsMaster</td><td>Boolean (nullable)</td><td>\"Exclusive\" Option</td><td>False</td></tr><tr><td>IsOther</td><td>Boolean (nullable)</td><td>\"Other\" Option</td><td>False</td></tr><tr><td>IsRandom</td><td>Boolean (nullable)</td><td>Randomise The Option Order</td><td>False</td></tr><tr><td>Label</td><td>String</td><td>Option Text</td><td>False</td></tr><tr><td>Order</td><td>Int32 (nullable)</td><td>Option Order</td><td>False</td></tr><tr><td><h4>ChoiceItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ID</td><td>Int32 (nullable)</td><td>Option ID</td><td>False</td></tr><tr><td>IsMaster</td><td>Boolean (nullable)</td><td>\"Exclusive\" Option</td><td>False</td></tr><tr><td>IsOther</td><td>Boolean (nullable)</td><td>\"Other\" Option</td><td>False</td></tr><tr><td>IsRandom</td><td>Boolean (nullable)</td><td>Randomise The Option Order</td><td>False</td></tr><tr><td>Label</td><td>String</td><td>Option Text</td><td>False</td></tr><tr><td>Order</td><td>Int32 (nullable)</td><td>Option Order</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddMatrixQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"8ae7f5f2-e342-4a2e-9fb7-d362229fd2ed","name":"api/SurveyApi/AddMatrixQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"Rows\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"Label\": \"sample string 1\",\r\n      \"IsOther\": true,\r\n      \"IsRandom\": true,\r\n      \"IsMaster\": true,\r\n      \"Order\": 1\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"Label\": \"sample string 1\",\r\n      \"IsOther\": true,\r\n      \"IsRandom\": true,\r\n      \"IsMaster\": true,\r\n      \"Order\": 1\r\n    }\r\n  ],\r\n  \"Columns\": [\r\n    {\r\n      \"ID\": 1,\r\n      \"Label\": \"sample string 1\",\r\n      \"IsOther\": true,\r\n      \"IsRandom\": true,\r\n      \"IsMaster\": true,\r\n      \"Order\": 1\r\n    },\r\n    {\r\n      \"ID\": 1,\r\n      \"Label\": \"sample string 1\",\r\n      \"IsOther\": true,\r\n      \"IsRandom\": true,\r\n      \"IsMaster\": true,\r\n      \"Order\": 1\r\n    }\r\n  ],\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddMatrixQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post Matrix question\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>MatrixQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Columns</td><td>List&lt;ChoiceItem&gt;</td><td>Column Choices</td><td>False</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>Rows</td><td>List&lt;ChoiceItem&gt;</td><td>Row Choices</td><td>False</td></tr><tr><td colspan=4><h4>ChoiceItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ID</td><td>Int32 (nullable)</td><td>Option ID</td><td>False</td></tr><tr><td>IsMaster</td><td>Boolean (nullable)</td><td>\"Exclusive\" Option</td><td>False</td></tr><tr><td>IsOther</td><td>Boolean (nullable)</td><td>\"Other\" Option</td><td>False</td></tr><tr><td>IsRandom</td><td>Boolean (nullable)</td><td>Randomise The Option Order</td><td>False</td></tr><tr><td>Label</td><td>String</td><td>Option Text</td><td>False</td></tr><tr><td>Order</td><td>Int32 (nullable)</td><td>Option Order</td><td>False</td></tr><tr><td colspan=4><h4>ChoiceItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ID</td><td>Int32 (nullable)</td><td>Option ID</td><td>False</td></tr><tr><td>IsMaster</td><td>Boolean (nullable)</td><td>\"Exclusive\" Option</td><td>False</td></tr><tr><td>IsOther</td><td>Boolean (nullable)</td><td>\"Other\" Option</td><td>False</td></tr><tr><td>IsRandom</td><td>Boolean (nullable)</td><td>Randomise The Option Order</td><td>False</td></tr><tr><td>Label</td><td>String</td><td>Option Text</td><td>False</td></tr><tr><td>Order</td><td>Int32 (nullable)</td><td>Option Order</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"de30917a-f13e-471b-b874-ad8f8ea99f24"},{"name":"AddMultiChannelsOptinQuestion","id":"9bbc35d2-9d10-4fef-9f04-fc63a7777baa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OptinChannels\": [\r\n    0,\r\n    0\r\n  ],\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddMultiChannelsOptinQuestion","description":" <p>\n            Post Marketing Optin – Multi Channel question\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>OptinQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>OptinChannels</td><td>List&lt;OptionChannel&gt;</td><td>Optin Channels :\n             0 : Email,\n             1 : SMS,\n             2 : Mail,\n             3 : Phone,</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddMultiChannelsOptinQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"b6f0f54f-cc17-4125-af62-009605adf882","name":"api/SurveyApi/AddMultiChannelsOptinQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OptinChannels\": [\r\n    0,\r\n    0\r\n  ],\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddMultiChannelsOptinQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post Marketing Optin – Multi Channel question\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>OptinQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>OptinChannels</td><td>List&lt;OptionChannel&gt;</td><td>Optin Channels :\n             0 : Email,\n             1 : SMS,\n             2 : Mail,\n             3 : Phone,</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9bbc35d2-9d10-4fef-9f04-fc63a7777baa"},{"name":"AddNameAndAddressQuestion","id":"ee59f83b-7ff9-45b0-9cf1-cd5712e3e48c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CreateAsMasterContact\": true,\r\n  \"CreateAsContact\": true,\r\n  \"RelationID\": 1,\r\n  \"PrePopulateContactDetails\": true,\r\n  \"UpdateContactDetails\": true,\r\n  \"IncorrectDetailsMessage\": \"sample string 1\",\r\n  \"FlagContactAsOptedIn\": true,\r\n  \"SourceID\": \"sample string 2\",\r\n  \"PrivacyPolicyLink\": \"sample string 3\",\r\n  \"PrivacyPolicyText\": \"sample string 4\",\r\n  \"ContactInformationFields\": [\r\n    {\r\n      \"FieldType\": 0,\r\n      \"Text\": \"sample string 1\",\r\n      \"IsMandatory\": true\r\n    },\r\n    {\r\n      \"FieldType\": 0,\r\n      \"Text\": \"sample string 1\",\r\n      \"IsMandatory\": true\r\n    }\r\n  ],\r\n  \"OpCode\": 5,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 6\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 7\",\r\n  \"QuestionType\": \"sample string 8\",\r\n  \"QuestionSubType\": \"sample string 9\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddNameAndAddressQuestion","description":" <p>\n            Post Name and Address question \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>NameAddresQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ContactInformationFields</td><td>List&lt;ContactInformationField&gt;</td><td>Contact Information Fields</td><td>False</td></tr><tr><td>CreateAsContact</td><td>Boolean (nullable)</td><td>Create As Contact</td><td>False</td></tr><tr><td>CreateAsMasterContact</td><td>Boolean (nullable)</td><td>Create As Master Contact</td><td>False</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>FlagContactAsOptedIn</td><td>Boolean (nullable)</td><td>Flag Contact As Opted In</td><td>False</td></tr><tr><td>IncorrectDetailsMessage</td><td>String</td><td>Message displayed If The Contact Details Are Incorrect</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>PrePopulateContactDetails</td><td>Boolean (nullable)</td><td>Pre-Populate Contact Details</td><td>False</td></tr><tr><td>PrivacyPolicyLink</td><td>String</td><td>Link To Your Privacy Policy</td><td>False</td></tr><tr><td>PrivacyPolicyText</td><td>String</td><td>Link Text To Your Privacy Policy</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>RelationID</td><td>Int32 (nullable)</td><td>Relation With The Master Contact (1:Referrer Friend , 2:Family )</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source</td><td>False</td></tr><tr><td>UpdateContactDetails</td><td>Boolean (nullable)</td><td>Update Contact Details</td><td>False</td></tr><tr><td><h4>ContactInformationField Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldType</td><td>ContactInformationFieldType</td><td>Field Type :\n            0 : Title \n            1 : FirstName \n            2 : LastName \n            3 : Address \n            4 : Address2 \n            5 : CityTown \n            6 : County \n            7 : PostCode \n            8 : Country \n            9 : EmailAddress \n            10: MobileNumber \n            11: PhoneNumber \n            12: Gender \n            13: BirthDate \n            14: Parent Email Address</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Field</td><td>False</td></tr><tr><td>Text</td><td>String</td><td>Field Text</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddNameAndAddressQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"797e4084-62eb-4b3a-ba37-4b573c4af099","name":"api/SurveyApi/AddNameAndAddressQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CreateAsMasterContact\": true,\r\n  \"CreateAsContact\": true,\r\n  \"RelationID\": 1,\r\n  \"PrePopulateContactDetails\": true,\r\n  \"UpdateContactDetails\": true,\r\n  \"IncorrectDetailsMessage\": \"sample string 1\",\r\n  \"FlagContactAsOptedIn\": true,\r\n  \"SourceID\": \"sample string 2\",\r\n  \"PrivacyPolicyLink\": \"sample string 3\",\r\n  \"PrivacyPolicyText\": \"sample string 4\",\r\n  \"ContactInformationFields\": [\r\n    {\r\n      \"FieldType\": 0,\r\n      \"Text\": \"sample string 1\",\r\n      \"IsMandatory\": true\r\n    },\r\n    {\r\n      \"FieldType\": 0,\r\n      \"Text\": \"sample string 1\",\r\n      \"IsMandatory\": true\r\n    }\r\n  ],\r\n  \"OpCode\": 5,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 6\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 7\",\r\n  \"QuestionType\": \"sample string 8\",\r\n  \"QuestionSubType\": \"sample string 9\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddNameAndAddressQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post Name and Address question \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>NameAddresQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ContactInformationFields</td><td>List&lt;ContactInformationField&gt;</td><td>Contact Information Fields</td><td>False</td></tr><tr><td>CreateAsContact</td><td>Boolean (nullable)</td><td>Create As Contact</td><td>False</td></tr><tr><td>CreateAsMasterContact</td><td>Boolean (nullable)</td><td>Create As Master Contact</td><td>False</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>FlagContactAsOptedIn</td><td>Boolean (nullable)</td><td>Flag Contact As Opted In</td><td>False</td></tr><tr><td>IncorrectDetailsMessage</td><td>String</td><td>Message displayed If The Contact Details Are Incorrect</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>PrePopulateContactDetails</td><td>Boolean (nullable)</td><td>Pre-Populate Contact Details</td><td>False</td></tr><tr><td>PrivacyPolicyLink</td><td>String</td><td>Link To Your Privacy Policy</td><td>False</td></tr><tr><td>PrivacyPolicyText</td><td>String</td><td>Link Text To Your Privacy Policy</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>RelationID</td><td>Int32 (nullable)</td><td>Relation With The Master Contact (1:Referrer Friend , 2:Family )</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source</td><td>False</td></tr><tr><td>UpdateContactDetails</td><td>Boolean (nullable)</td><td>Update Contact Details</td><td>False</td></tr><tr><td colspan=4><h4>ContactInformationField Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldType</td><td>ContactInformationFieldType</td><td>Field Type :\n            0 : Title \n            1 : FirstName \n            2 : LastName \n            3 : Address \n            4 : Address2 \n            5 : CityTown \n            6 : County \n            7 : PostCode \n            8 : Country \n            9 : EmailAddress \n            10: MobileNumber \n            11: PhoneNumber \n            12: Gender \n            13: BirthDate \n            14: Parent Email Address</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Field</td><td>False</td></tr><tr><td>Text</td><td>String</td><td>Field Text</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ee59f83b-7ff9-45b0-9cf1-cd5712e3e48c"},{"name":"AddRightToProcessQuestion","id":"15a4ae37-aee1-46ba-a5d5-b83d7b2d0880","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"PrivacyPolicyLink\": \"sample string 1\",\r\n  \"PrivacyPolicyText\": \"sample string 2\",\r\n  \"Preticked\": true,\r\n  \"OpCode\": 3,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 4\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 5\",\r\n  \"QuestionType\": \"sample string 6\",\r\n  \"QuestionSubType\": \"sample string 7\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddRightToProcessQuestion","description":" <p>\n            Post Right To Process question\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>RightToProcessQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>Preticked</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>PrivacyPolicyLink</td><td>String</td><td>Link To Your Privacy Policy</td><td>False</td></tr><tr><td>PrivacyPolicyText</td><td>String</td><td>Link Text To Your Privacy Policy</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddRightToProcessQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"d4118b3d-c1ce-4c98-98f8-e068e1711d62","name":"api/SurveyApi/AddRightToProcessQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"PrivacyPolicyLink\": \"sample string 1\",\r\n  \"PrivacyPolicyText\": \"sample string 2\",\r\n  \"Preticked\": true,\r\n  \"OpCode\": 3,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 4\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 5\",\r\n  \"QuestionType\": \"sample string 6\",\r\n  \"QuestionSubType\": \"sample string 7\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddRightToProcessQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post Right To Process question\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>RightToProcessQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>Preticked</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>PrivacyPolicyLink</td><td>String</td><td>Link To Your Privacy Policy</td><td>False</td></tr><tr><td>PrivacyPolicyText</td><td>String</td><td>Link Text To Your Privacy Policy</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"15a4ae37-aee1-46ba-a5d5-b83d7b2d0880"},{"name":"AddSurveyPage","id":"5614cf45-4f80-4a59-bdad-2f9d16c417d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/SurveyApi/AddSurveyPage?OpCode=OpCode-value","description":" <p>\n            Post survey page (used if you want to create survey with more than one page)\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddSurveyPage"],"host":["{{Host}}"],"query":[{"key":"OpCode","value":"OpCode-value"}],"variable":[]}},"response":[{"id":"2a12895c-594a-4213-88d1-b5c8651f6140","name":"api/SurveyApi/AddSurveyPage?OpCode={OpCode} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/SurveyApi/AddSurveyPage?OpCode=OpCode-value","protocol":"https","host":["{{Host}}"],"path":["api","SurveyApi","AddSurveyPage"],"query":[{"key":"OpCode","value":"OpCode-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post survey page (used if you want to create survey with more than one page)\r\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5614cf45-4f80-4a59-bdad-2f9d16c417d2"},{"name":"AddTextQuestion","id":"a815ac0d-2901-4947-b96f-17dacace5d27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"WordLimit\": 1,\r\n  \"IsExpansive\": true,\r\n  \"OpCode\": 3,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 4\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 5\",\r\n  \"QuestionType\": \"sample string 6\",\r\n  \"QuestionSubType\": \"sample string 7\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddTextQuestion","description":" <p>\n            Post text question (text or numeric)\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>TextQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsExpansive</td><td>Boolean</td><td>Response Display: Single-Multiple lines</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>WordLimit</td><td>Int32</td><td>Response Max Length</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddTextQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"82aadcaf-d007-4737-9d6e-a43e94b7e9d0","name":"api/SurveyApi/AddTextQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"WordLimit\": 1,\r\n  \"IsExpansive\": true,\r\n  \"OpCode\": 3,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 4\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 5\",\r\n  \"QuestionType\": \"sample string 6\",\r\n  \"QuestionSubType\": \"sample string 7\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddTextQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post text question (text or numeric)\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>TextQuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsExpansive</td><td>Boolean</td><td>Response Display: Single-Multiple lines</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr><tr><td>WordLimit</td><td>Int32</td><td>Response Max Length</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a815ac0d-2901-4947-b96f-17dacace5d27"},{"name":"AddUploadQuestion","id":"09440747-5d6b-4596-be1f-06cac4c11c00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddUploadQuestion","description":" <p>\n            Post Upload question\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>QuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","AddUploadQuestion"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"a74fae17-1792-4d25-a2b5-78e2ea1e591c","name":"api/SurveyApi/AddUploadQuestion Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"PageID\": 1,\r\n  \"QuestionID\": 1,\r\n  \"QuestionPosition\": 1,\r\n  \"QuestionLabel\": \"sample string 2\",\r\n  \"IsMandatory\": true,\r\n  \"ErrorMessage\": \"sample string 3\",\r\n  \"QuestionType\": \"sample string 4\",\r\n  \"QuestionSubType\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/SurveyApi/AddUploadQuestion","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post Upload question\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>QuestionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ErrorMessage</td><td>String</td><td>Error Message</td><td>False</td></tr><tr><td>IsMandatory</td><td>Boolean (nullable)</td><td>Mandatory Question</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td><td>False</td></tr><tr><td>PageID</td><td>Int32 (nullable)</td><td>Page Number</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32 (nullable)</td><td>Question ID</td><td>False</td></tr><tr><td>QuestionLabel</td><td>String</td><td>Question Title</td><td>False</td></tr><tr><td>QuestionPosition</td><td>Int32 (nullable)</td><td>Question Number</td><td>False</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question SubType</td><td>False</td></tr><tr><td>QuestionType</td><td>String</td><td>Question Type</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ID</td><td>Int32</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"09440747-5d6b-4596-be1f-06cac4c11c00"},{"name":"DeleteQuestion","id":"18a2488a-1175-452c-93b1-7a973ce7018b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/SurveyApi/DeleteQuestion?OpCode=OpCode-value&QuestionID=QuestionID-value","description":" <p>\n            Delete question\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","DeleteQuestion"],"host":["{{Host}}"],"query":[{"key":"OpCode","value":"OpCode-value"},{"key":"QuestionID","value":"QuestionID-value"}],"variable":[]}},"response":[{"id":"0c55fded-3a34-4267-bd67-cd2b75a9cfdc","name":"api/SurveyApi/DeleteQuestion?OpCode={OpCode}&QuestionID={QuestionID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/SurveyApi/DeleteQuestion?OpCode=OpCode-value&QuestionID=QuestionID-value","protocol":"https","host":["{{Host}}"],"path":["api","SurveyApi","DeleteQuestion"],"query":[{"key":"OpCode","value":"OpCode-value"},{"key":"QuestionID","value":"QuestionID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Delete question\r\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"18a2488a-1175-452c-93b1-7a973ce7018b"},{"name":"Get","id":"289d54ea-7625-4cef-a6a8-34914e9cf64a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/SurveyApi/Get?OpCode=OpCode-value","description":" <p>\n            Get survey questions\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>SurveyOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>SurveyAPI</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>SurveyAPI Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ConsentMinAge</td><td>Int32 (nullable)</td><td>Mnimum age of the customer allowed to authorise response submission</td></tr><tr><td>CreateContactQuestionID</td><td>Int32 (nullable)</td><td>The ID of the Master Contact Question</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Contact CtcID</td></tr><tr><td>Description</td><td>String</td><td>Survey description</td></tr><tr><td>IncorrectDetailsMsg</td><td>String</td><td>Message to display when the customer details are incorrect</td></tr><tr><td>LoadCtctFromResponses</td><td>Boolean</td><td>Pre-populate Customer Details From the Database</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td></tr><tr><td>Pages</td><td>List&lt;Page&gt;</td><td>Collection of pages</td></tr><tr><td>PageTitle</td><td>String</td><td>Survey title</td></tr><tr><td>ParentConsentEnabled</td><td>Boolean</td><td>When true, display the parent email address field for customer under the ConsentMinAge field</td></tr><tr><td>PrePopulateResponses</td><td>Boolean</td><td>Pre-populate Customer responses</td></tr><tr><td>SurveyIntroduction</td><td>String</td><td>Survey Intro text</td></tr><tr><td>SurveyName</td><td>String</td><td>Survey name</td></tr><tr><td>ThankyouPageDescription</td><td>String</td><td>Text displayed after survey submission</td></tr><tr><td>UpdateContact</td><td>Boolean</td><td>When set to true, customer can update his details otherwise the fields will be disabled</td></tr><tr><td><h4>Page Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Questions</td><td>List&lt;Question&gt;</td><td>Collection of questions</td></tr><tr><td>TabCode</td><td>Int32</td><td>Represents the page number</td></tr><tr><td><h4>Question Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Choices</td><td>List&lt;Choice&gt;</td><td>Collection of choices</td></tr><tr><td>DefaultText</td><td>String</td><td>Defines the default text shown in Drop Down Question</td></tr><tr><td>DefaultTime</td><td>String</td><td>Specify the default time displayed in the time question</td></tr><tr><td>DisplayEmoticons</td><td>Boolean</td><td>display feedback emoticons</td></tr><tr><td>DisplayRegionAsQuest</td><td>Boolean</td><td>Add Regions and SubRegions as filter used to for the location question</td></tr><tr><td>DynamicEarliestUnit</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DynamicEarliestValue</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DynamicLatestUnit</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DynamicLatestValue</td><td>Int32 (nullable)</td><td></td></tr><tr><td>EmoticonsID</td><td>Int32 (nullable)</td><td>The Emoticon ID for Feedback Score question type</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error message to display if no answer is provided for a mandatory question</td></tr><tr><td>Expansive</td><td>Boolean</td><td>Shows if the field is expandable or not for text fields</td></tr><tr><td>IntervalTime</td><td>Int32</td><td>Specify the number of minutes between time entries in the time question</td></tr><tr><td>IsDynamicDateRange</td><td>Boolean (nullable)</td><td></td></tr><tr><td>IsMandatory</td><td>Boolean</td><td>Shows if the response is mandatory</td></tr><tr><td>isStaticLocations</td><td>Boolean (nullable)</td><td>Specify whether new locations are added automatically or not to the survey when they are added</td></tr><tr><td>Maximum</td><td>Int32 (nullable)</td><td>The maximum value of \"Numeric Entry\" question</td></tr><tr><td>MaxSelectedOptionsCount</td><td>Int32 (nullable)</td><td>Specifies the maximum number of options that can be selected.</td></tr><tr><td>MaxTime</td><td>String</td><td>Specify the max time displayed in the time question</td></tr><tr><td>Minimum</td><td>Int32 (nullable)</td><td>The minimum value of \"Numeric Entry\" question</td></tr><tr><td>MinimumAge</td><td>Int32 (nullable)</td><td>Minimum age</td></tr><tr><td>MinSelectedOptionsCount</td><td>Int32 (nullable)</td><td>Specifies the minimum number of options that can be selected.</td></tr><tr><td>MinTime</td><td>String</td><td>Specify the min time displayed in the time question</td></tr><tr><td>Preticked</td><td>Boolean</td><td>the checkbox is checked by default</td></tr><tr><td>PrivacyPolicyLink</td><td>String</td><td></td></tr><tr><td>PrivacyPolicyText</td><td>String</td><td></td></tr><tr><td>QuestionDisplayType</td><td>String</td><td>Question display format</td></tr><tr><td>QuestionID</td><td>Int32</td><td>Question ID</td></tr><tr><td>QuestionNumber</td><td>Int16 (nullable)</td><td>Question number</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question subtype</td></tr><tr><td>QuestionText</td><td>String</td><td>Question Text/Label</td></tr><tr><td>QuestionType</td><td>String</td><td>Question type</td></tr><tr><td>QuestionTypeDescription</td><td>String</td><td>Question type description</td></tr><tr><td>RandomizeOptionsOrder</td><td>Boolean</td><td>randomize the order of options display</td></tr><tr><td>RuleSet</td><td>QuestionRule</td><td>Rule(s) to apply on question to hide or show depending on previous question response</td></tr><tr><td>StartTime</td><td>String</td><td>Specify the start time displayed in the time question</td></tr><tr><td>StaticEarliestDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>StaticLatestDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Step</td><td>Int32 (nullable)</td><td>The step value of \"Numeric Entry\" question</td></tr><tr><td>SubQuestions</td><td>List&lt;SubQuestion&gt;</td><td>Collection of SubQuestions</td></tr><tr><td>ValidationErrorMessage</td><td>String</td><td>The validation error message relative to the validation expression</td></tr><tr><td>ValidationExpression</td><td>String</td><td>The regular expression used to validate a field</td></tr><tr><td>ValidationMessageForCheckboxSelection</td><td>String</td><td>Specifies the validation message for checkbox selection.</td></tr><tr><td>VirtualQuestionType</td><td>String</td><td>Virtual question type</td></tr><tr><td>WordLimit</td><td>String</td><td>Defines the maximum number of words that can be entered into a text box</td></tr><tr><td><h4>Choice Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChoiceID</td><td>Int32</td><td>Choice ID</td></tr><tr><td>ChoiceLabel</td><td>String</td><td>Choice label/text</td></tr><tr><td>ChoiceRule</td><td>QuestionRule</td><td>Rule(s) to apply on choice to hide or show depending on previous question response</td></tr><tr><td>IsMasterChoice</td><td>Boolean</td><td>Set a specific Option as exclusive</td></tr><tr><td>IsOther</td><td>Boolean</td><td>Give respondents the option to write in their own answer (false/true)</td></tr><tr><td>IsRandom</td><td>Boolean</td><td>Specify if the options are displayed in random order or not.</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>The Region ID  ( used for Location question )</td></tr><tr><td>RegionName</td><td>String</td><td>The Region Name  ( used for Location question )</td></tr><tr><td>SubRegionID</td><td>Int32 (nullable)</td><td>The SubRegion ID  ( used for Location question )</td></tr><tr><td>SubRegionName</td><td>String</td><td>The SubRegion Name  ( used for Location question )</td></tr><tr><td><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr><tr><td><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr><tr><td><h4>SubQuestion Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Choices</td><td>List&lt;Choice&gt;</td><td>Collection of choices</td></tr><tr><td>DisplayEmoticons</td><td>Boolean</td><td>display feedback emoticons</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error message to display if no answer is provided for a mandatory question</td></tr><tr><td>Expansive</td><td>Boolean</td><td>Shows if the field is expandable or not for text fields</td></tr><tr><td>IsMandatory</td><td>Boolean</td><td>Shows if the response is mandatory</td></tr><tr><td>Maximum</td><td>Int32 (nullable)</td><td>The maximum value of \"Numeric Entry\" question</td></tr><tr><td>Minimum</td><td>Int32 (nullable)</td><td>The minimum value of \"Numeric Entry\" question</td></tr><tr><td>MinimumAge</td><td>Int32 (nullable)</td><td>Minimum age</td></tr><tr><td>Preticked</td><td>Boolean</td><td>the checkbox is checked by default</td></tr><tr><td>QuestionDisplayType</td><td>String</td><td>Question display format</td></tr><tr><td>QuestionID</td><td>Int32</td><td>Question ID</td></tr><tr><td>QuestionNumber</td><td>Int16 (nullable)</td><td>Question number</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question subtype</td></tr><tr><td>QuestionText</td><td>String</td><td>Question Text/Label</td></tr><tr><td>QuestionType</td><td>String</td><td>Question type</td></tr><tr><td>RandomizeOptionsOrder</td><td>Boolean</td><td>randomize the order of options display</td></tr><tr><td>RuleSet</td><td>QuestionRule</td><td>Rule(s) to apply on question to hide or show depending on previous question response</td></tr><tr><td>Step</td><td>Int32 (nullable)</td><td>The step value of \"Numeric Entry\" question</td></tr><tr><td>ValidationErrorMessage</td><td>String</td><td>The validation error message relative to the validation expression</td></tr><tr><td>ValidationExpression</td><td>String</td><td>The regular expression used to validate a field</td></tr><tr><td>VirtualQuestionType</td><td>String</td><td>Virtual question type</td></tr><tr><td>WordLimit</td><td>String</td><td>Defines the maximum number of words that can be entered into a text box</td></tr><tr><td><h4>Choice Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChoiceID</td><td>Int32</td><td>Choice ID</td></tr><tr><td>ChoiceLabel</td><td>String</td><td>Choice label/text</td></tr><tr><td>ChoiceRule</td><td>QuestionRule</td><td>Rule(s) to apply on choice to hide or show depending on previous question response</td></tr><tr><td>IsMasterChoice</td><td>Boolean</td><td>Set a specific Option as exclusive</td></tr><tr><td>IsOther</td><td>Boolean</td><td>Give respondents the option to write in their own answer (false/true)</td></tr><tr><td>IsRandom</td><td>Boolean</td><td>Specify if the options are displayed in random order or not.</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>The Region ID  ( used for Location question )</td></tr><tr><td>RegionName</td><td>String</td><td>The Region Name  ( used for Location question )</td></tr><tr><td>SubRegionID</td><td>Int32 (nullable)</td><td>The SubRegion ID  ( used for Location question )</td></tr><tr><td>SubRegionName</td><td>String</td><td>The SubRegion Name  ( used for Location question )</td></tr><tr><td><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr><tr><td><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","Get"],"host":["{{Host}}"],"query":[{"key":"OpCode","value":"OpCode-value"}],"variable":[]}},"response":[{"id":"f4a58235-044f-4ec1-8d34-3f563c67f377","name":"api/SurveyApi/Get?OpCode={OpCode} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/SurveyApi/Get?OpCode=OpCode-value","protocol":"https","host":["{{Host}}"],"path":["api","SurveyApi","Get"],"query":[{"key":"OpCode","value":"OpCode-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get survey questions\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>SurveyOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>SurveyAPI</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>SurveyAPI Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ConsentMinAge</td><td>Int32 (nullable)</td><td>Mnimum age of the customer allowed to authorise response submission</td></tr><tr><td>CreateContactQuestionID</td><td>Int32 (nullable)</td><td>The ID of the Master Contact Question</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Contact CtcID</td></tr><tr><td>Description</td><td>String</td><td>Survey description</td></tr><tr><td>IncorrectDetailsMsg</td><td>String</td><td>Message to display when the customer details are incorrect</td></tr><tr><td>LoadCtctFromResponses</td><td>Boolean</td><td>Pre-populate Customer Details From the Database</td></tr><tr><td>OpCode</td><td>Int32</td><td>Survey ID</td></tr><tr><td>Pages</td><td>List&lt;Page&gt;</td><td>Collection of pages</td></tr><tr><td>PageTitle</td><td>String</td><td>Survey title</td></tr><tr><td>ParentConsentEnabled</td><td>Boolean</td><td>When true, display the parent email address field for customer under the ConsentMinAge field</td></tr><tr><td>PrePopulateResponses</td><td>Boolean</td><td>Pre-populate Customer responses</td></tr><tr><td>SurveyIntroduction</td><td>String</td><td>Survey Intro text</td></tr><tr><td>SurveyName</td><td>String</td><td>Survey name</td></tr><tr><td>ThankyouPageDescription</td><td>String</td><td>Text displayed after survey submission</td></tr><tr><td>UpdateContact</td><td>Boolean</td><td>When set to true, customer can update his details otherwise the fields will be disabled</td></tr><tr><td colspan=3><h4>Page Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Questions</td><td>List&lt;Question&gt;</td><td>Collection of questions</td></tr><tr><td>TabCode</td><td>Int32</td><td>Represents the page number</td></tr><tr><td colspan=3><h4>Question Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Choices</td><td>List&lt;Choice&gt;</td><td>Collection of choices</td></tr><tr><td>DefaultText</td><td>String</td><td>Defines the default text shown in Drop Down Question</td></tr><tr><td>DefaultTime</td><td>String</td><td>Specify the default time displayed in the time question</td></tr><tr><td>DisplayEmoticons</td><td>Boolean</td><td>display feedback emoticons</td></tr><tr><td>DisplayRegionAsQuest</td><td>Boolean</td><td>Add Regions and SubRegions as filter used to for the location question</td></tr><tr><td>DynamicEarliestUnit</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DynamicEarliestValue</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DynamicLatestUnit</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DynamicLatestValue</td><td>Int32 (nullable)</td><td></td></tr><tr><td>EmoticonsID</td><td>Int32 (nullable)</td><td>The Emoticon ID for Feedback Score question type</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error message to display if no answer is provided for a mandatory question</td></tr><tr><td>Expansive</td><td>Boolean</td><td>Shows if the field is expandable or not for text fields</td></tr><tr><td>IntervalTime</td><td>Int32</td><td>Specify the number of minutes between time entries in the time question</td></tr><tr><td>IsDynamicDateRange</td><td>Boolean (nullable)</td><td></td></tr><tr><td>IsMandatory</td><td>Boolean</td><td>Shows if the response is mandatory</td></tr><tr><td>isStaticLocations</td><td>Boolean (nullable)</td><td>Specify whether new locations are added automatically or not to the survey when they are added</td></tr><tr><td>Maximum</td><td>Int32 (nullable)</td><td>The maximum value of \"Numeric Entry\" question</td></tr><tr><td>MaxSelectedOptionsCount</td><td>Int32 (nullable)</td><td>Specifies the maximum number of options that can be selected.</td></tr><tr><td>MaxTime</td><td>String</td><td>Specify the max time displayed in the time question</td></tr><tr><td>Minimum</td><td>Int32 (nullable)</td><td>The minimum value of \"Numeric Entry\" question</td></tr><tr><td>MinimumAge</td><td>Int32 (nullable)</td><td>Minimum age</td></tr><tr><td>MinSelectedOptionsCount</td><td>Int32 (nullable)</td><td>Specifies the minimum number of options that can be selected.</td></tr><tr><td>MinTime</td><td>String</td><td>Specify the min time displayed in the time question</td></tr><tr><td>Preticked</td><td>Boolean</td><td>the checkbox is checked by default</td></tr><tr><td>PrivacyPolicyLink</td><td>String</td><td></td></tr><tr><td>PrivacyPolicyText</td><td>String</td><td></td></tr><tr><td>QuestionDisplayType</td><td>String</td><td>Question display format</td></tr><tr><td>QuestionID</td><td>Int32</td><td>Question ID</td></tr><tr><td>QuestionNumber</td><td>Int16 (nullable)</td><td>Question number</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question subtype</td></tr><tr><td>QuestionText</td><td>String</td><td>Question Text/Label</td></tr><tr><td>QuestionType</td><td>String</td><td>Question type</td></tr><tr><td>QuestionTypeDescription</td><td>String</td><td>Question type description</td></tr><tr><td>RandomizeOptionsOrder</td><td>Boolean</td><td>randomize the order of options display</td></tr><tr><td>RuleSet</td><td>QuestionRule</td><td>Rule(s) to apply on question to hide or show depending on previous question response</td></tr><tr><td>StartTime</td><td>String</td><td>Specify the start time displayed in the time question</td></tr><tr><td>StaticEarliestDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>StaticLatestDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Step</td><td>Int32 (nullable)</td><td>The step value of \"Numeric Entry\" question</td></tr><tr><td>SubQuestions</td><td>List&lt;SubQuestion&gt;</td><td>Collection of SubQuestions</td></tr><tr><td>ValidationErrorMessage</td><td>String</td><td>The validation error message relative to the validation expression</td></tr><tr><td>ValidationExpression</td><td>String</td><td>The regular expression used to validate a field</td></tr><tr><td>ValidationMessageForCheckboxSelection</td><td>String</td><td>Specifies the validation message for checkbox selection.</td></tr><tr><td>VirtualQuestionType</td><td>String</td><td>Virtual question type</td></tr><tr><td>WordLimit</td><td>String</td><td>Defines the maximum number of words that can be entered into a text box</td></tr><tr><td colspan=3><h4>Choice Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChoiceID</td><td>Int32</td><td>Choice ID</td></tr><tr><td>ChoiceLabel</td><td>String</td><td>Choice label/text</td></tr><tr><td>ChoiceRule</td><td>QuestionRule</td><td>Rule(s) to apply on choice to hide or show depending on previous question response</td></tr><tr><td>IsMasterChoice</td><td>Boolean</td><td>Set a specific Option as exclusive</td></tr><tr><td>IsOther</td><td>Boolean</td><td>Give respondents the option to write in their own answer (false/true)</td></tr><tr><td>IsRandom</td><td>Boolean</td><td>Specify if the options are displayed in random order or not.</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>The Region ID  ( used for Location question )</td></tr><tr><td>RegionName</td><td>String</td><td>The Region Name  ( used for Location question )</td></tr><tr><td>SubRegionID</td><td>Int32 (nullable)</td><td>The SubRegion ID  ( used for Location question )</td></tr><tr><td>SubRegionName</td><td>String</td><td>The SubRegion Name  ( used for Location question )</td></tr><tr><td colspan=3><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr><tr><td colspan=3><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr><tr><td colspan=3><h4>SubQuestion Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Choices</td><td>List&lt;Choice&gt;</td><td>Collection of choices</td></tr><tr><td>DisplayEmoticons</td><td>Boolean</td><td>display feedback emoticons</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error message to display if no answer is provided for a mandatory question</td></tr><tr><td>Expansive</td><td>Boolean</td><td>Shows if the field is expandable or not for text fields</td></tr><tr><td>IsMandatory</td><td>Boolean</td><td>Shows if the response is mandatory</td></tr><tr><td>Maximum</td><td>Int32 (nullable)</td><td>The maximum value of \"Numeric Entry\" question</td></tr><tr><td>Minimum</td><td>Int32 (nullable)</td><td>The minimum value of \"Numeric Entry\" question</td></tr><tr><td>MinimumAge</td><td>Int32 (nullable)</td><td>Minimum age</td></tr><tr><td>Preticked</td><td>Boolean</td><td>the checkbox is checked by default</td></tr><tr><td>QuestionDisplayType</td><td>String</td><td>Question display format</td></tr><tr><td>QuestionID</td><td>Int32</td><td>Question ID</td></tr><tr><td>QuestionNumber</td><td>Int16 (nullable)</td><td>Question number</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question subtype</td></tr><tr><td>QuestionText</td><td>String</td><td>Question Text/Label</td></tr><tr><td>QuestionType</td><td>String</td><td>Question type</td></tr><tr><td>RandomizeOptionsOrder</td><td>Boolean</td><td>randomize the order of options display</td></tr><tr><td>RuleSet</td><td>QuestionRule</td><td>Rule(s) to apply on question to hide or show depending on previous question response</td></tr><tr><td>Step</td><td>Int32 (nullable)</td><td>The step value of \"Numeric Entry\" question</td></tr><tr><td>ValidationErrorMessage</td><td>String</td><td>The validation error message relative to the validation expression</td></tr><tr><td>ValidationExpression</td><td>String</td><td>The regular expression used to validate a field</td></tr><tr><td>VirtualQuestionType</td><td>String</td><td>Virtual question type</td></tr><tr><td>WordLimit</td><td>String</td><td>Defines the maximum number of words that can be entered into a text box</td></tr><tr><td colspan=3><h4>Choice Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChoiceID</td><td>Int32</td><td>Choice ID</td></tr><tr><td>ChoiceLabel</td><td>String</td><td>Choice label/text</td></tr><tr><td>ChoiceRule</td><td>QuestionRule</td><td>Rule(s) to apply on choice to hide or show depending on previous question response</td></tr><tr><td>IsMasterChoice</td><td>Boolean</td><td>Set a specific Option as exclusive</td></tr><tr><td>IsOther</td><td>Boolean</td><td>Give respondents the option to write in their own answer (false/true)</td></tr><tr><td>IsRandom</td><td>Boolean</td><td>Specify if the options are displayed in random order or not.</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>The Region ID  ( used for Location question )</td></tr><tr><td>RegionName</td><td>String</td><td>The Region Name  ( used for Location question )</td></tr><tr><td>SubRegionID</td><td>Int32 (nullable)</td><td>The SubRegion ID  ( used for Location question )</td></tr><tr><td>SubRegionName</td><td>String</td><td>The SubRegion Name  ( used for Location question )</td></tr><tr><td colspan=3><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr><tr><td colspan=3><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"289d54ea-7625-4cef-a6a8-34914e9cf64a"},{"name":"GetSurveyQuestion","id":"be302564-e878-4cae-9954-e48591e5bb0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/SurveyApi/GetSurveyQuestion?OpCode=OpCode-value&QuestionID=QuestionID-value","description":" <p>\n            Get Survey question\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>SurveyQuestionOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>Question</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>Question Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Choices</td><td>List&lt;Choice&gt;</td><td>Collection of choices</td></tr><tr><td>DefaultText</td><td>String</td><td>Defines the default text shown in Drop Down Question</td></tr><tr><td>DefaultTime</td><td>String</td><td>Specify the default time displayed in the time question</td></tr><tr><td>DisplayEmoticons</td><td>Boolean</td><td>display feedback emoticons</td></tr><tr><td>DisplayRegionAsQuest</td><td>Boolean</td><td>Add Regions and SubRegions as filter used to for the location question</td></tr><tr><td>DynamicEarliestUnit</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DynamicEarliestValue</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DynamicLatestUnit</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DynamicLatestValue</td><td>Int32 (nullable)</td><td></td></tr><tr><td>EmoticonsID</td><td>Int32 (nullable)</td><td>The Emoticon ID for Feedback Score question type</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error message to display if no answer is provided for a mandatory question</td></tr><tr><td>Expansive</td><td>Boolean</td><td>Shows if the field is expandable or not for text fields</td></tr><tr><td>IntervalTime</td><td>Int32</td><td>Specify the number of minutes between time entries in the time question</td></tr><tr><td>IsDynamicDateRange</td><td>Boolean (nullable)</td><td></td></tr><tr><td>IsMandatory</td><td>Boolean</td><td>Shows if the response is mandatory</td></tr><tr><td>isStaticLocations</td><td>Boolean (nullable)</td><td>Specify whether new locations are added automatically or not to the survey when they are added</td></tr><tr><td>Maximum</td><td>Int32 (nullable)</td><td>The maximum value of \"Numeric Entry\" question</td></tr><tr><td>MaxSelectedOptionsCount</td><td>Int32 (nullable)</td><td>Specifies the maximum number of options that can be selected.</td></tr><tr><td>MaxTime</td><td>String</td><td>Specify the max time displayed in the time question</td></tr><tr><td>Minimum</td><td>Int32 (nullable)</td><td>The minimum value of \"Numeric Entry\" question</td></tr><tr><td>MinimumAge</td><td>Int32 (nullable)</td><td>Minimum age</td></tr><tr><td>MinSelectedOptionsCount</td><td>Int32 (nullable)</td><td>Specifies the minimum number of options that can be selected.</td></tr><tr><td>MinTime</td><td>String</td><td>Specify the min time displayed in the time question</td></tr><tr><td>Preticked</td><td>Boolean</td><td>the checkbox is checked by default</td></tr><tr><td>PrivacyPolicyLink</td><td>String</td><td></td></tr><tr><td>PrivacyPolicyText</td><td>String</td><td></td></tr><tr><td>QuestionDisplayType</td><td>String</td><td>Question display format</td></tr><tr><td>QuestionID</td><td>Int32</td><td>Question ID</td></tr><tr><td>QuestionNumber</td><td>Int16 (nullable)</td><td>Question number</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question subtype</td></tr><tr><td>QuestionText</td><td>String</td><td>Question Text/Label</td></tr><tr><td>QuestionType</td><td>String</td><td>Question type</td></tr><tr><td>QuestionTypeDescription</td><td>String</td><td>Question type description</td></tr><tr><td>RandomizeOptionsOrder</td><td>Boolean</td><td>randomize the order of options display</td></tr><tr><td>RuleSet</td><td>QuestionRule</td><td>Rule(s) to apply on question to hide or show depending on previous question response</td></tr><tr><td>StartTime</td><td>String</td><td>Specify the start time displayed in the time question</td></tr><tr><td>StaticEarliestDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>StaticLatestDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Step</td><td>Int32 (nullable)</td><td>The step value of \"Numeric Entry\" question</td></tr><tr><td>SubQuestions</td><td>List&lt;SubQuestion&gt;</td><td>Collection of SubQuestions</td></tr><tr><td>ValidationErrorMessage</td><td>String</td><td>The validation error message relative to the validation expression</td></tr><tr><td>ValidationExpression</td><td>String</td><td>The regular expression used to validate a field</td></tr><tr><td>ValidationMessageForCheckboxSelection</td><td>String</td><td>Specifies the validation message for checkbox selection.</td></tr><tr><td>VirtualQuestionType</td><td>String</td><td>Virtual question type</td></tr><tr><td>WordLimit</td><td>String</td><td>Defines the maximum number of words that can be entered into a text box</td></tr><tr><td><h4>Choice Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChoiceID</td><td>Int32</td><td>Choice ID</td></tr><tr><td>ChoiceLabel</td><td>String</td><td>Choice label/text</td></tr><tr><td>ChoiceRule</td><td>QuestionRule</td><td>Rule(s) to apply on choice to hide or show depending on previous question response</td></tr><tr><td>IsMasterChoice</td><td>Boolean</td><td>Set a specific Option as exclusive</td></tr><tr><td>IsOther</td><td>Boolean</td><td>Give respondents the option to write in their own answer (false/true)</td></tr><tr><td>IsRandom</td><td>Boolean</td><td>Specify if the options are displayed in random order or not.</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>The Region ID  ( used for Location question )</td></tr><tr><td>RegionName</td><td>String</td><td>The Region Name  ( used for Location question )</td></tr><tr><td>SubRegionID</td><td>Int32 (nullable)</td><td>The SubRegion ID  ( used for Location question )</td></tr><tr><td>SubRegionName</td><td>String</td><td>The SubRegion Name  ( used for Location question )</td></tr><tr><td><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr><tr><td><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr><tr><td><h4>SubQuestion Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Choices</td><td>List&lt;Choice&gt;</td><td>Collection of choices</td></tr><tr><td>DisplayEmoticons</td><td>Boolean</td><td>display feedback emoticons</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error message to display if no answer is provided for a mandatory question</td></tr><tr><td>Expansive</td><td>Boolean</td><td>Shows if the field is expandable or not for text fields</td></tr><tr><td>IsMandatory</td><td>Boolean</td><td>Shows if the response is mandatory</td></tr><tr><td>Maximum</td><td>Int32 (nullable)</td><td>The maximum value of \"Numeric Entry\" question</td></tr><tr><td>Minimum</td><td>Int32 (nullable)</td><td>The minimum value of \"Numeric Entry\" question</td></tr><tr><td>MinimumAge</td><td>Int32 (nullable)</td><td>Minimum age</td></tr><tr><td>Preticked</td><td>Boolean</td><td>the checkbox is checked by default</td></tr><tr><td>QuestionDisplayType</td><td>String</td><td>Question display format</td></tr><tr><td>QuestionID</td><td>Int32</td><td>Question ID</td></tr><tr><td>QuestionNumber</td><td>Int16 (nullable)</td><td>Question number</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question subtype</td></tr><tr><td>QuestionText</td><td>String</td><td>Question Text/Label</td></tr><tr><td>QuestionType</td><td>String</td><td>Question type</td></tr><tr><td>RandomizeOptionsOrder</td><td>Boolean</td><td>randomize the order of options display</td></tr><tr><td>RuleSet</td><td>QuestionRule</td><td>Rule(s) to apply on question to hide or show depending on previous question response</td></tr><tr><td>Step</td><td>Int32 (nullable)</td><td>The step value of \"Numeric Entry\" question</td></tr><tr><td>ValidationErrorMessage</td><td>String</td><td>The validation error message relative to the validation expression</td></tr><tr><td>ValidationExpression</td><td>String</td><td>The regular expression used to validate a field</td></tr><tr><td>VirtualQuestionType</td><td>String</td><td>Virtual question type</td></tr><tr><td>WordLimit</td><td>String</td><td>Defines the maximum number of words that can be entered into a text box</td></tr><tr><td><h4>Choice Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChoiceID</td><td>Int32</td><td>Choice ID</td></tr><tr><td>ChoiceLabel</td><td>String</td><td>Choice label/text</td></tr><tr><td>ChoiceRule</td><td>QuestionRule</td><td>Rule(s) to apply on choice to hide or show depending on previous question response</td></tr><tr><td>IsMasterChoice</td><td>Boolean</td><td>Set a specific Option as exclusive</td></tr><tr><td>IsOther</td><td>Boolean</td><td>Give respondents the option to write in their own answer (false/true)</td></tr><tr><td>IsRandom</td><td>Boolean</td><td>Specify if the options are displayed in random order or not.</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>The Region ID  ( used for Location question )</td></tr><tr><td>RegionName</td><td>String</td><td>The Region Name  ( used for Location question )</td></tr><tr><td>SubRegionID</td><td>Int32 (nullable)</td><td>The SubRegion ID  ( used for Location question )</td></tr><tr><td>SubRegionName</td><td>String</td><td>The SubRegion Name  ( used for Location question )</td></tr><tr><td><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr><tr><td><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","GetSurveyQuestion"],"host":["{{Host}}"],"query":[{"key":"OpCode","value":"OpCode-value"},{"key":"QuestionID","value":"QuestionID-value"}],"variable":[]}},"response":[{"id":"2ca81baa-0557-45d8-9ae6-aaca7f9de527","name":"api/SurveyApi/GetSurveyQuestion?OpCode={OpCode}&QuestionID={QuestionID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/SurveyApi/GetSurveyQuestion?OpCode=OpCode-value&QuestionID=QuestionID-value","protocol":"https","host":["{{Host}}"],"path":["api","SurveyApi","GetSurveyQuestion"],"query":[{"key":"OpCode","value":"OpCode-value"},{"key":"QuestionID","value":"QuestionID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Survey question\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>SurveyQuestionOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>Question</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>Question Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Choices</td><td>List&lt;Choice&gt;</td><td>Collection of choices</td></tr><tr><td>DefaultText</td><td>String</td><td>Defines the default text shown in Drop Down Question</td></tr><tr><td>DefaultTime</td><td>String</td><td>Specify the default time displayed in the time question</td></tr><tr><td>DisplayEmoticons</td><td>Boolean</td><td>display feedback emoticons</td></tr><tr><td>DisplayRegionAsQuest</td><td>Boolean</td><td>Add Regions and SubRegions as filter used to for the location question</td></tr><tr><td>DynamicEarliestUnit</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DynamicEarliestValue</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DynamicLatestUnit</td><td>Int32 (nullable)</td><td></td></tr><tr><td>DynamicLatestValue</td><td>Int32 (nullable)</td><td></td></tr><tr><td>EmoticonsID</td><td>Int32 (nullable)</td><td>The Emoticon ID for Feedback Score question type</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error message to display if no answer is provided for a mandatory question</td></tr><tr><td>Expansive</td><td>Boolean</td><td>Shows if the field is expandable or not for text fields</td></tr><tr><td>IntervalTime</td><td>Int32</td><td>Specify the number of minutes between time entries in the time question</td></tr><tr><td>IsDynamicDateRange</td><td>Boolean (nullable)</td><td></td></tr><tr><td>IsMandatory</td><td>Boolean</td><td>Shows if the response is mandatory</td></tr><tr><td>isStaticLocations</td><td>Boolean (nullable)</td><td>Specify whether new locations are added automatically or not to the survey when they are added</td></tr><tr><td>Maximum</td><td>Int32 (nullable)</td><td>The maximum value of \"Numeric Entry\" question</td></tr><tr><td>MaxSelectedOptionsCount</td><td>Int32 (nullable)</td><td>Specifies the maximum number of options that can be selected.</td></tr><tr><td>MaxTime</td><td>String</td><td>Specify the max time displayed in the time question</td></tr><tr><td>Minimum</td><td>Int32 (nullable)</td><td>The minimum value of \"Numeric Entry\" question</td></tr><tr><td>MinimumAge</td><td>Int32 (nullable)</td><td>Minimum age</td></tr><tr><td>MinSelectedOptionsCount</td><td>Int32 (nullable)</td><td>Specifies the minimum number of options that can be selected.</td></tr><tr><td>MinTime</td><td>String</td><td>Specify the min time displayed in the time question</td></tr><tr><td>Preticked</td><td>Boolean</td><td>the checkbox is checked by default</td></tr><tr><td>PrivacyPolicyLink</td><td>String</td><td></td></tr><tr><td>PrivacyPolicyText</td><td>String</td><td></td></tr><tr><td>QuestionDisplayType</td><td>String</td><td>Question display format</td></tr><tr><td>QuestionID</td><td>Int32</td><td>Question ID</td></tr><tr><td>QuestionNumber</td><td>Int16 (nullable)</td><td>Question number</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question subtype</td></tr><tr><td>QuestionText</td><td>String</td><td>Question Text/Label</td></tr><tr><td>QuestionType</td><td>String</td><td>Question type</td></tr><tr><td>QuestionTypeDescription</td><td>String</td><td>Question type description</td></tr><tr><td>RandomizeOptionsOrder</td><td>Boolean</td><td>randomize the order of options display</td></tr><tr><td>RuleSet</td><td>QuestionRule</td><td>Rule(s) to apply on question to hide or show depending on previous question response</td></tr><tr><td>StartTime</td><td>String</td><td>Specify the start time displayed in the time question</td></tr><tr><td>StaticEarliestDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>StaticLatestDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>Step</td><td>Int32 (nullable)</td><td>The step value of \"Numeric Entry\" question</td></tr><tr><td>SubQuestions</td><td>List&lt;SubQuestion&gt;</td><td>Collection of SubQuestions</td></tr><tr><td>ValidationErrorMessage</td><td>String</td><td>The validation error message relative to the validation expression</td></tr><tr><td>ValidationExpression</td><td>String</td><td>The regular expression used to validate a field</td></tr><tr><td>ValidationMessageForCheckboxSelection</td><td>String</td><td>Specifies the validation message for checkbox selection.</td></tr><tr><td>VirtualQuestionType</td><td>String</td><td>Virtual question type</td></tr><tr><td>WordLimit</td><td>String</td><td>Defines the maximum number of words that can be entered into a text box</td></tr><tr><td colspan=3><h4>Choice Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChoiceID</td><td>Int32</td><td>Choice ID</td></tr><tr><td>ChoiceLabel</td><td>String</td><td>Choice label/text</td></tr><tr><td>ChoiceRule</td><td>QuestionRule</td><td>Rule(s) to apply on choice to hide or show depending on previous question response</td></tr><tr><td>IsMasterChoice</td><td>Boolean</td><td>Set a specific Option as exclusive</td></tr><tr><td>IsOther</td><td>Boolean</td><td>Give respondents the option to write in their own answer (false/true)</td></tr><tr><td>IsRandom</td><td>Boolean</td><td>Specify if the options are displayed in random order or not.</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>The Region ID  ( used for Location question )</td></tr><tr><td>RegionName</td><td>String</td><td>The Region Name  ( used for Location question )</td></tr><tr><td>SubRegionID</td><td>Int32 (nullable)</td><td>The SubRegion ID  ( used for Location question )</td></tr><tr><td>SubRegionName</td><td>String</td><td>The SubRegion Name  ( used for Location question )</td></tr><tr><td colspan=3><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr><tr><td colspan=3><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr><tr><td colspan=3><h4>SubQuestion Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Choices</td><td>List&lt;Choice&gt;</td><td>Collection of choices</td></tr><tr><td>DisplayEmoticons</td><td>Boolean</td><td>display feedback emoticons</td></tr><tr><td>ErrorMessage</td><td>String</td><td>Error message to display if no answer is provided for a mandatory question</td></tr><tr><td>Expansive</td><td>Boolean</td><td>Shows if the field is expandable or not for text fields</td></tr><tr><td>IsMandatory</td><td>Boolean</td><td>Shows if the response is mandatory</td></tr><tr><td>Maximum</td><td>Int32 (nullable)</td><td>The maximum value of \"Numeric Entry\" question</td></tr><tr><td>Minimum</td><td>Int32 (nullable)</td><td>The minimum value of \"Numeric Entry\" question</td></tr><tr><td>MinimumAge</td><td>Int32 (nullable)</td><td>Minimum age</td></tr><tr><td>Preticked</td><td>Boolean</td><td>the checkbox is checked by default</td></tr><tr><td>QuestionDisplayType</td><td>String</td><td>Question display format</td></tr><tr><td>QuestionID</td><td>Int32</td><td>Question ID</td></tr><tr><td>QuestionNumber</td><td>Int16 (nullable)</td><td>Question number</td></tr><tr><td>QuestionSubType</td><td>String</td><td>Question subtype</td></tr><tr><td>QuestionText</td><td>String</td><td>Question Text/Label</td></tr><tr><td>QuestionType</td><td>String</td><td>Question type</td></tr><tr><td>RandomizeOptionsOrder</td><td>Boolean</td><td>randomize the order of options display</td></tr><tr><td>RuleSet</td><td>QuestionRule</td><td>Rule(s) to apply on question to hide or show depending on previous question response</td></tr><tr><td>Step</td><td>Int32 (nullable)</td><td>The step value of \"Numeric Entry\" question</td></tr><tr><td>ValidationErrorMessage</td><td>String</td><td>The validation error message relative to the validation expression</td></tr><tr><td>ValidationExpression</td><td>String</td><td>The regular expression used to validate a field</td></tr><tr><td>VirtualQuestionType</td><td>String</td><td>Virtual question type</td></tr><tr><td>WordLimit</td><td>String</td><td>Defines the maximum number of words that can be entered into a text box</td></tr><tr><td colspan=3><h4>Choice Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ChoiceID</td><td>Int32</td><td>Choice ID</td></tr><tr><td>ChoiceLabel</td><td>String</td><td>Choice label/text</td></tr><tr><td>ChoiceRule</td><td>QuestionRule</td><td>Rule(s) to apply on choice to hide or show depending on previous question response</td></tr><tr><td>IsMasterChoice</td><td>Boolean</td><td>Set a specific Option as exclusive</td></tr><tr><td>IsOther</td><td>Boolean</td><td>Give respondents the option to write in their own answer (false/true)</td></tr><tr><td>IsRandom</td><td>Boolean</td><td>Specify if the options are displayed in random order or not.</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>The Region ID  ( used for Location question )</td></tr><tr><td>RegionName</td><td>String</td><td>The Region Name  ( used for Location question )</td></tr><tr><td>SubRegionID</td><td>Int32 (nullable)</td><td>The SubRegion ID  ( used for Location question )</td></tr><tr><td>SubRegionName</td><td>String</td><td>The SubRegion Name  ( used for Location question )</td></tr><tr><td colspan=3><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr><tr><td colspan=3><h4>QuestionRule Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Operator</td><td>String</td><td>Operator to use between rules (OR/AND)</td></tr><tr><td>Rules</td><td>String[]</td><td>Collection of rules</td></tr><tr><td>RuleType</td><td>String</td><td>Rule action if condition is verified (Show/Hide)</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"be302564-e878-4cae-9954-e48591e5bb0f"},{"name":"PostLookandFeel","id":"9e1bdf95-cf5e-4b62-986a-03ec6aa3d5aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"UseCustomHeaderFooter\": true,\r\n  \"LogoOptions\": {\r\n    \"Logo\": \"QEA=\",\r\n    \"LogoPlacement\": \"sample string 1\",\r\n    \"MaxLogoSizeEnabled\": true\r\n  },\r\n  \"TitleBarOptions\": {\r\n    \"Description\": \"sample string 1\",\r\n    \"Color\": \"sample string 2\",\r\n    \"IsHidden\": true\r\n  },\r\n  \"IntroductionBarOptions\": {\r\n    \"Description\": \"sample string 1\",\r\n    \"Color\": \"sample string 2\",\r\n    \"IsHidden\": true\r\n  },\r\n  \"CustomFiles\": {\r\n    \"BackgroundImage\": \"QEA=\",\r\n    \"BannerImage\": \"QEA=\",\r\n    \"CustomCssStyle\": \"QEA=\",\r\n    \"DefaultPathCssFile\": \"QEA=\",\r\n    \"PathJavaScriptFile\": \"QEA=\",\r\n    \"PathJavaScriptFile_Bottom\": \"QEA=\"\r\n  },\r\n  \"AdvancedOptions\": {\r\n    \"ButtonBackgroundColor\": \"sample string 1\",\r\n    \"ButtonBackgroundColorOnHover\": \"sample string 2\",\r\n    \"ButtonTextColor\": \"sample string 3\",\r\n    \"ButtonTextColorOnHover\": \"sample string 4\",\r\n    \"CheckedStateColorforCheckboxandRadio\": \"sample string 5\",\r\n    \"BackgroundColor\": \"sample string 6\",\r\n    \"BodyBackgroundColor\": \"sample string 7\",\r\n    \"BoundWidth\": 8,\r\n    \"SubmitButtonText\": \"sample string 9\"\r\n  },\r\n  \"MenuHeader\": {\r\n    \"BackgroundColor\": \"sample string 1\",\r\n    \"Placement\": \"sample string 2\",\r\n    \"IsEqualWidth\": true,\r\n    \"FontColor\": \"sample string 4\",\r\n    \"FontSize\": \"sample string 5\",\r\n    \"MenuItems\": [\r\n      {\r\n        \"ID\": 1,\r\n        \"OrderNumber\": 2,\r\n        \"FontawesomeIcon\": \"sample string 3\",\r\n        \"Title\": \"sample string 4\",\r\n        \"Link\": \"sample string 5\"\r\n      },\r\n      {\r\n        \"ID\": 1,\r\n        \"OrderNumber\": 2,\r\n        \"FontawesomeIcon\": \"sample string 3\",\r\n        \"Title\": \"sample string 4\",\r\n        \"Link\": \"sample string 5\"\r\n      }\r\n    ]\r\n  },\r\n  \"FavIcons\": {\r\n    \"LogoAssets\": \"QEA=\",\r\n    \"Logo64Assets\": \"QEA=\",\r\n    \"Logo180Assets\": \"QEA=\",\r\n    \"Logo70Assets\": \"QEA=\",\r\n    \"Logo150Assets\": \"QEA=\",\r\n    \"Logo310Assets\": \"QEA=\",\r\n    \"Logo3115Assets\": \"QEA=\"\r\n  },\r\n  \"QuestionsLookAndFeel\": {\r\n    \"UseOneQuestionPerPage\": true,\r\n    \"Color\": \"sample string 1\",\r\n    \"FontSize\": \"sample string 2\",\r\n    \"FontFamily\": \"sample string 3\",\r\n    \"SpaceBetweenQuestion\": 1,\r\n    \"IsPlaceHolderActive\": true,\r\n    \"DisplayQuestionsNumbers\": true\r\n  }\r\n}"},"url":"https://{{Host}}/api/SurveyApi/PostLookandFeel","description":" <p>\n            Post survey look and feel \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>LookAndFeelInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdvancedOptions</td><td>AdvancedOptions</td><td></td><td>False</td></tr><tr><td>CustomFiles</td><td>Files</td><td></td><td>False</td></tr><tr><td>FavIcons</td><td>FavIcons</td><td></td><td>False</td></tr><tr><td>IntroductionBarOptions</td><td>BarOptions</td><td></td><td>False</td></tr><tr><td>LogoOptions</td><td>LogoOptions</td><td></td><td>False</td></tr><tr><td>MenuHeader</td><td>MenuHeader</td><td></td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td></td><td>False</td></tr><tr><td>QuestionsLookAndFeel</td><td>QuestionsLookAndFeel</td><td></td><td>False</td></tr><tr><td>TitleBarOptions</td><td>BarOptions</td><td></td><td>False</td></tr><tr><td>UseCustomHeaderFooter</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td><h4>AdvancedOptions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BackgroundColor</td><td>String</td><td></td><td>False</td></tr><tr><td>BodyBackgroundColor</td><td>String</td><td></td><td>False</td></tr><tr><td>BoundWidth</td><td>Int32</td><td></td><td>False</td></tr><tr><td>ButtonBackgroundColor</td><td>String</td><td></td><td>False</td></tr><tr><td>ButtonBackgroundColorOnHover</td><td>String</td><td></td><td>False</td></tr><tr><td>ButtonTextColor</td><td>String</td><td></td><td>False</td></tr><tr><td>ButtonTextColorOnHover</td><td>String</td><td></td><td>False</td></tr><tr><td>CheckedStateColorforCheckboxandRadio</td><td>String</td><td></td><td>False</td></tr><tr><td>SubmitButtonText</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>Files Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BackgroundImage</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>BannerImage</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>CustomCssStyle</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>DefaultPathCssFile</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>PathJavaScriptFile</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>PathJavaScriptFile_Bottom</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td><h4>FavIcons Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Logo150Assets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>Logo180Assets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>Logo310Assets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>Logo3115Assets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>Logo64Assets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>Logo70Assets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>LogoAssets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td><h4>BarOptions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Color</td><td>String</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>IsHidden</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td><h4>LogoOptions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Logo</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>LogoPlacement</td><td>String</td><td></td><td>False</td></tr><tr><td>MaxLogoSizeEnabled</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td><h4>MenuHeader Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BackgroundColor</td><td>String</td><td></td><td>False</td></tr><tr><td>FontColor</td><td>String</td><td></td><td>False</td></tr><tr><td>FontSize</td><td>String</td><td></td><td>False</td></tr><tr><td>IsEqualWidth</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>MenuItems</td><td>List&lt;MenuItem&gt;</td><td></td><td>False</td></tr><tr><td>Placement</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>MenuItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FontawesomeIcon</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Link</td><td>String</td><td></td><td>False</td></tr><tr><td>OrderNumber</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Title</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>QuestionsLookAndFeel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Color</td><td>String</td><td></td><td>False</td></tr><tr><td>DisplayQuestionsNumbers</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>FontFamily</td><td>String</td><td></td><td>False</td></tr><tr><td>FontSize</td><td>String</td><td></td><td>False</td></tr><tr><td>IsPlaceHolderActive</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>SpaceBetweenQuestion</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>UseOneQuestionPerPage</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td><h4>BarOptions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Color</td><td>String</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>IsHidden</td><td>Boolean (nullable)</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","PostLookandFeel"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"e5c636bc-85a2-453c-a111-e44a66018b33","name":"api/SurveyApi/PostLookandFeel Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"UseCustomHeaderFooter\": true,\r\n  \"LogoOptions\": {\r\n    \"Logo\": \"QEA=\",\r\n    \"LogoPlacement\": \"sample string 1\",\r\n    \"MaxLogoSizeEnabled\": true\r\n  },\r\n  \"TitleBarOptions\": {\r\n    \"Description\": \"sample string 1\",\r\n    \"Color\": \"sample string 2\",\r\n    \"IsHidden\": true\r\n  },\r\n  \"IntroductionBarOptions\": {\r\n    \"Description\": \"sample string 1\",\r\n    \"Color\": \"sample string 2\",\r\n    \"IsHidden\": true\r\n  },\r\n  \"CustomFiles\": {\r\n    \"BackgroundImage\": \"QEA=\",\r\n    \"BannerImage\": \"QEA=\",\r\n    \"CustomCssStyle\": \"QEA=\",\r\n    \"DefaultPathCssFile\": \"QEA=\",\r\n    \"PathJavaScriptFile\": \"QEA=\",\r\n    \"PathJavaScriptFile_Bottom\": \"QEA=\"\r\n  },\r\n  \"AdvancedOptions\": {\r\n    \"ButtonBackgroundColor\": \"sample string 1\",\r\n    \"ButtonBackgroundColorOnHover\": \"sample string 2\",\r\n    \"ButtonTextColor\": \"sample string 3\",\r\n    \"ButtonTextColorOnHover\": \"sample string 4\",\r\n    \"CheckedStateColorforCheckboxandRadio\": \"sample string 5\",\r\n    \"BackgroundColor\": \"sample string 6\",\r\n    \"BodyBackgroundColor\": \"sample string 7\",\r\n    \"BoundWidth\": 8,\r\n    \"SubmitButtonText\": \"sample string 9\"\r\n  },\r\n  \"MenuHeader\": {\r\n    \"BackgroundColor\": \"sample string 1\",\r\n    \"Placement\": \"sample string 2\",\r\n    \"IsEqualWidth\": true,\r\n    \"FontColor\": \"sample string 4\",\r\n    \"FontSize\": \"sample string 5\",\r\n    \"MenuItems\": [\r\n      {\r\n        \"ID\": 1,\r\n        \"OrderNumber\": 2,\r\n        \"FontawesomeIcon\": \"sample string 3\",\r\n        \"Title\": \"sample string 4\",\r\n        \"Link\": \"sample string 5\"\r\n      },\r\n      {\r\n        \"ID\": 1,\r\n        \"OrderNumber\": 2,\r\n        \"FontawesomeIcon\": \"sample string 3\",\r\n        \"Title\": \"sample string 4\",\r\n        \"Link\": \"sample string 5\"\r\n      }\r\n    ]\r\n  },\r\n  \"FavIcons\": {\r\n    \"LogoAssets\": \"QEA=\",\r\n    \"Logo64Assets\": \"QEA=\",\r\n    \"Logo180Assets\": \"QEA=\",\r\n    \"Logo70Assets\": \"QEA=\",\r\n    \"Logo150Assets\": \"QEA=\",\r\n    \"Logo310Assets\": \"QEA=\",\r\n    \"Logo3115Assets\": \"QEA=\"\r\n  },\r\n  \"QuestionsLookAndFeel\": {\r\n    \"UseOneQuestionPerPage\": true,\r\n    \"Color\": \"sample string 1\",\r\n    \"FontSize\": \"sample string 2\",\r\n    \"FontFamily\": \"sample string 3\",\r\n    \"SpaceBetweenQuestion\": 1,\r\n    \"IsPlaceHolderActive\": true,\r\n    \"DisplayQuestionsNumbers\": true\r\n  }\r\n}"},"url":"https://{{Host}}/api/SurveyApi/PostLookandFeel","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post survey look and feel \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>LookAndFeelInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdvancedOptions</td><td>AdvancedOptions</td><td></td><td>False</td></tr><tr><td>CustomFiles</td><td>Files</td><td></td><td>False</td></tr><tr><td>FavIcons</td><td>FavIcons</td><td></td><td>False</td></tr><tr><td>IntroductionBarOptions</td><td>BarOptions</td><td></td><td>False</td></tr><tr><td>LogoOptions</td><td>LogoOptions</td><td></td><td>False</td></tr><tr><td>MenuHeader</td><td>MenuHeader</td><td></td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td></td><td>False</td></tr><tr><td>QuestionsLookAndFeel</td><td>QuestionsLookAndFeel</td><td></td><td>False</td></tr><tr><td>TitleBarOptions</td><td>BarOptions</td><td></td><td>False</td></tr><tr><td>UseCustomHeaderFooter</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>AdvancedOptions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BackgroundColor</td><td>String</td><td></td><td>False</td></tr><tr><td>BodyBackgroundColor</td><td>String</td><td></td><td>False</td></tr><tr><td>BoundWidth</td><td>Int32</td><td></td><td>False</td></tr><tr><td>ButtonBackgroundColor</td><td>String</td><td></td><td>False</td></tr><tr><td>ButtonBackgroundColorOnHover</td><td>String</td><td></td><td>False</td></tr><tr><td>ButtonTextColor</td><td>String</td><td></td><td>False</td></tr><tr><td>ButtonTextColorOnHover</td><td>String</td><td></td><td>False</td></tr><tr><td>CheckedStateColorforCheckboxandRadio</td><td>String</td><td></td><td>False</td></tr><tr><td>SubmitButtonText</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Files Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BackgroundImage</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>BannerImage</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>CustomCssStyle</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>DefaultPathCssFile</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>PathJavaScriptFile</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>PathJavaScriptFile_Bottom</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td colspan=4><h4>FavIcons Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Logo150Assets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>Logo180Assets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>Logo310Assets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>Logo3115Assets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>Logo64Assets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>Logo70Assets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>LogoAssets</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td colspan=4><h4>BarOptions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Color</td><td>String</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>IsHidden</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>LogoOptions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Logo</td><td>Byte[]</td><td></td><td>False</td></tr><tr><td>LogoPlacement</td><td>String</td><td></td><td>False</td></tr><tr><td>MaxLogoSizeEnabled</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>MenuHeader Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BackgroundColor</td><td>String</td><td></td><td>False</td></tr><tr><td>FontColor</td><td>String</td><td></td><td>False</td></tr><tr><td>FontSize</td><td>String</td><td></td><td>False</td></tr><tr><td>IsEqualWidth</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>MenuItems</td><td>List&lt;MenuItem&gt;</td><td></td><td>False</td></tr><tr><td>Placement</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>MenuItem Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FontawesomeIcon</td><td>String</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Link</td><td>String</td><td></td><td>False</td></tr><tr><td>OrderNumber</td><td>Int32</td><td></td><td>False</td></tr><tr><td>Title</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>QuestionsLookAndFeel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Color</td><td>String</td><td></td><td>False</td></tr><tr><td>DisplayQuestionsNumbers</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>FontFamily</td><td>String</td><td></td><td>False</td></tr><tr><td>FontSize</td><td>String</td><td></td><td>False</td></tr><tr><td>IsPlaceHolderActive</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>SpaceBetweenQuestion</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>UseOneQuestionPerPage</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>BarOptions Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Color</td><td>String</td><td></td><td>False</td></tr><tr><td>Description</td><td>String</td><td></td><td>False</td></tr><tr><td>IsHidden</td><td>Boolean (nullable)</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"9e1bdf95-cf5e-4b62-986a-03ec6aa3d5aa"},{"name":"PostResponses","id":"8a44354c-4096-4f0c-bfd0-82dac93c6aa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"QuestionResponses\": [\r\n    {\r\n      \"QuestionID\": 1,\r\n      \"ChoiceQuestionResponse\": {\r\n        \"ChoiceIDs\": [\r\n          1,\r\n          2\r\n        ],\r\n        \"OtherText\": \"sample string 1\"\r\n      },\r\n      \"TextQuestionResponse\": {\r\n        \"TextResponse\": \"sample string 1\"\r\n      },\r\n      \"FileQuestionResponse\": {\r\n        \"FileName\": \"sample string 1\",\r\n        \"FileData\": \"sample string 2\"\r\n      }\r\n    },\r\n    {\r\n      \"QuestionID\": 1,\r\n      \"ChoiceQuestionResponse\": {\r\n        \"ChoiceIDs\": [\r\n          1,\r\n          2\r\n        ],\r\n        \"OtherText\": \"sample string 1\"\r\n      },\r\n      \"TextQuestionResponse\": {\r\n        \"TextResponse\": \"sample string 1\"\r\n      },\r\n      \"FileQuestionResponse\": {\r\n        \"FileName\": \"sample string 1\",\r\n        \"FileData\": \"sample string 2\"\r\n      }\r\n    }\r\n  ],\r\n  \"IsCompleted\": true,\r\n  \"CtcID\": 1,\r\n  \"SessionID\": \"sample string 3\",\r\n  \"Request\": {\r\n    \"UserHostAddress\": \"sample string 1\",\r\n    \"BrowserName\": \"sample string 2\",\r\n    \"BrowserVersion\": \"sample string 3\",\r\n    \"BrowserMajorVersion\": \"sample string 4\",\r\n    \"BrowserMinorVersion\": \"sample string 5\",\r\n    \"BrowserCookies\": true,\r\n    \"BrowserActiveXControls\": true,\r\n    \"BrowserJavaScript\": true,\r\n    \"BrowserJavaApplets\": true,\r\n    \"BrowserVBScript\": true,\r\n    \"BrowserBackgroundSounds\": true,\r\n    \"BrowserFrames\": true,\r\n    \"BrowserTables\": true,\r\n    \"BrowserCDF\": true,\r\n    \"BrowserAOL\": true,\r\n    \"BrowserCrawler\": true,\r\n    \"BrowserBeta\": true,\r\n    \"BrowserW3CDomVersion\": \"sample string 18\",\r\n    \"BrowserMSDomVersion\": \"sample string 19\",\r\n    \"BrowserClrVersion\": \"sample string 20\",\r\n    \"BrowserPlatform\": \"sample string 21\",\r\n    \"BrowserEcmaScriptVersion\": \"sample string 22\",\r\n    \"LogonUserIdentityName\": \"sample string 23\",\r\n    \"LogonUserIdentityUser\": \"sample string 24\",\r\n    \"Url\": \"sample string 25\",\r\n    \"UrlReferrer\": \"sample string 26\",\r\n    \"QueryString\": \"sample string 27\",\r\n    \"UserAgent\": \"sample string 28\"\r\n  },\r\n  \"Source\": \"sample string 4\",\r\n  \"Tracking\": {\r\n    \"Code\": \"sample string 1\",\r\n    \"Source\": \"sample string 2\"\r\n  }\r\n}"},"url":"https://{{Host}}/api/SurveyApi/PostResponses","description":" <p>\n            Post survey responses \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>PostResponsesInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Contact CtcID</td><td>False</td></tr><tr><td>IsCompleted</td><td>Boolean</td><td>Shows if the respondent completed answering the survey</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td></td><td>True</td></tr><tr><td>QuestionResponses</td><td>List&lt;QuestionResponse&gt;</td><td></td><td>True</td></tr><tr><td>Request</td><td>RequestInfo</td><td>Collection of http request header fields</td><td>False</td></tr><tr><td>SessionID</td><td>String</td><td>Unique identifier of the call</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>The Source of the call</td><td>False</td></tr><tr><td>Tracking</td><td>Tracking</td><td>Website Tracking</td><td>False</td></tr><tr><td><h4>QuestionResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ChoiceQuestionResponse</td><td>ChoiceQuestionResponse</td><td>Question ChoiceID</td><td>False</td></tr><tr><td>FileQuestionResponse</td><td>FileQuestionResponse</td><td>Text value of the answer (if any)</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32</td><td>QuestionID</td><td>False</td></tr><tr><td>TextQuestionResponse</td><td>TextQuestionResponse</td><td>Text value of the answer (if any)</td><td>False</td></tr><tr><td><h4>ChoiceQuestionResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ChoiceIDs</td><td>List&lt;Int32&gt;</td><td>Question ChoiceID</td><td>False</td></tr><tr><td>OtherText</td><td>String</td><td>Text value of the answer (if any)</td><td>False</td></tr><tr><td><h4>FileQuestionResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FileData</td><td>String</td><td>Text value of the answer (if any)</td><td>False</td></tr><tr><td>FileName</td><td>String</td><td>this field should be used when the type question is an upload file</td><td>False</td></tr><tr><td><h4>TextQuestionResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>TextResponse</td><td>String</td><td>Text value of the answer (if any)</td><td>False</td></tr><tr><td><h4>RequestInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrowserActiveXControls</td><td>Boolean</td><td>A value indicating whether the browser supports ActiveX controls</td><td>False</td></tr><tr><td>BrowserAOL</td><td>Boolean</td><td>A value indicating whether the client is an America Online (AOL) browser</td><td>False</td></tr><tr><td>BrowserBackgroundSounds</td><td>Boolean</td><td>A value indicating whether the browser supports playing background sounds</td><td>False</td></tr><tr><td>BrowserBeta</td><td>Boolean</td><td>A value indicating whether the browser is a beta version</td><td>False</td></tr><tr><td>BrowserCDF</td><td>Boolean</td><td>A value indicating whether the browser supports Channel Definition Format (CDF) for webcasting</td><td>False</td></tr><tr><td>BrowserClrVersion</td><td>String</td><td>The version of the .NET Framework that is installed on the client</td><td>False</td></tr><tr><td>BrowserCookies</td><td>Boolean</td><td>A value indicating whether the browser supports cookies</td><td>False</td></tr><tr><td>BrowserCrawler</td><td>Boolean</td><td>A value indicating whether the browser is a search engine Web crawler</td><td>False</td></tr><tr><td>BrowserEcmaScriptVersion</td><td>String</td><td>The version number of ECMAScript that the browser supports</td><td>False</td></tr><tr><td>BrowserFrames</td><td>Boolean</td><td>Indicates whether the browser supports HTML frames</td><td>False</td></tr><tr><td>BrowserJavaApplets</td><td>Boolean</td><td>A value indicating whether the browser supports Java</td><td>False</td></tr><tr><td>BrowserJavaScript</td><td>Boolean</td><td>A value indicating whether the browser supports JavaScript</td><td>False</td></tr><tr><td>BrowserMajorVersion</td><td>String</td><td>The major (integer) version number of the browser</td><td>False</td></tr><tr><td>BrowserMinorVersion</td><td>String</td><td>The minor (decimal) version number of the browser</td><td>False</td></tr><tr><td>BrowserMSDomVersion</td><td>String</td><td>The version of Microsoft HTML (MSHTML) Document Object Model (DOM) that the browser supports</td><td>False</td></tr><tr><td>BrowserName</td><td>String</td><td>The full name of the browser</td><td>False</td></tr><tr><td>BrowserPlatform</td><td>String</td><td>The name of the platform that the client uses, if it is known</td><td>False</td></tr><tr><td>BrowserTables</td><td>Boolean</td><td>Indicates whether the browser supports HTML table elements</td><td>False</td></tr><tr><td>BrowserVBScript</td><td>Boolean</td><td>A value indicating whether the browser supports Visual Basic Scripting edition (VBScript)</td><td>False</td></tr><tr><td>BrowserVersion</td><td>String</td><td>The full version number (integer and decimal) of the browser as a string</td><td>False</td></tr><tr><td>BrowserW3CDomVersion</td><td>String</td><td>The version of the World Wide Web Consortium (W3C) XML Document Object Model (DOM) that the browser supports</td><td>False</td></tr><tr><td>LogonUserIdentityName</td><td>String</td><td>Gets the user's Windows logon name</td><td>False</td></tr><tr><td>LogonUserIdentityUser</td><td>String</td><td>Gets the security identifier (SID) for the user</td><td>False</td></tr><tr><td>QueryString</td><td>String</td><td>The collection of HTTP query string variables</td><td>False</td></tr><tr><td>Url</td><td>String</td><td>Information about the URL of the current request</td><td>False</td></tr><tr><td>UrlReferrer</td><td>String</td><td>Information about the URL of the client's previous request that linked to the current URL</td><td>False</td></tr><tr><td>UserAgent</td><td>String</td><td>The user agent string of the user agent</td><td>False</td></tr><tr><td>UserHostAddress</td><td>String</td><td>IP host address of the remote client</td><td>False</td></tr><tr><td><h4>Tracking Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Code</td><td>String</td><td>Tracking Code</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>Tracking Source</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostResponsesOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>PostResponsesData</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>PostResponsesData Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>SessionID</td><td>String</td><td>Unique identifier of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","PostResponses"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"94bb128e-80e2-4532-8d59-318365a36725","name":"api/SurveyApi/PostResponses Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"QuestionResponses\": [\r\n    {\r\n      \"QuestionID\": 1,\r\n      \"ChoiceQuestionResponse\": {\r\n        \"ChoiceIDs\": [\r\n          1,\r\n          2\r\n        ],\r\n        \"OtherText\": \"sample string 1\"\r\n      },\r\n      \"TextQuestionResponse\": {\r\n        \"TextResponse\": \"sample string 1\"\r\n      },\r\n      \"FileQuestionResponse\": {\r\n        \"FileName\": \"sample string 1\",\r\n        \"FileData\": \"sample string 2\"\r\n      }\r\n    },\r\n    {\r\n      \"QuestionID\": 1,\r\n      \"ChoiceQuestionResponse\": {\r\n        \"ChoiceIDs\": [\r\n          1,\r\n          2\r\n        ],\r\n        \"OtherText\": \"sample string 1\"\r\n      },\r\n      \"TextQuestionResponse\": {\r\n        \"TextResponse\": \"sample string 1\"\r\n      },\r\n      \"FileQuestionResponse\": {\r\n        \"FileName\": \"sample string 1\",\r\n        \"FileData\": \"sample string 2\"\r\n      }\r\n    }\r\n  ],\r\n  \"IsCompleted\": true,\r\n  \"CtcID\": 1,\r\n  \"SessionID\": \"sample string 3\",\r\n  \"Request\": {\r\n    \"UserHostAddress\": \"sample string 1\",\r\n    \"BrowserName\": \"sample string 2\",\r\n    \"BrowserVersion\": \"sample string 3\",\r\n    \"BrowserMajorVersion\": \"sample string 4\",\r\n    \"BrowserMinorVersion\": \"sample string 5\",\r\n    \"BrowserCookies\": true,\r\n    \"BrowserActiveXControls\": true,\r\n    \"BrowserJavaScript\": true,\r\n    \"BrowserJavaApplets\": true,\r\n    \"BrowserVBScript\": true,\r\n    \"BrowserBackgroundSounds\": true,\r\n    \"BrowserFrames\": true,\r\n    \"BrowserTables\": true,\r\n    \"BrowserCDF\": true,\r\n    \"BrowserAOL\": true,\r\n    \"BrowserCrawler\": true,\r\n    \"BrowserBeta\": true,\r\n    \"BrowserW3CDomVersion\": \"sample string 18\",\r\n    \"BrowserMSDomVersion\": \"sample string 19\",\r\n    \"BrowserClrVersion\": \"sample string 20\",\r\n    \"BrowserPlatform\": \"sample string 21\",\r\n    \"BrowserEcmaScriptVersion\": \"sample string 22\",\r\n    \"LogonUserIdentityName\": \"sample string 23\",\r\n    \"LogonUserIdentityUser\": \"sample string 24\",\r\n    \"Url\": \"sample string 25\",\r\n    \"UrlReferrer\": \"sample string 26\",\r\n    \"QueryString\": \"sample string 27\",\r\n    \"UserAgent\": \"sample string 28\"\r\n  },\r\n  \"Source\": \"sample string 4\",\r\n  \"Tracking\": {\r\n    \"Code\": \"sample string 1\",\r\n    \"Source\": \"sample string 2\"\r\n  }\r\n}"},"url":"https://{{Host}}/api/SurveyApi/PostResponses","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post survey responses \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PostResponsesInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Contact CtcID</td><td>False</td></tr><tr><td>IsCompleted</td><td>Boolean</td><td>Shows if the respondent completed answering the survey</td><td>False</td></tr><tr><td>OpCode</td><td>Int32</td><td></td><td>True</td></tr><tr><td>QuestionResponses</td><td>List&lt;QuestionResponse&gt;</td><td></td><td>True</td></tr><tr><td>Request</td><td>RequestInfo</td><td>Collection of http request header fields</td><td>False</td></tr><tr><td>SessionID</td><td>String</td><td>Unique identifier of the call</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>The Source of the call</td><td>False</td></tr><tr><td>Tracking</td><td>Tracking</td><td>Website Tracking</td><td>False</td></tr><tr><td colspan=4><h4>QuestionResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ChoiceQuestionResponse</td><td>ChoiceQuestionResponse</td><td>Question ChoiceID</td><td>False</td></tr><tr><td>FileQuestionResponse</td><td>FileQuestionResponse</td><td>Text value of the answer (if any)</td><td>False</td></tr><tr><td>QuestionID</td><td>Int32</td><td>QuestionID</td><td>False</td></tr><tr><td>TextQuestionResponse</td><td>TextQuestionResponse</td><td>Text value of the answer (if any)</td><td>False</td></tr><tr><td colspan=4><h4>ChoiceQuestionResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ChoiceIDs</td><td>List&lt;Int32&gt;</td><td>Question ChoiceID</td><td>False</td></tr><tr><td>OtherText</td><td>String</td><td>Text value of the answer (if any)</td><td>False</td></tr><tr><td colspan=4><h4>FileQuestionResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FileData</td><td>String</td><td>Text value of the answer (if any)</td><td>False</td></tr><tr><td>FileName</td><td>String</td><td>this field should be used when the type question is an upload file</td><td>False</td></tr><tr><td colspan=4><h4>TextQuestionResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>TextResponse</td><td>String</td><td>Text value of the answer (if any)</td><td>False</td></tr><tr><td colspan=4><h4>RequestInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrowserActiveXControls</td><td>Boolean</td><td>A value indicating whether the browser supports ActiveX controls</td><td>False</td></tr><tr><td>BrowserAOL</td><td>Boolean</td><td>A value indicating whether the client is an America Online (AOL) browser</td><td>False</td></tr><tr><td>BrowserBackgroundSounds</td><td>Boolean</td><td>A value indicating whether the browser supports playing background sounds</td><td>False</td></tr><tr><td>BrowserBeta</td><td>Boolean</td><td>A value indicating whether the browser is a beta version</td><td>False</td></tr><tr><td>BrowserCDF</td><td>Boolean</td><td>A value indicating whether the browser supports Channel Definition Format (CDF) for webcasting</td><td>False</td></tr><tr><td>BrowserClrVersion</td><td>String</td><td>The version of the .NET Framework that is installed on the client</td><td>False</td></tr><tr><td>BrowserCookies</td><td>Boolean</td><td>A value indicating whether the browser supports cookies</td><td>False</td></tr><tr><td>BrowserCrawler</td><td>Boolean</td><td>A value indicating whether the browser is a search engine Web crawler</td><td>False</td></tr><tr><td>BrowserEcmaScriptVersion</td><td>String</td><td>The version number of ECMAScript that the browser supports</td><td>False</td></tr><tr><td>BrowserFrames</td><td>Boolean</td><td>Indicates whether the browser supports HTML frames</td><td>False</td></tr><tr><td>BrowserJavaApplets</td><td>Boolean</td><td>A value indicating whether the browser supports Java</td><td>False</td></tr><tr><td>BrowserJavaScript</td><td>Boolean</td><td>A value indicating whether the browser supports JavaScript</td><td>False</td></tr><tr><td>BrowserMajorVersion</td><td>String</td><td>The major (integer) version number of the browser</td><td>False</td></tr><tr><td>BrowserMinorVersion</td><td>String</td><td>The minor (decimal) version number of the browser</td><td>False</td></tr><tr><td>BrowserMSDomVersion</td><td>String</td><td>The version of Microsoft HTML (MSHTML) Document Object Model (DOM) that the browser supports</td><td>False</td></tr><tr><td>BrowserName</td><td>String</td><td>The full name of the browser</td><td>False</td></tr><tr><td>BrowserPlatform</td><td>String</td><td>The name of the platform that the client uses, if it is known</td><td>False</td></tr><tr><td>BrowserTables</td><td>Boolean</td><td>Indicates whether the browser supports HTML table elements</td><td>False</td></tr><tr><td>BrowserVBScript</td><td>Boolean</td><td>A value indicating whether the browser supports Visual Basic Scripting edition (VBScript)</td><td>False</td></tr><tr><td>BrowserVersion</td><td>String</td><td>The full version number (integer and decimal) of the browser as a string</td><td>False</td></tr><tr><td>BrowserW3CDomVersion</td><td>String</td><td>The version of the World Wide Web Consortium (W3C) XML Document Object Model (DOM) that the browser supports</td><td>False</td></tr><tr><td>LogonUserIdentityName</td><td>String</td><td>Gets the user's Windows logon name</td><td>False</td></tr><tr><td>LogonUserIdentityUser</td><td>String</td><td>Gets the security identifier (SID) for the user</td><td>False</td></tr><tr><td>QueryString</td><td>String</td><td>The collection of HTTP query string variables</td><td>False</td></tr><tr><td>Url</td><td>String</td><td>Information about the URL of the current request</td><td>False</td></tr><tr><td>UrlReferrer</td><td>String</td><td>Information about the URL of the client's previous request that linked to the current URL</td><td>False</td></tr><tr><td>UserAgent</td><td>String</td><td>The user agent string of the user agent</td><td>False</td></tr><tr><td>UserHostAddress</td><td>String</td><td>IP host address of the remote client</td><td>False</td></tr><tr><td colspan=4><h4>Tracking Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Code</td><td>String</td><td>Tracking Code</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>Tracking Source</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostResponsesOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>PostResponsesData</td><td></td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>PostResponsesData Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>SessionID</td><td>String</td><td>Unique identifier of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8a44354c-4096-4f0c-bfd0-82dac93c6aa9"},{"name":"PostSurvey","id":"cdb1bac2-de28-4642-a8a3-40fc40190ca2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"Description\": \"sample string 1\",\r\n  \"PageTitle\": \"sample string 2\",\r\n  \"SurveyName\": \"sample string 3\",\r\n  \"SurveyIntroduction\": \"sample string 4\",\r\n  \"ThankyouPageDescription\": \"sample string 5\",\r\n  \"BrandID\": 1,\r\n  \"EndDate\": \"2026-03-25T07:30:10.3209615+00:00\",\r\n  \"SubmissionCap\": 1,\r\n  \"ClosureMessage\": \"sample string 6\",\r\n  \"LandingPage\": \"sample string 7\",\r\n  \"UseEncryptedOpCode\": true,\r\n  \"RequiredQuestionText\": \"sample string 9\",\r\n  \"PleaseSelectText\": \"sample string 10\",\r\n  \"Islive\": true\r\n}"},"url":"https://{{Host}}/api/SurveyApi/PostSurvey","description":" <p>\n            create a new survey  \n            \n</p><h4>Body Payload</h4><table><tr><td><h4>PostSurveyDataInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>Brand ID</td><td>False</td></tr><tr><td>ClosureMessage</td><td>String</td><td>Closure Message</td><td>False</td></tr><tr><td>Description</td><td>String</td><td>Survey description</td><td>False</td></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td>End Date</td><td>False</td></tr><tr><td>Islive</td><td>Boolean</td><td>Make This Survey Live</td><td>False</td></tr><tr><td>LandingPage</td><td>String</td><td>Landing Page</td><td>False</td></tr><tr><td>OpCode</td><td>Int32 (nullable)</td><td>Survey ID</td><td>False</td></tr><tr><td>PageTitle</td><td>String</td><td>Survey title</td><td>False</td></tr><tr><td>PleaseSelectText</td><td>String</td><td>Please select text</td><td>False</td></tr><tr><td>RequiredQuestionText</td><td>String</td><td></td><td>False</td></tr><tr><td>SubmissionCap</td><td>Int32 (nullable)</td><td>SubmissionCap</td><td>False</td></tr><tr><td>SurveyIntroduction</td><td>String</td><td>Survey Intro text</td><td>False</td></tr><tr><td>SurveyName</td><td>String</td><td>Survey name</td><td>False</td></tr><tr><td>ThankyouPageDescription</td><td>String</td><td>Text displayed after survey submission</td><td>False</td></tr><tr><td>UseEncryptedOpCode</td><td>Boolean</td><td>Use Encrypted OpCode</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>PostSurveyDataOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td>SurveyData</td><td>PostSurveyData</td><td></td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>PostSurveyData Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Link</td><td>String</td><td></td></tr><tr><td>OpCode</td><td>Int32</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","SurveyApi","PostSurvey"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"676eaea2-87e8-4fcd-8711-1ab589cde020","name":"api/SurveyApi/PostSurvey Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OpCode\": 1,\r\n  \"Description\": \"sample string 1\",\r\n  \"PageTitle\": \"sample string 2\",\r\n  \"SurveyName\": \"sample string 3\",\r\n  \"SurveyIntroduction\": \"sample string 4\",\r\n  \"ThankyouPageDescription\": \"sample string 5\",\r\n  \"BrandID\": 1,\r\n  \"EndDate\": \"2026-03-25T07:30:10.3209615+00:00\",\r\n  \"SubmissionCap\": 1,\r\n  \"ClosureMessage\": \"sample string 6\",\r\n  \"LandingPage\": \"sample string 7\",\r\n  \"UseEncryptedOpCode\": true,\r\n  \"RequiredQuestionText\": \"sample string 9\",\r\n  \"PleaseSelectText\": \"sample string 10\",\r\n  \"Islive\": true\r\n}"},"url":"https://{{Host}}/api/SurveyApi/PostSurvey","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            create a new survey  \r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>PostSurveyDataInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>Brand ID</td><td>False</td></tr><tr><td>ClosureMessage</td><td>String</td><td>Closure Message</td><td>False</td></tr><tr><td>Description</td><td>String</td><td>Survey description</td><td>False</td></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td>End Date</td><td>False</td></tr><tr><td>Islive</td><td>Boolean</td><td>Make This Survey Live</td><td>False</td></tr><tr><td>LandingPage</td><td>String</td><td>Landing Page</td><td>False</td></tr><tr><td>OpCode</td><td>Int32 (nullable)</td><td>Survey ID</td><td>False</td></tr><tr><td>PageTitle</td><td>String</td><td>Survey title</td><td>False</td></tr><tr><td>PleaseSelectText</td><td>String</td><td>Please select text</td><td>False</td></tr><tr><td>RequiredQuestionText</td><td>String</td><td></td><td>False</td></tr><tr><td>SubmissionCap</td><td>Int32 (nullable)</td><td>SubmissionCap</td><td>False</td></tr><tr><td>SurveyIntroduction</td><td>String</td><td>Survey Intro text</td><td>False</td></tr><tr><td>SurveyName</td><td>String</td><td>Survey name</td><td>False</td></tr><tr><td>ThankyouPageDescription</td><td>String</td><td>Text displayed after survey submission</td><td>False</td></tr><tr><td>UseEncryptedOpCode</td><td>Boolean</td><td>Use Encrypted OpCode</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>PostSurveyDataOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td>SurveyData</td><td>PostSurveyData</td><td></td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>PostSurveyData Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Link</td><td>String</td><td></td></tr><tr><td>OpCode</td><td>Int32</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cdb1bac2-de28-4642-a8a3-40fc40190ca2"}],"id":"6105f3a7-a178-4b04-83ef-5e518714ddb2","description":"<p>API methods to save survey responses<br /></p><h2>Standard API Responses</h2><li><strong>200</strong> Success</li><li><strong>401</strong> Unauthorized (no valid access token provided)</li><li><strong>403</strong> Forbidden Forbidden (indicates you do not have access to this method)</li><li><strong>404</strong> Not Found (indicates invalid parameters or missing API endpoint)</li><li><strong>500</strong> Internal Server Error (indicates something went wrong on our end)</li><br /><br />for 200-level responses there is a field named <strong>ResponseStatus</strong> which will give you the status of the call :<li><b>true</b> Success</li><li><b>false</b> there is an error (you will find the error code and the description in the object <b>Errors</b>) </li><br /><br /><h2>Possible Errors</h2><li><strong>1</strong> Missing mandatory fields</li><li><strong>2</strong> Internal Error</li><li><strong>12</strong> empty input parameter</li><li><strong>13</strong> Invalid CtcID</li><li><strong>14</strong> Invalid SessionID</li><li><strong>14</strong> Invalid Question ID</li><li><strong>16</strong> Invalid response object</li><li><strong>17</strong> Invalid choice id</li><li><strong>18</strong> Question should have only one choice choosen</li><p></p>\n","_postman_id":"6105f3a7-a178-4b04-83ef-5e518714ddb2"},{"name":"Tiers","item":[{"name":"Get","id":"99cb1de1-cd26-42c0-89e0-3f84600d5f86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Tiers/Get","description":" <p>\n            Get list of tiers\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetTiersOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>Tiers</td><td>List&lt;TiersApi&gt;</td><td>List Of Tiers</td></tr><tr><td><h4>TiersApi Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxPoint</td><td>Double</td><td>Maximum</td></tr><tr><td>MinPoint</td><td>Double</td><td>Minimum points</td></tr><tr><td>TiersID</td><td>Int32</td><td>The unique identifier</td></tr><tr><td>TiersName</td><td>String</td><td>Name of tiers</td></tr></table>","urlObject":{"protocol":"https","path":["api","Tiers","Get"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"97753712-e069-4f47-8d56-68011d09d544","name":"api/Tiers/Get Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Tiers/Get","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get list of tiers\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetTiersOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>Tiers</td><td>List&lt;TiersApi&gt;</td><td>List Of Tiers</td></tr><tr><td colspan=3><h4>TiersApi Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>MaxPoint</td><td>Double</td><td>Maximum</td></tr><tr><td>MinPoint</td><td>Double</td><td>Minimum points</td></tr><tr><td>TiersID</td><td>Int32</td><td>The unique identifier</td></tr><tr><td>TiersName</td><td>String</td><td>Name of tiers</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Tiers\": [\r\n    {\r\n      \"TiersID\": 1,\r\n      \"TiersName\": \"sample string 2\",\r\n      \"MinPoint\": 3.1,\r\n      \"MaxPoint\": 4.1\r\n    },\r\n    {\r\n      \"TiersID\": 1,\r\n      \"TiersName\": \"sample string 2\",\r\n      \"MinPoint\": 3.1,\r\n      \"MaxPoint\": 4.1\r\n    }\r\n  ],\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"99cb1de1-cd26-42c0-89e0-3f84600d5f86"}],"id":"d1703320-347a-4b5d-8ce2-f4b05f83dbe7","description":"<p>Api Methods for Tiers</p>\n","_postman_id":"d1703320-347a-4b5d-8ce2-f4b05f83dbe7"},{"name":"Transaction","item":[{"name":"Post","id":"2be85d67-12fa-40dc-8763-a110a6bf704f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OrderID\": \"sample string 1\",\r\n  \"ExternalCustomerID\": \"sample string 2\",\r\n  \"ExternalCustomerSource\": \"sample string 3\",\r\n  \"CardToken\": \"sample string 4\",\r\n  \"MemberNumber\": \"sample string 5\",\r\n  \"LoyaltyCardNumber\": \"sample string 6\",\r\n  \"OrderDate\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n  \"CollectionDate\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n  \"LocationID\": 7,\r\n  \"ExternalLocationID\": \"sample string 8\",\r\n  \"TableNumber\": \"sample string 9\",\r\n  \"TotalAmount\": 10.1,\r\n  \"PaidAmount\": 11.1,\r\n  \"OrderStatusID\": 1,\r\n  \"OrderTypeID\": 1,\r\n  \"SaleTypeID\": 1,\r\n  \"OrderChannelID\": 1,\r\n  \"TotalDiscountAmount\": 12.1,\r\n  \"TotalAdjustmentAmount\": 13.1,\r\n  \"OpenDateTime\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n  \"CloseDateTime\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n  \"VoucherCode\": \"sample string 14\",\r\n  \"CustomerCount\": 15,\r\n  \"TillID\": \"sample string 16\",\r\n  \"ClerkID\": \"sample string 17\",\r\n  \"Tax\": 18.1,\r\n  \"Gross\": 19.1,\r\n  \"ServiceChargeAmount\": 20.1,\r\n  \"Source\": \"sample string 21\",\r\n  \"Currency\": \"sample string 22\",\r\n  \"ApplyRedeeemVoucher\": true,\r\n  \"CtcID\": 25,\r\n  \"ReceiptCode\": \"sample string 26\",\r\n  \"CustomField1\": \"sample string 27\",\r\n  \"CustomField2\": \"sample string 28\",\r\n  \"CustomField3\": \"sample string 29\",\r\n  \"CustomField4\": \"sample string 30\",\r\n  \"CustomField5\": \"sample string 31\",\r\n  \"CustomField6\": \"sample string 32\",\r\n  \"CustomField7\": \"sample string 33\",\r\n  \"EarnPoints\": true,\r\n  \"OrderItems\": [\r\n    {\r\n      \"ItemID\": \"sample string 1\",\r\n      \"ItemName\": \"sample string 2\",\r\n      \"ItemGroupName\": \"sample string 3\",\r\n      \"ItemSubGroupName\": \"sample string 4\",\r\n      \"ItemDesc\": \"sample string 5\",\r\n      \"ItemPrice\": 6.1,\r\n      \"Quantity\": 7.1,\r\n      \"TotalPrice\": 8.1,\r\n      \"Tax\": 9.1,\r\n      \"Gross\": 10.1,\r\n      \"DiscountAmount\": 11.1,\r\n      \"ProductCode\": \"sample string 13\",\r\n      \"VoucherCode\": \"sample string 14\",\r\n      \"SalesGroupID\": \"sample string 15\",\r\n      \"SalesGroupName\": \"sample string 16\",\r\n      \"AdjustmentAmount\": 17.1,\r\n      \"PriceLevel\": \"sample string 18\"\r\n    },\r\n    {\r\n      \"ItemID\": \"sample string 1\",\r\n      \"ItemName\": \"sample string 2\",\r\n      \"ItemGroupName\": \"sample string 3\",\r\n      \"ItemSubGroupName\": \"sample string 4\",\r\n      \"ItemDesc\": \"sample string 5\",\r\n      \"ItemPrice\": 6.1,\r\n      \"Quantity\": 7.1,\r\n      \"TotalPrice\": 8.1,\r\n      \"Tax\": 9.1,\r\n      \"Gross\": 10.1,\r\n      \"DiscountAmount\": 11.1,\r\n      \"ProductCode\": \"sample string 13\",\r\n      \"VoucherCode\": \"sample string 14\",\r\n      \"SalesGroupID\": \"sample string 15\",\r\n      \"SalesGroupName\": \"sample string 16\",\r\n      \"AdjustmentAmount\": 17.1,\r\n      \"PriceLevel\": \"sample string 18\"\r\n    }\r\n  ],\r\n  \"PaymentItems\": [\r\n    {\r\n      \"PaymentDate\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n      \"PaymentMethodID\": 1,\r\n      \"AmountPaid\": 1.1,\r\n      \"CardNumber\": \"sample string 2\",\r\n      \"PaymentDesc\": \"sample string 3\",\r\n      \"PointsReservationCode\": 4,\r\n      \"AuthCode\": \"sample string 5\"\r\n    },\r\n    {\r\n      \"PaymentDate\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n      \"PaymentMethodID\": 1,\r\n      \"AmountPaid\": 1.1,\r\n      \"CardNumber\": \"sample string 2\",\r\n      \"PaymentDesc\": \"sample string 3\",\r\n      \"PointsReservationCode\": 4,\r\n      \"AuthCode\": \"sample string 5\"\r\n    }\r\n  ],\r\n  \"OrderDelivery\": {\r\n    \"DeliveryId\": \"sample string 1\",\r\n    \"Enabled\": true,\r\n    \"DeliveryMode\": \"sample string 3\",\r\n    \"DeliveryState\": \"sample string 4\",\r\n    \"CollectionCode\": \"sample string 5\",\r\n    \"DeliveryInfo\": \"sample string 6\",\r\n    \"DeliveryDueTime\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n    \"DeliveryTime\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n    \"DeliveredTime\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n    \"ProductionDueTime\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n    \"Prepaid\": true,\r\n    \"DeliveryOrigin\": \"sample string 8\",\r\n    \"DeviceName\": \"sample string 9\",\r\n    \"Shpipping_Address\": {\r\n      \"address1\": \"sample string 1\",\r\n      \"address2\": \"sample string 2\",\r\n      \"city\": \"sample string 3\",\r\n      \"company\": \"sample string 4\",\r\n      \"country\": \"sample string 5\",\r\n      \"first_name\": \"sample string 6\",\r\n      \"last_name\": \"sample string 7\",\r\n      \"latitude\": 8.0,\r\n      \"longitude\": 9.0,\r\n      \"phone\": \"sample string 10\",\r\n      \"province\": \"sample string 11\",\r\n      \"zip\": \"sample string 12\",\r\n      \"name\": \"sample string 13\",\r\n      \"country_code\": \"sample string 14\",\r\n      \"province_code\": \"sample string 15\"\r\n    }\r\n  },\r\n  \"BookingReference\": {\r\n    \"ReservationReference\": \"sample string 1\",\r\n    \"SupplierCode\": 1,\r\n    \"BookingSector\": 1\r\n  }\r\n}"},"url":"https://{{Host}}/api/Transaction/Post","description":" <p><b>DEPRECATED</b>\n<br />\n</p><h4>Body Payload</h4><table><tr><td><h4>Transaction Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplyRedeeemVoucher</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>BookingReference</td><td>BookingReference</td><td>Booking Reference : optional</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td>The Card token used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td>ClerkID</td><td>String</td><td>Clerk ID</td><td>False</td></tr><tr><td>CloseDateTime</td><td>DateTime (nullable)</td><td>Close Date Time</td><td>False</td></tr><tr><td>CollectionDate</td><td>DateTime (nullable)</td><td>Order Date</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>Atreemo Contact ID</td><td>False</td></tr><tr><td>Currency</td><td>String</td><td>Currency</td><td>False</td></tr><tr><td>CustomerCount</td><td>Int32</td><td>Customer Count</td><td>False</td></tr><tr><td>CustomField1</td><td>String</td><td>Extra Field 1</td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td>Extra Field 2</td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td>Extra Field 3</td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td>Extra Field 4</td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td>Extra Field 5</td><td>False</td></tr><tr><td>CustomField6</td><td>String</td><td>Extra Field 6</td><td>False</td></tr><tr><td>CustomField7</td><td>String</td><td>Extra Field 7</td><td>False</td></tr><tr><td>EarnPoints</td><td>Boolean</td><td>Earn Points</td><td>False</td></tr><tr><td>ExternalCustomerID</td><td>String</td><td>Contact Origin ID : provided with the Source ID to find the ctcid (Atreemo contact ID)</td><td>False</td></tr><tr><td>ExternalCustomerSource</td><td>String</td><td>Contact Source ID : provided with the OrginID ID to find the ctcid (Atreemo contact ID)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>External Location ID : Used to find Atreemo Location ID (this will be used only if locationID field is empty).</td><td>False</td></tr><tr><td>Gross</td><td>Double</td><td>Gross</td><td>False</td></tr><tr><td>LocationID</td><td>Int32</td><td>Atreemo Location ID</td><td>False</td></tr><tr><td>LoyaltyCardNumber</td><td>String</td><td>Card Number</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member Number : Can also provided to find the CtciD</td><td>False</td></tr><tr><td>OpenDateTime</td><td>DateTime (nullable)</td><td>Open Date Time</td><td>False</td></tr><tr><td>OrderChannelID</td><td>EnumOrderChannels (nullable)</td><td>Order Channel \n            InStore = 1,\n            OnlineWeb = 5,\n            OnlineApp = 6</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>Order Date : if null then date time when the Api call is made.</td><td>False</td></tr><tr><td>OrderDelivery</td><td>OrderDelivery</td><td>Delivery Details : optional</td><td>False</td></tr><tr><td>OrderID</td><td>String</td><td>Transaction ID</td><td>True</td></tr><tr><td>OrderItems</td><td>List&lt;OrderItems&gt;</td><td>List of order Items</td><td>True</td></tr><tr><td>OrderStatusID</td><td>EnumOrderStatus (nullable)</td><td>Order Status\n             Paid = 1,\n             Cancelled = 2,\n             Invoiced = 3,\n             Incomplete = 4,\n             Refunded = 5,\n             PartiallyPaid = 6</td><td>False</td></tr><tr><td>OrderTypeID</td><td>EnumOrderTypes (nullable)</td><td>Order Type\n            InStore = 1,\n            Collection = 2,\n            Delivery = 3,\n            Shop = 7,\n            PayAtTable = 8,\n            PreOrder = 9,\n             Deposit = 10,\n            Kiosk=11\n            HotelBooking=12</td><td>False</td></tr><tr><td>PaidAmount</td><td>Double</td><td>Paid Amount (after discount)</td><td>False</td></tr><tr><td>PaymentItems</td><td>List&lt;OrderPaymentItems&gt;</td><td>List of payments</td><td>False</td></tr><tr><td>ReceiptCode</td><td>String</td><td>Receipt Code</td><td>False</td></tr><tr><td>SaleTypeID</td><td>EnumSaleTypes (nullable)</td><td>Sale Type \n            Sale = 1,\n            Refund = 2,\n            NoSale = 3,\n            CancelledSale = 4,\n            ZeroValueSale = 5,\n            OtherActions = 6,\n            Void = 7,\n            Online = 8,\n            DiscountedSale = 9</td><td>False</td></tr><tr><td>ServiceChargeAmount</td><td>Double</td><td>The amount of service charge</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>Source</td><td>False</td></tr><tr><td>TableNumber</td><td>String</td><td>Table number</td><td>False</td></tr><tr><td>Tax</td><td>Double</td><td>Tax</td><td>False</td></tr><tr><td>TillID</td><td>String</td><td>Till ID</td><td>False</td></tr><tr><td>TotalAdjustmentAmount</td><td>Double</td><td>Total Adjustement Amount (External)</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>Order amount before discount</td><td>False</td></tr><tr><td>TotalDiscountAmount</td><td>Double</td><td>Total Discount Amount</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher Code (Atreemo Code)</td><td>False</td></tr><tr><td><h4>BookingReference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td><td>False</td></tr><tr><td>ReservationReference</td><td>String</td><td>Reservation Reference</td><td>False</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list\n            Mandatory with ReservationReference field</td><td>False</td></tr><tr><td><h4>OrderDelivery Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CollectionCode</td><td>String</td><td>Collection Code</td><td>False</td></tr><tr><td>DeliveredTime</td><td>DateTime (nullable)</td><td>Delivered Time</td><td>False</td></tr><tr><td>DeliveryDueTime</td><td>DateTime (nullable)</td><td>Delivery DueTime</td><td>False</td></tr><tr><td>DeliveryId</td><td>String</td><td>Delivery Id</td><td>False</td></tr><tr><td>DeliveryInfo</td><td>String</td><td>Delivery Info</td><td>False</td></tr><tr><td>DeliveryMode</td><td>String</td><td>Delivery Mode</td><td>False</td></tr><tr><td>DeliveryOrigin</td><td>String</td><td>Delivery Origin</td><td>False</td></tr><tr><td>DeliveryState</td><td>String</td><td>Delivery State</td><td>False</td></tr><tr><td>DeliveryTime</td><td>DateTime (nullable)</td><td>Delivery Time</td><td>False</td></tr><tr><td>DeviceName</td><td>String</td><td>Device Name</td><td>False</td></tr><tr><td>Enabled</td><td>Boolean</td><td>Enabled</td><td>False</td></tr><tr><td>Prepaid</td><td>Boolean</td><td>Prepaid</td><td>False</td></tr><tr><td>ProductionDueTime</td><td>DateTime (nullable)</td><td>Production Due Time</td><td>False</td></tr><tr><td>Shpipping_Address</td><td>OrderShippingAddress</td><td>Address Details</td><td>False</td></tr><tr><td><h4>OrderShippingAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>address1</td><td>String</td><td>Street Address</td><td>False</td></tr><tr><td>address2</td><td>String</td><td>Building Address</td><td>False</td></tr><tr><td>city</td><td>String</td><td>City</td><td>False</td></tr><tr><td>company</td><td>String</td><td>Company</td><td>False</td></tr><tr><td>country</td><td>String</td><td>Country</td><td>False</td></tr><tr><td>country_code</td><td>String</td><td>country code</td><td>False</td></tr><tr><td>first_name</td><td>String</td><td>first name</td><td>False</td></tr><tr><td>last_name</td><td>String</td><td>Last name</td><td>False</td></tr><tr><td>latitude</td><td>Decimal</td><td>latitude</td><td>False</td></tr><tr><td>longitude</td><td>Decimal</td><td>longitude</td><td>False</td></tr><tr><td>name</td><td>String</td><td>name</td><td>False</td></tr><tr><td>phone</td><td>String</td><td>phone</td><td>False</td></tr><tr><td>province</td><td>String</td><td>province</td><td>False</td></tr><tr><td>province_code</td><td>String</td><td>province code</td><td>False</td></tr><tr><td>zip</td><td>String</td><td>zip</td><td>False</td></tr><tr><td><h4>OrderItems Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdjustmentAmount</td><td>Double</td><td>Adjustement Amount (External)</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Order Item DiscountAmount</td><td>False</td></tr><tr><td>Gross</td><td>Double</td><td>Order Item Gross</td><td>False</td></tr><tr><td>ItemDesc</td><td>String</td><td>Order Item Description (Product)</td><td>False</td></tr><tr><td>ItemGroupName</td><td>String</td><td>Order Item Product Group Name</td><td>False</td></tr><tr><td>ItemID</td><td>String</td><td>Order Item ID (unique identifier of the item in the order)</td><td>False</td></tr><tr><td>ItemName</td><td>String</td><td>Order Item Name (Product)</td><td>False</td></tr><tr><td>ItemPrice</td><td>Double</td><td>Order Item Price</td><td>False</td></tr><tr><td>ItemSubGroupName</td><td>String</td><td>Order Item Product Sub Group Name</td><td>False</td></tr><tr><td>PriceLevel</td><td>String</td><td>Order Price Level</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>Order Product Code</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Order Item Quantity</td><td>False</td></tr><tr><td>SalesGroupID</td><td>String</td><td>Order Sales Group ID</td><td>False</td></tr><tr><td>SalesGroupName</td><td>String</td><td>Order Sales Group Name</td><td>False</td></tr><tr><td>Tax</td><td>Double</td><td>Order Item Tax</td><td>False</td></tr><tr><td>TotalPrice</td><td>Double</td><td>Order Item Total Price</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>Order Voucher Code : ApplyRedeeemVoucher should be flagged (Atreemo Code)</td><td>False</td></tr><tr><td><h4>OrderPaymentItems Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPaid</td><td>Double</td><td>Amount Paid</td><td>False</td></tr><tr><td>AuthCode</td><td>String</td><td>Auth code like to credit card used for payment</td><td>False</td></tr><tr><td>CardNumber</td><td>String</td><td>Card Number</td><td>False</td></tr><tr><td>PaymentDate</td><td>DateTime (nullable)</td><td>Payment Date</td><td>False</td></tr><tr><td>PaymentDesc</td><td>String</td><td>Payment Description</td><td>False</td></tr><tr><td>PaymentMethodID</td><td>EnumPaymentMethod (nullable)</td><td>Payment Method\n            Card = 1,\n            Cash = 2,\n            Point = 3,\n            Mobile = 4,\n            PurchaseOrder = 5,\n            Credit = 6,\n            Voucher = 7,\n            Other = 8,\n            Internet = 9</td><td>False</td></tr><tr><td>PointsReservationCode</td><td>Int32</td><td>This will be used only if the payment method is point and (PaymentMethodID = 3) an you have already reserved these points at the begining.</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Transaction","Post"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"ac9dd5fc-d119-4b5e-9f9b-1d251b8012c1","name":"api/Transaction/Post Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OrderID\": \"sample string 1\",\r\n  \"ExternalCustomerID\": \"sample string 2\",\r\n  \"ExternalCustomerSource\": \"sample string 3\",\r\n  \"CardToken\": \"sample string 4\",\r\n  \"MemberNumber\": \"sample string 5\",\r\n  \"LoyaltyCardNumber\": \"sample string 6\",\r\n  \"OrderDate\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n  \"CollectionDate\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n  \"LocationID\": 7,\r\n  \"ExternalLocationID\": \"sample string 8\",\r\n  \"TableNumber\": \"sample string 9\",\r\n  \"TotalAmount\": 10.1,\r\n  \"PaidAmount\": 11.1,\r\n  \"OrderStatusID\": 1,\r\n  \"OrderTypeID\": 1,\r\n  \"SaleTypeID\": 1,\r\n  \"OrderChannelID\": 1,\r\n  \"TotalDiscountAmount\": 12.1,\r\n  \"TotalAdjustmentAmount\": 13.1,\r\n  \"OpenDateTime\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n  \"CloseDateTime\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n  \"VoucherCode\": \"sample string 14\",\r\n  \"CustomerCount\": 15,\r\n  \"TillID\": \"sample string 16\",\r\n  \"ClerkID\": \"sample string 17\",\r\n  \"Tax\": 18.1,\r\n  \"Gross\": 19.1,\r\n  \"ServiceChargeAmount\": 20.1,\r\n  \"Source\": \"sample string 21\",\r\n  \"Currency\": \"sample string 22\",\r\n  \"ApplyRedeeemVoucher\": true,\r\n  \"CtcID\": 25,\r\n  \"ReceiptCode\": \"sample string 26\",\r\n  \"CustomField1\": \"sample string 27\",\r\n  \"CustomField2\": \"sample string 28\",\r\n  \"CustomField3\": \"sample string 29\",\r\n  \"CustomField4\": \"sample string 30\",\r\n  \"CustomField5\": \"sample string 31\",\r\n  \"CustomField6\": \"sample string 32\",\r\n  \"CustomField7\": \"sample string 33\",\r\n  \"EarnPoints\": true,\r\n  \"OrderItems\": [\r\n    {\r\n      \"ItemID\": \"sample string 1\",\r\n      \"ItemName\": \"sample string 2\",\r\n      \"ItemGroupName\": \"sample string 3\",\r\n      \"ItemSubGroupName\": \"sample string 4\",\r\n      \"ItemDesc\": \"sample string 5\",\r\n      \"ItemPrice\": 6.1,\r\n      \"Quantity\": 7.1,\r\n      \"TotalPrice\": 8.1,\r\n      \"Tax\": 9.1,\r\n      \"Gross\": 10.1,\r\n      \"DiscountAmount\": 11.1,\r\n      \"ProductCode\": \"sample string 13\",\r\n      \"VoucherCode\": \"sample string 14\",\r\n      \"SalesGroupID\": \"sample string 15\",\r\n      \"SalesGroupName\": \"sample string 16\",\r\n      \"AdjustmentAmount\": 17.1,\r\n      \"PriceLevel\": \"sample string 18\"\r\n    },\r\n    {\r\n      \"ItemID\": \"sample string 1\",\r\n      \"ItemName\": \"sample string 2\",\r\n      \"ItemGroupName\": \"sample string 3\",\r\n      \"ItemSubGroupName\": \"sample string 4\",\r\n      \"ItemDesc\": \"sample string 5\",\r\n      \"ItemPrice\": 6.1,\r\n      \"Quantity\": 7.1,\r\n      \"TotalPrice\": 8.1,\r\n      \"Tax\": 9.1,\r\n      \"Gross\": 10.1,\r\n      \"DiscountAmount\": 11.1,\r\n      \"ProductCode\": \"sample string 13\",\r\n      \"VoucherCode\": \"sample string 14\",\r\n      \"SalesGroupID\": \"sample string 15\",\r\n      \"SalesGroupName\": \"sample string 16\",\r\n      \"AdjustmentAmount\": 17.1,\r\n      \"PriceLevel\": \"sample string 18\"\r\n    }\r\n  ],\r\n  \"PaymentItems\": [\r\n    {\r\n      \"PaymentDate\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n      \"PaymentMethodID\": 1,\r\n      \"AmountPaid\": 1.1,\r\n      \"CardNumber\": \"sample string 2\",\r\n      \"PaymentDesc\": \"sample string 3\",\r\n      \"PointsReservationCode\": 4,\r\n      \"AuthCode\": \"sample string 5\"\r\n    },\r\n    {\r\n      \"PaymentDate\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n      \"PaymentMethodID\": 1,\r\n      \"AmountPaid\": 1.1,\r\n      \"CardNumber\": \"sample string 2\",\r\n      \"PaymentDesc\": \"sample string 3\",\r\n      \"PointsReservationCode\": 4,\r\n      \"AuthCode\": \"sample string 5\"\r\n    }\r\n  ],\r\n  \"OrderDelivery\": {\r\n    \"DeliveryId\": \"sample string 1\",\r\n    \"Enabled\": true,\r\n    \"DeliveryMode\": \"sample string 3\",\r\n    \"DeliveryState\": \"sample string 4\",\r\n    \"CollectionCode\": \"sample string 5\",\r\n    \"DeliveryInfo\": \"sample string 6\",\r\n    \"DeliveryDueTime\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n    \"DeliveryTime\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n    \"DeliveredTime\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n    \"ProductionDueTime\": \"2026-03-25T07:30:10.4066249+00:00\",\r\n    \"Prepaid\": true,\r\n    \"DeliveryOrigin\": \"sample string 8\",\r\n    \"DeviceName\": \"sample string 9\",\r\n    \"Shpipping_Address\": {\r\n      \"address1\": \"sample string 1\",\r\n      \"address2\": \"sample string 2\",\r\n      \"city\": \"sample string 3\",\r\n      \"company\": \"sample string 4\",\r\n      \"country\": \"sample string 5\",\r\n      \"first_name\": \"sample string 6\",\r\n      \"last_name\": \"sample string 7\",\r\n      \"latitude\": 8.0,\r\n      \"longitude\": 9.0,\r\n      \"phone\": \"sample string 10\",\r\n      \"province\": \"sample string 11\",\r\n      \"zip\": \"sample string 12\",\r\n      \"name\": \"sample string 13\",\r\n      \"country_code\": \"sample string 14\",\r\n      \"province_code\": \"sample string 15\"\r\n    }\r\n  },\r\n  \"BookingReference\": {\r\n    \"ReservationReference\": \"sample string 1\",\r\n    \"SupplierCode\": 1,\r\n    \"BookingSector\": 1\r\n  }\r\n}"},"url":"https://{{Host}}/api/Transaction/Post","description":"<html> <style>table { background-color: coral; }</style><p><b>DEPRECATED</b>\r\n<br />\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>Transaction Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplyRedeeemVoucher</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>BookingReference</td><td>BookingReference</td><td>Booking Reference : optional</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td>The Card token used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td>ClerkID</td><td>String</td><td>Clerk ID</td><td>False</td></tr><tr><td>CloseDateTime</td><td>DateTime (nullable)</td><td>Close Date Time</td><td>False</td></tr><tr><td>CollectionDate</td><td>DateTime (nullable)</td><td>Order Date</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>Atreemo Contact ID</td><td>False</td></tr><tr><td>Currency</td><td>String</td><td>Currency</td><td>False</td></tr><tr><td>CustomerCount</td><td>Int32</td><td>Customer Count</td><td>False</td></tr><tr><td>CustomField1</td><td>String</td><td>Extra Field 1</td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td>Extra Field 2</td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td>Extra Field 3</td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td>Extra Field 4</td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td>Extra Field 5</td><td>False</td></tr><tr><td>CustomField6</td><td>String</td><td>Extra Field 6</td><td>False</td></tr><tr><td>CustomField7</td><td>String</td><td>Extra Field 7</td><td>False</td></tr><tr><td>EarnPoints</td><td>Boolean</td><td>Earn Points</td><td>False</td></tr><tr><td>ExternalCustomerID</td><td>String</td><td>Contact Origin ID : provided with the Source ID to find the ctcid (Atreemo contact ID)</td><td>False</td></tr><tr><td>ExternalCustomerSource</td><td>String</td><td>Contact Source ID : provided with the OrginID ID to find the ctcid (Atreemo contact ID)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>External Location ID : Used to find Atreemo Location ID (this will be used only if locationID field is empty).</td><td>False</td></tr><tr><td>Gross</td><td>Double</td><td>Gross</td><td>False</td></tr><tr><td>LocationID</td><td>Int32</td><td>Atreemo Location ID</td><td>False</td></tr><tr><td>LoyaltyCardNumber</td><td>String</td><td>Card Number</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>Member Number : Can also provided to find the CtciD</td><td>False</td></tr><tr><td>OpenDateTime</td><td>DateTime (nullable)</td><td>Open Date Time</td><td>False</td></tr><tr><td>OrderChannelID</td><td>EnumOrderChannels (nullable)</td><td>Order Channel \n            InStore = 1,\n            OnlineWeb = 5,\n            OnlineApp = 6</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>Order Date : if null then date time when the Api call is made.</td><td>False</td></tr><tr><td>OrderDelivery</td><td>OrderDelivery</td><td>Delivery Details : optional</td><td>False</td></tr><tr><td>OrderID</td><td>String</td><td>Transaction ID</td><td>True</td></tr><tr><td>OrderItems</td><td>List&lt;OrderItems&gt;</td><td>List of order Items</td><td>True</td></tr><tr><td>OrderStatusID</td><td>EnumOrderStatus (nullable)</td><td>Order Status\n             Paid = 1,\n             Cancelled = 2,\n             Invoiced = 3,\n             Incomplete = 4,\n             Refunded = 5,\n             PartiallyPaid = 6</td><td>False</td></tr><tr><td>OrderTypeID</td><td>EnumOrderTypes (nullable)</td><td>Order Type\n            InStore = 1,\n            Collection = 2,\n            Delivery = 3,\n            Shop = 7,\n            PayAtTable = 8,\n            PreOrder = 9,\n             Deposit = 10,\n            Kiosk=11\n            HotelBooking=12</td><td>False</td></tr><tr><td>PaidAmount</td><td>Double</td><td>Paid Amount (after discount)</td><td>False</td></tr><tr><td>PaymentItems</td><td>List&lt;OrderPaymentItems&gt;</td><td>List of payments</td><td>False</td></tr><tr><td>ReceiptCode</td><td>String</td><td>Receipt Code</td><td>False</td></tr><tr><td>SaleTypeID</td><td>EnumSaleTypes (nullable)</td><td>Sale Type \n            Sale = 1,\n            Refund = 2,\n            NoSale = 3,\n            CancelledSale = 4,\n            ZeroValueSale = 5,\n            OtherActions = 6,\n            Void = 7,\n            Online = 8,\n            DiscountedSale = 9</td><td>False</td></tr><tr><td>ServiceChargeAmount</td><td>Double</td><td>The amount of service charge</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>Source</td><td>False</td></tr><tr><td>TableNumber</td><td>String</td><td>Table number</td><td>False</td></tr><tr><td>Tax</td><td>Double</td><td>Tax</td><td>False</td></tr><tr><td>TillID</td><td>String</td><td>Till ID</td><td>False</td></tr><tr><td>TotalAdjustmentAmount</td><td>Double</td><td>Total Adjustement Amount (External)</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>Order amount before discount</td><td>False</td></tr><tr><td>TotalDiscountAmount</td><td>Double</td><td>Total Discount Amount</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher Code (Atreemo Code)</td><td>False</td></tr><tr><td colspan=4><h4>BookingReference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td><td>False</td></tr><tr><td>ReservationReference</td><td>String</td><td>Reservation Reference</td><td>False</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list\n            Mandatory with ReservationReference field</td><td>False</td></tr><tr><td colspan=4><h4>OrderDelivery Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CollectionCode</td><td>String</td><td>Collection Code</td><td>False</td></tr><tr><td>DeliveredTime</td><td>DateTime (nullable)</td><td>Delivered Time</td><td>False</td></tr><tr><td>DeliveryDueTime</td><td>DateTime (nullable)</td><td>Delivery DueTime</td><td>False</td></tr><tr><td>DeliveryId</td><td>String</td><td>Delivery Id</td><td>False</td></tr><tr><td>DeliveryInfo</td><td>String</td><td>Delivery Info</td><td>False</td></tr><tr><td>DeliveryMode</td><td>String</td><td>Delivery Mode</td><td>False</td></tr><tr><td>DeliveryOrigin</td><td>String</td><td>Delivery Origin</td><td>False</td></tr><tr><td>DeliveryState</td><td>String</td><td>Delivery State</td><td>False</td></tr><tr><td>DeliveryTime</td><td>DateTime (nullable)</td><td>Delivery Time</td><td>False</td></tr><tr><td>DeviceName</td><td>String</td><td>Device Name</td><td>False</td></tr><tr><td>Enabled</td><td>Boolean</td><td>Enabled</td><td>False</td></tr><tr><td>Prepaid</td><td>Boolean</td><td>Prepaid</td><td>False</td></tr><tr><td>ProductionDueTime</td><td>DateTime (nullable)</td><td>Production Due Time</td><td>False</td></tr><tr><td>Shpipping_Address</td><td>OrderShippingAddress</td><td>Address Details</td><td>False</td></tr><tr><td colspan=4><h4>OrderShippingAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>address1</td><td>String</td><td>Street Address</td><td>False</td></tr><tr><td>address2</td><td>String</td><td>Building Address</td><td>False</td></tr><tr><td>city</td><td>String</td><td>City</td><td>False</td></tr><tr><td>company</td><td>String</td><td>Company</td><td>False</td></tr><tr><td>country</td><td>String</td><td>Country</td><td>False</td></tr><tr><td>country_code</td><td>String</td><td>country code</td><td>False</td></tr><tr><td>first_name</td><td>String</td><td>first name</td><td>False</td></tr><tr><td>last_name</td><td>String</td><td>Last name</td><td>False</td></tr><tr><td>latitude</td><td>Decimal</td><td>latitude</td><td>False</td></tr><tr><td>longitude</td><td>Decimal</td><td>longitude</td><td>False</td></tr><tr><td>name</td><td>String</td><td>name</td><td>False</td></tr><tr><td>phone</td><td>String</td><td>phone</td><td>False</td></tr><tr><td>province</td><td>String</td><td>province</td><td>False</td></tr><tr><td>province_code</td><td>String</td><td>province code</td><td>False</td></tr><tr><td>zip</td><td>String</td><td>zip</td><td>False</td></tr><tr><td colspan=4><h4>OrderItems Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdjustmentAmount</td><td>Double</td><td>Adjustement Amount (External)</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Order Item DiscountAmount</td><td>False</td></tr><tr><td>Gross</td><td>Double</td><td>Order Item Gross</td><td>False</td></tr><tr><td>ItemDesc</td><td>String</td><td>Order Item Description (Product)</td><td>False</td></tr><tr><td>ItemGroupName</td><td>String</td><td>Order Item Product Group Name</td><td>False</td></tr><tr><td>ItemID</td><td>String</td><td>Order Item ID (unique identifier of the item in the order)</td><td>False</td></tr><tr><td>ItemName</td><td>String</td><td>Order Item Name (Product)</td><td>False</td></tr><tr><td>ItemPrice</td><td>Double</td><td>Order Item Price</td><td>False</td></tr><tr><td>ItemSubGroupName</td><td>String</td><td>Order Item Product Sub Group Name</td><td>False</td></tr><tr><td>PriceLevel</td><td>String</td><td>Order Price Level</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>Order Product Code</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Order Item Quantity</td><td>False</td></tr><tr><td>SalesGroupID</td><td>String</td><td>Order Sales Group ID</td><td>False</td></tr><tr><td>SalesGroupName</td><td>String</td><td>Order Sales Group Name</td><td>False</td></tr><tr><td>Tax</td><td>Double</td><td>Order Item Tax</td><td>False</td></tr><tr><td>TotalPrice</td><td>Double</td><td>Order Item Total Price</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>Order Voucher Code : ApplyRedeeemVoucher should be flagged (Atreemo Code)</td><td>False</td></tr><tr><td colspan=4><h4>OrderPaymentItems Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPaid</td><td>Double</td><td>Amount Paid</td><td>False</td></tr><tr><td>AuthCode</td><td>String</td><td>Auth code like to credit card used for payment</td><td>False</td></tr><tr><td>CardNumber</td><td>String</td><td>Card Number</td><td>False</td></tr><tr><td>PaymentDate</td><td>DateTime (nullable)</td><td>Payment Date</td><td>False</td></tr><tr><td>PaymentDesc</td><td>String</td><td>Payment Description</td><td>False</td></tr><tr><td>PaymentMethodID</td><td>EnumPaymentMethod (nullable)</td><td>Payment Method\n            Card = 1,\n            Cash = 2,\n            Point = 3,\n            Mobile = 4,\n            PurchaseOrder = 5,\n            Credit = 6,\n            Voucher = 7,\n            Other = 8,\n            Internet = 9</td><td>False</td></tr><tr><td>PointsReservationCode</td><td>Int32</td><td>This will be used only if the payment method is point and (PaymentMethodID = 3) an you have already reserved these points at the begining.</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>Error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"2be85d67-12fa-40dc-8763-a110a6bf704f"},{"name":"PostOrder","id":"d89af027-3964-4d8a-ae3d-3d0ac98811ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OrderID\": \"sample string 1\",\r\n  \"OrderStatusID\": 1,\r\n  \"OrderTypeID\": 1,\r\n  \"OrderChannelID\": 1,\r\n  \"SubTransactions\": [\r\n    {\r\n      \"CustomerDetails\": {\r\n        \"CtcID\": 1,\r\n        \"MemberNumber\": \"sample string 2\",\r\n        \"CardToken\": \"sample string 3\",\r\n        \"ExternalIdentifier\": {\r\n          \"ExternalID\": \"sample string 1\",\r\n          \"ExternalSource\": \"sample string 2\"\r\n        }\r\n      },\r\n      \"VoucherCode\": \"sample string 1\",\r\n      \"TotalAmount\": 2.1,\r\n      \"ServiceChargeAmount\": 3.1,\r\n      \"PaidAmount\": 4.1,\r\n      \"TotalDiscountAmount\": 5.1,\r\n      \"TotalAdjustmentAmount\": 6.1,\r\n      \"OrderItems\": [\r\n        {\r\n          \"ItemID\": \"sample string 1\",\r\n          \"ItemName\": \"sample string 2\",\r\n          \"ItemGroupName\": \"sample string 3\",\r\n          \"ItemSubGroupName\": \"sample string 4\",\r\n          \"ItemDesc\": \"sample string 5\",\r\n          \"ItemPrice\": 6.1,\r\n          \"Quantity\": 7.1,\r\n          \"TotalPrice\": 8.1,\r\n          \"Tax\": 9.1,\r\n          \"Gross\": 10.1,\r\n          \"DiscountAmount\": 11.1,\r\n          \"ProductCode\": \"sample string 13\",\r\n          \"VoucherCode\": \"sample string 14\",\r\n          \"SalesGroupID\": \"sample string 15\",\r\n          \"SalesGroupName\": \"sample string 16\",\r\n          \"AdjustmentAmount\": 17.1,\r\n          \"PriceLevel\": \"sample string 18\"\r\n        },\r\n        {\r\n          \"ItemID\": \"sample string 1\",\r\n          \"ItemName\": \"sample string 2\",\r\n          \"ItemGroupName\": \"sample string 3\",\r\n          \"ItemSubGroupName\": \"sample string 4\",\r\n          \"ItemDesc\": \"sample string 5\",\r\n          \"ItemPrice\": 6.1,\r\n          \"Quantity\": 7.1,\r\n          \"TotalPrice\": 8.1,\r\n          \"Tax\": 9.1,\r\n          \"Gross\": 10.1,\r\n          \"DiscountAmount\": 11.1,\r\n          \"ProductCode\": \"sample string 13\",\r\n          \"VoucherCode\": \"sample string 14\",\r\n          \"SalesGroupID\": \"sample string 15\",\r\n          \"SalesGroupName\": \"sample string 16\",\r\n          \"AdjustmentAmount\": 17.1,\r\n          \"PriceLevel\": \"sample string 18\"\r\n        }\r\n      ],\r\n      \"PaymentItems\": [\r\n        {\r\n          \"PaymentDate\": \"2026-03-25T07:30:10.4691905+00:00\",\r\n          \"PaymentMethodID\": 1,\r\n          \"AmountPaid\": 1.1,\r\n          \"CardNumber\": \"sample string 2\",\r\n          \"PaymentDesc\": \"sample string 3\",\r\n          \"PointsReservationCode\": 4,\r\n          \"AuthCode\": \"sample string 5\"\r\n        },\r\n        {\r\n          \"PaymentDate\": \"2026-03-25T07:30:10.4691905+00:00\",\r\n          \"PaymentMethodID\": 1,\r\n          \"AmountPaid\": 1.1,\r\n          \"CardNumber\": \"sample string 2\",\r\n          \"PaymentDesc\": \"sample string 3\",\r\n          \"PointsReservationCode\": 4,\r\n          \"AuthCode\": \"sample string 5\"\r\n        }\r\n      ],\r\n      \"OrderStatusID\": 1,\r\n      \"OrderTypeID\": 1,\r\n      \"OrderChannelID\": 1\r\n    },\r\n    {\r\n      \"CustomerDetails\": {\r\n        \"CtcID\": 1,\r\n        \"MemberNumber\": \"sample string 2\",\r\n        \"CardToken\": \"sample string 3\",\r\n        \"ExternalIdentifier\": {\r\n          \"ExternalID\": \"sample string 1\",\r\n          \"ExternalSource\": \"sample string 2\"\r\n        }\r\n      },\r\n      \"VoucherCode\": \"sample string 1\",\r\n      \"TotalAmount\": 2.1,\r\n      \"ServiceChargeAmount\": 3.1,\r\n      \"PaidAmount\": 4.1,\r\n      \"TotalDiscountAmount\": 5.1,\r\n      \"TotalAdjustmentAmount\": 6.1,\r\n      \"OrderItems\": [\r\n        {\r\n          \"ItemID\": \"sample string 1\",\r\n          \"ItemName\": \"sample string 2\",\r\n          \"ItemGroupName\": \"sample string 3\",\r\n          \"ItemSubGroupName\": \"sample string 4\",\r\n          \"ItemDesc\": \"sample string 5\",\r\n          \"ItemPrice\": 6.1,\r\n          \"Quantity\": 7.1,\r\n          \"TotalPrice\": 8.1,\r\n          \"Tax\": 9.1,\r\n          \"Gross\": 10.1,\r\n          \"DiscountAmount\": 11.1,\r\n          \"ProductCode\": \"sample string 13\",\r\n          \"VoucherCode\": \"sample string 14\",\r\n          \"SalesGroupID\": \"sample string 15\",\r\n          \"SalesGroupName\": \"sample string 16\",\r\n          \"AdjustmentAmount\": 17.1,\r\n          \"PriceLevel\": \"sample string 18\"\r\n        },\r\n        {\r\n          \"ItemID\": \"sample string 1\",\r\n          \"ItemName\": \"sample string 2\",\r\n          \"ItemGroupName\": \"sample string 3\",\r\n          \"ItemSubGroupName\": \"sample string 4\",\r\n          \"ItemDesc\": \"sample string 5\",\r\n          \"ItemPrice\": 6.1,\r\n          \"Quantity\": 7.1,\r\n          \"TotalPrice\": 8.1,\r\n          \"Tax\": 9.1,\r\n          \"Gross\": 10.1,\r\n          \"DiscountAmount\": 11.1,\r\n          \"ProductCode\": \"sample string 13\",\r\n          \"VoucherCode\": \"sample string 14\",\r\n          \"SalesGroupID\": \"sample string 15\",\r\n          \"SalesGroupName\": \"sample string 16\",\r\n          \"AdjustmentAmount\": 17.1,\r\n          \"PriceLevel\": \"sample string 18\"\r\n        }\r\n      ],\r\n      \"PaymentItems\": [\r\n        {\r\n          \"PaymentDate\": \"2026-03-25T07:30:10.4691905+00:00\",\r\n          \"PaymentMethodID\": 1,\r\n          \"AmountPaid\": 1.1,\r\n          \"CardNumber\": \"sample string 2\",\r\n          \"PaymentDesc\": \"sample string 3\",\r\n          \"PointsReservationCode\": 4,\r\n          \"AuthCode\": \"sample string 5\"\r\n        },\r\n        {\r\n          \"PaymentDate\": \"2026-03-25T07:30:10.4691905+00:00\",\r\n          \"PaymentMethodID\": 1,\r\n          \"AmountPaid\": 1.1,\r\n          \"CardNumber\": \"sample string 2\",\r\n          \"PaymentDesc\": \"sample string 3\",\r\n          \"PointsReservationCode\": 4,\r\n          \"AuthCode\": \"sample string 5\"\r\n        }\r\n      ],\r\n      \"OrderStatusID\": 1,\r\n      \"OrderTypeID\": 1,\r\n      \"OrderChannelID\": 1\r\n    }\r\n  ],\r\n  \"OrderDate\": \"2026-03-25T07:30:10.4691905+00:00\",\r\n  \"CollectionDate\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n  \"Location\": {\r\n    \"ActeolSiteID\": 1,\r\n    \"ExternalLocationID\": \"sample string 2\"\r\n  },\r\n  \"TableNumber\": \"sample string 2\",\r\n  \"OpenDateTime\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n  \"CloseDateTime\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n  \"CustomerCount\": 3,\r\n  \"TillID\": \"sample string 4\",\r\n  \"ClerkID\": \"sample string 5\",\r\n  \"Tax\": 6.1,\r\n  \"Source\": \"sample string 7\",\r\n  \"Currency\": \"sample string 8\",\r\n  \"ApplyRedeeemVoucher\": true,\r\n  \"ReceiptCode\": \"sample string 10\",\r\n  \"CustomField1\": \"sample string 11\",\r\n  \"CustomField2\": \"sample string 12\",\r\n  \"CustomField3\": \"sample string 13\",\r\n  \"CustomField4\": \"sample string 14\",\r\n  \"CustomField5\": \"sample string 15\",\r\n  \"CustomField6\": \"sample string 16\",\r\n  \"CustomField7\": \"sample string 17\",\r\n  \"EarnPoints\": true,\r\n  \"OrderDelivery\": {\r\n    \"DeliveryId\": \"sample string 1\",\r\n    \"Enabled\": true,\r\n    \"DeliveryMode\": \"sample string 3\",\r\n    \"DeliveryState\": \"sample string 4\",\r\n    \"CollectionCode\": \"sample string 5\",\r\n    \"DeliveryInfo\": \"sample string 6\",\r\n    \"DeliveryDueTime\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n    \"DeliveryTime\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n    \"DeliveredTime\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n    \"ProductionDueTime\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n    \"Prepaid\": true,\r\n    \"DeliveryOrigin\": \"sample string 8\",\r\n    \"DeviceName\": \"sample string 9\",\r\n    \"Shpipping_Address\": {\r\n      \"address1\": \"sample string 1\",\r\n      \"address2\": \"sample string 2\",\r\n      \"city\": \"sample string 3\",\r\n      \"company\": \"sample string 4\",\r\n      \"country\": \"sample string 5\",\r\n      \"first_name\": \"sample string 6\",\r\n      \"last_name\": \"sample string 7\",\r\n      \"latitude\": 8.0,\r\n      \"longitude\": 9.0,\r\n      \"phone\": \"sample string 10\",\r\n      \"province\": \"sample string 11\",\r\n      \"zip\": \"sample string 12\",\r\n      \"name\": \"sample string 13\",\r\n      \"country_code\": \"sample string 14\",\r\n      \"province_code\": \"sample string 15\"\r\n    }\r\n  },\r\n  \"BookingReference\": {\r\n    \"ReservationReference\": \"sample string 1\",\r\n    \"SupplierCode\": 1,\r\n    \"BookingSector\": 1\r\n  }\r\n}"},"url":"https://{{Host}}/api/Transaction/PostOrder","description":" <p>\n            Send transaction details to Atreemo <br />\n</p><h4>Body Payload</h4><table><tr><td><h4>OrderTransaction Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplyRedeeemVoucher</td><td>Boolean</td><td>Flag Apply Redeeem Voucher : true when need to redeem voucher by transaction or by transaction items.</td><td>False</td></tr><tr><td>BookingReference</td><td>BookingReference</td><td>Booking Reference : optional</td><td>False</td></tr><tr><td>ClerkID</td><td>String</td><td>Clerk ID</td><td>False</td></tr><tr><td>CloseDateTime</td><td>DateTime (nullable)</td><td>Close Date Time</td><td>False</td></tr><tr><td>CollectionDate</td><td>DateTime (nullable)</td><td>Collection Date</td><td>False</td></tr><tr><td>Currency</td><td>String</td><td>ISO 3-Letter Currency Code like USD,GBP</td><td>False</td></tr><tr><td>CustomerCount</td><td>Int32</td><td>number of covers in the table</td><td>False</td></tr><tr><td>CustomField1</td><td>String</td><td>Extra Field 1</td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td>Extra Field 2</td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td>Extra Field 3</td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td>Extra Field 4</td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td>Extra Field 5</td><td>False</td></tr><tr><td>CustomField6</td><td>String</td><td>Extra Field 6</td><td>False</td></tr><tr><td>CustomField7</td><td>String</td><td>Extra Field 7</td><td>False</td></tr><tr><td>EarnPoints</td><td>Boolean</td><td>Trigger a bespoke loyalty program</td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td>The site visited (Acteol id)</td><td>True</td></tr><tr><td>OpenDateTime</td><td>DateTime (nullable)</td><td>Open Date Time</td><td>False</td></tr><tr><td>OrderChannelID</td><td>EnumOrderChannels (nullable)</td><td>Order Channel \n            InStore = 1,\n            OnlineWeb = 5,\n            OnlineApp = 6</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>Order Date : if null then date time when the Api call is made.</td><td>False</td></tr><tr><td>OrderDelivery</td><td>OrderDelivery</td><td>Delivery details : optional</td><td>False</td></tr><tr><td>OrderID</td><td>String</td><td>Transaction ID</td><td>True</td></tr><tr><td>OrderStatusID</td><td>EnumOrderStatus (nullable)</td><td>Order Status\n             Paid = 1,\n             Cancelled = 2,\n             Invoiced = 3,\n             Incomplete = 4,\n             Refunded = 5,\n             PartiallyPaid = 6</td><td>False</td></tr><tr><td>OrderTypeID</td><td>EnumOrderTypes (nullable)</td><td>Order Type\n            InStore = 1,\n            Collection = 2,\n            Delivery = 3,\n            Shop = 7,\n            PayAtTable = 8,\n            PreOrder = 9,\n            Deposit = 10,\n            Kiosk=11\n            HotelBooking=12</td><td>False</td></tr><tr><td>ReceiptCode</td><td>String</td><td>The code printed in the bill</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>Source</td><td>False</td></tr><tr><td>SubTransactions</td><td>List&lt;SubTransaction&gt;</td><td>Order items per customer</td><td>True</td></tr><tr><td>TableNumber</td><td>String</td><td>Table number</td><td>False</td></tr><tr><td>Tax</td><td>Double</td><td>Tax</td><td>False</td></tr><tr><td>TillID</td><td>String</td><td>Till ID</td><td>False</td></tr><tr><td><h4>BookingReference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td><td>False</td></tr><tr><td>ReservationReference</td><td>String</td><td>Reservation Reference</td><td>False</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list\n            Mandatory with ReservationReference field</td><td>False</td></tr><tr><td><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td><h4>OrderDelivery Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CollectionCode</td><td>String</td><td>Collection Code</td><td>False</td></tr><tr><td>DeliveredTime</td><td>DateTime (nullable)</td><td>Delivered Time</td><td>False</td></tr><tr><td>DeliveryDueTime</td><td>DateTime (nullable)</td><td>Delivery DueTime</td><td>False</td></tr><tr><td>DeliveryId</td><td>String</td><td>Delivery Id</td><td>False</td></tr><tr><td>DeliveryInfo</td><td>String</td><td>Delivery Info</td><td>False</td></tr><tr><td>DeliveryMode</td><td>String</td><td>Delivery Mode</td><td>False</td></tr><tr><td>DeliveryOrigin</td><td>String</td><td>Delivery Origin</td><td>False</td></tr><tr><td>DeliveryState</td><td>String</td><td>Delivery State</td><td>False</td></tr><tr><td>DeliveryTime</td><td>DateTime (nullable)</td><td>Delivery Time</td><td>False</td></tr><tr><td>DeviceName</td><td>String</td><td>Device Name</td><td>False</td></tr><tr><td>Enabled</td><td>Boolean</td><td>Enabled</td><td>False</td></tr><tr><td>Prepaid</td><td>Boolean</td><td>Prepaid</td><td>False</td></tr><tr><td>ProductionDueTime</td><td>DateTime (nullable)</td><td>Production Due Time</td><td>False</td></tr><tr><td>Shpipping_Address</td><td>OrderShippingAddress</td><td>Address Details</td><td>False</td></tr><tr><td><h4>OrderShippingAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>address1</td><td>String</td><td>Street Address</td><td>False</td></tr><tr><td>address2</td><td>String</td><td>Building Address</td><td>False</td></tr><tr><td>city</td><td>String</td><td>City</td><td>False</td></tr><tr><td>company</td><td>String</td><td>Company</td><td>False</td></tr><tr><td>country</td><td>String</td><td>Country</td><td>False</td></tr><tr><td>country_code</td><td>String</td><td>country code</td><td>False</td></tr><tr><td>first_name</td><td>String</td><td>first name</td><td>False</td></tr><tr><td>last_name</td><td>String</td><td>Last name</td><td>False</td></tr><tr><td>latitude</td><td>Decimal</td><td>latitude</td><td>False</td></tr><tr><td>longitude</td><td>Decimal</td><td>longitude</td><td>False</td></tr><tr><td>name</td><td>String</td><td>name</td><td>False</td></tr><tr><td>phone</td><td>String</td><td>phone</td><td>False</td></tr><tr><td>province</td><td>String</td><td>province</td><td>False</td></tr><tr><td>province_code</td><td>String</td><td>province code</td><td>False</td></tr><tr><td>zip</td><td>String</td><td>zip</td><td>False</td></tr><tr><td><h4>SubTransaction Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerDetails</td><td>CustomerIDDetails</td><td>Ids to find the customer of the transaction.</td><td>False</td></tr><tr><td>OrderChannelID</td><td>EnumOrderChannels (nullable)</td><td></td><td>False</td></tr><tr><td>OrderItems</td><td>List&lt;OrderItems&gt;</td><td>List of order Items</td><td>True</td></tr><tr><td>OrderStatusID</td><td>EnumOrderStatus (nullable)</td><td></td><td>False</td></tr><tr><td>OrderTypeID</td><td>EnumOrderTypes (nullable)</td><td></td><td>False</td></tr><tr><td>PaidAmount</td><td>Double</td><td>Paid Amount (after discount)</td><td>False</td></tr><tr><td>PaymentItems</td><td>List&lt;OrderPaymentItems&gt;</td><td>List of payments</td><td>False</td></tr><tr><td>ServiceChargeAmount</td><td>Double</td><td>The amount of service charge</td><td>False</td></tr><tr><td>TotalAdjustmentAmount</td><td>Double</td><td>Total Adjustement Amount (External)</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>Order amount before discount</td><td>False</td></tr><tr><td>TotalDiscountAmount</td><td>Double</td><td>Total Discount Amount (Atreemo voucher)</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>Order Voucher Code (Atreemo Code)</td><td>False</td></tr><tr><td><h4>CustomerIDDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CardToken</td><td>String</td><td>The Card token used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>the customer member number (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td><h4>OrderItems Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdjustmentAmount</td><td>Double</td><td>Adjustement Amount (External)</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Order Item DiscountAmount</td><td>False</td></tr><tr><td>Gross</td><td>Double</td><td>Order Item Gross</td><td>False</td></tr><tr><td>ItemDesc</td><td>String</td><td>Order Item Description (Product)</td><td>False</td></tr><tr><td>ItemGroupName</td><td>String</td><td>Order Item Product Group Name</td><td>False</td></tr><tr><td>ItemID</td><td>String</td><td>Order Item ID (unique identifier of the item in the order)</td><td>False</td></tr><tr><td>ItemName</td><td>String</td><td>Order Item Name (Product)</td><td>False</td></tr><tr><td>ItemPrice</td><td>Double</td><td>Order Item Price</td><td>False</td></tr><tr><td>ItemSubGroupName</td><td>String</td><td>Order Item Product Sub Group Name</td><td>False</td></tr><tr><td>PriceLevel</td><td>String</td><td>Order Price Level</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>Order Product Code</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Order Item Quantity</td><td>False</td></tr><tr><td>SalesGroupID</td><td>String</td><td>Order Sales Group ID</td><td>False</td></tr><tr><td>SalesGroupName</td><td>String</td><td>Order Sales Group Name</td><td>False</td></tr><tr><td>Tax</td><td>Double</td><td>Order Item Tax</td><td>False</td></tr><tr><td>TotalPrice</td><td>Double</td><td>Order Item Total Price</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>Order Voucher Code : ApplyRedeeemVoucher should be flagged (Atreemo Code)</td><td>False</td></tr><tr><td><h4>OrderPaymentItems Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPaid</td><td>Double</td><td>Amount Paid</td><td>False</td></tr><tr><td>AuthCode</td><td>String</td><td>Auth code like to credit card used for payment</td><td>False</td></tr><tr><td>CardNumber</td><td>String</td><td>Card Number</td><td>False</td></tr><tr><td>PaymentDate</td><td>DateTime (nullable)</td><td>Payment Date</td><td>False</td></tr><tr><td>PaymentDesc</td><td>String</td><td>Payment Description</td><td>False</td></tr><tr><td>PaymentMethodID</td><td>EnumPaymentMethod (nullable)</td><td>Payment Method\n            Card = 1,\n            Cash = 2,\n            Point = 3,\n            Mobile = 4,\n            PurchaseOrder = 5,\n            Credit = 6,\n            Voucher = 7,\n            Other = 8,\n            Internet = 9</td><td>False</td></tr><tr><td>PointsReservationCode</td><td>Int32</td><td>This will be used only if the payment method is point and (PaymentMethodID = 3) an you have already reserved these points at the begining.</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","Transaction","PostOrder"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"2fee9f3f-f65d-4771-8d5d-7a3ce5668f41","name":"api/Transaction/PostOrder Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OrderID\": \"sample string 1\",\r\n  \"OrderStatusID\": 1,\r\n  \"OrderTypeID\": 1,\r\n  \"OrderChannelID\": 1,\r\n  \"SubTransactions\": [\r\n    {\r\n      \"CustomerDetails\": {\r\n        \"CtcID\": 1,\r\n        \"MemberNumber\": \"sample string 2\",\r\n        \"CardToken\": \"sample string 3\",\r\n        \"ExternalIdentifier\": {\r\n          \"ExternalID\": \"sample string 1\",\r\n          \"ExternalSource\": \"sample string 2\"\r\n        }\r\n      },\r\n      \"VoucherCode\": \"sample string 1\",\r\n      \"TotalAmount\": 2.1,\r\n      \"ServiceChargeAmount\": 3.1,\r\n      \"PaidAmount\": 4.1,\r\n      \"TotalDiscountAmount\": 5.1,\r\n      \"TotalAdjustmentAmount\": 6.1,\r\n      \"OrderItems\": [\r\n        {\r\n          \"ItemID\": \"sample string 1\",\r\n          \"ItemName\": \"sample string 2\",\r\n          \"ItemGroupName\": \"sample string 3\",\r\n          \"ItemSubGroupName\": \"sample string 4\",\r\n          \"ItemDesc\": \"sample string 5\",\r\n          \"ItemPrice\": 6.1,\r\n          \"Quantity\": 7.1,\r\n          \"TotalPrice\": 8.1,\r\n          \"Tax\": 9.1,\r\n          \"Gross\": 10.1,\r\n          \"DiscountAmount\": 11.1,\r\n          \"ProductCode\": \"sample string 13\",\r\n          \"VoucherCode\": \"sample string 14\",\r\n          \"SalesGroupID\": \"sample string 15\",\r\n          \"SalesGroupName\": \"sample string 16\",\r\n          \"AdjustmentAmount\": 17.1,\r\n          \"PriceLevel\": \"sample string 18\"\r\n        },\r\n        {\r\n          \"ItemID\": \"sample string 1\",\r\n          \"ItemName\": \"sample string 2\",\r\n          \"ItemGroupName\": \"sample string 3\",\r\n          \"ItemSubGroupName\": \"sample string 4\",\r\n          \"ItemDesc\": \"sample string 5\",\r\n          \"ItemPrice\": 6.1,\r\n          \"Quantity\": 7.1,\r\n          \"TotalPrice\": 8.1,\r\n          \"Tax\": 9.1,\r\n          \"Gross\": 10.1,\r\n          \"DiscountAmount\": 11.1,\r\n          \"ProductCode\": \"sample string 13\",\r\n          \"VoucherCode\": \"sample string 14\",\r\n          \"SalesGroupID\": \"sample string 15\",\r\n          \"SalesGroupName\": \"sample string 16\",\r\n          \"AdjustmentAmount\": 17.1,\r\n          \"PriceLevel\": \"sample string 18\"\r\n        }\r\n      ],\r\n      \"PaymentItems\": [\r\n        {\r\n          \"PaymentDate\": \"2026-03-25T07:30:10.4691905+00:00\",\r\n          \"PaymentMethodID\": 1,\r\n          \"AmountPaid\": 1.1,\r\n          \"CardNumber\": \"sample string 2\",\r\n          \"PaymentDesc\": \"sample string 3\",\r\n          \"PointsReservationCode\": 4,\r\n          \"AuthCode\": \"sample string 5\"\r\n        },\r\n        {\r\n          \"PaymentDate\": \"2026-03-25T07:30:10.4691905+00:00\",\r\n          \"PaymentMethodID\": 1,\r\n          \"AmountPaid\": 1.1,\r\n          \"CardNumber\": \"sample string 2\",\r\n          \"PaymentDesc\": \"sample string 3\",\r\n          \"PointsReservationCode\": 4,\r\n          \"AuthCode\": \"sample string 5\"\r\n        }\r\n      ],\r\n      \"OrderStatusID\": 1,\r\n      \"OrderTypeID\": 1,\r\n      \"OrderChannelID\": 1\r\n    },\r\n    {\r\n      \"CustomerDetails\": {\r\n        \"CtcID\": 1,\r\n        \"MemberNumber\": \"sample string 2\",\r\n        \"CardToken\": \"sample string 3\",\r\n        \"ExternalIdentifier\": {\r\n          \"ExternalID\": \"sample string 1\",\r\n          \"ExternalSource\": \"sample string 2\"\r\n        }\r\n      },\r\n      \"VoucherCode\": \"sample string 1\",\r\n      \"TotalAmount\": 2.1,\r\n      \"ServiceChargeAmount\": 3.1,\r\n      \"PaidAmount\": 4.1,\r\n      \"TotalDiscountAmount\": 5.1,\r\n      \"TotalAdjustmentAmount\": 6.1,\r\n      \"OrderItems\": [\r\n        {\r\n          \"ItemID\": \"sample string 1\",\r\n          \"ItemName\": \"sample string 2\",\r\n          \"ItemGroupName\": \"sample string 3\",\r\n          \"ItemSubGroupName\": \"sample string 4\",\r\n          \"ItemDesc\": \"sample string 5\",\r\n          \"ItemPrice\": 6.1,\r\n          \"Quantity\": 7.1,\r\n          \"TotalPrice\": 8.1,\r\n          \"Tax\": 9.1,\r\n          \"Gross\": 10.1,\r\n          \"DiscountAmount\": 11.1,\r\n          \"ProductCode\": \"sample string 13\",\r\n          \"VoucherCode\": \"sample string 14\",\r\n          \"SalesGroupID\": \"sample string 15\",\r\n          \"SalesGroupName\": \"sample string 16\",\r\n          \"AdjustmentAmount\": 17.1,\r\n          \"PriceLevel\": \"sample string 18\"\r\n        },\r\n        {\r\n          \"ItemID\": \"sample string 1\",\r\n          \"ItemName\": \"sample string 2\",\r\n          \"ItemGroupName\": \"sample string 3\",\r\n          \"ItemSubGroupName\": \"sample string 4\",\r\n          \"ItemDesc\": \"sample string 5\",\r\n          \"ItemPrice\": 6.1,\r\n          \"Quantity\": 7.1,\r\n          \"TotalPrice\": 8.1,\r\n          \"Tax\": 9.1,\r\n          \"Gross\": 10.1,\r\n          \"DiscountAmount\": 11.1,\r\n          \"ProductCode\": \"sample string 13\",\r\n          \"VoucherCode\": \"sample string 14\",\r\n          \"SalesGroupID\": \"sample string 15\",\r\n          \"SalesGroupName\": \"sample string 16\",\r\n          \"AdjustmentAmount\": 17.1,\r\n          \"PriceLevel\": \"sample string 18\"\r\n        }\r\n      ],\r\n      \"PaymentItems\": [\r\n        {\r\n          \"PaymentDate\": \"2026-03-25T07:30:10.4691905+00:00\",\r\n          \"PaymentMethodID\": 1,\r\n          \"AmountPaid\": 1.1,\r\n          \"CardNumber\": \"sample string 2\",\r\n          \"PaymentDesc\": \"sample string 3\",\r\n          \"PointsReservationCode\": 4,\r\n          \"AuthCode\": \"sample string 5\"\r\n        },\r\n        {\r\n          \"PaymentDate\": \"2026-03-25T07:30:10.4691905+00:00\",\r\n          \"PaymentMethodID\": 1,\r\n          \"AmountPaid\": 1.1,\r\n          \"CardNumber\": \"sample string 2\",\r\n          \"PaymentDesc\": \"sample string 3\",\r\n          \"PointsReservationCode\": 4,\r\n          \"AuthCode\": \"sample string 5\"\r\n        }\r\n      ],\r\n      \"OrderStatusID\": 1,\r\n      \"OrderTypeID\": 1,\r\n      \"OrderChannelID\": 1\r\n    }\r\n  ],\r\n  \"OrderDate\": \"2026-03-25T07:30:10.4691905+00:00\",\r\n  \"CollectionDate\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n  \"Location\": {\r\n    \"ActeolSiteID\": 1,\r\n    \"ExternalLocationID\": \"sample string 2\"\r\n  },\r\n  \"TableNumber\": \"sample string 2\",\r\n  \"OpenDateTime\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n  \"CloseDateTime\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n  \"CustomerCount\": 3,\r\n  \"TillID\": \"sample string 4\",\r\n  \"ClerkID\": \"sample string 5\",\r\n  \"Tax\": 6.1,\r\n  \"Source\": \"sample string 7\",\r\n  \"Currency\": \"sample string 8\",\r\n  \"ApplyRedeeemVoucher\": true,\r\n  \"ReceiptCode\": \"sample string 10\",\r\n  \"CustomField1\": \"sample string 11\",\r\n  \"CustomField2\": \"sample string 12\",\r\n  \"CustomField3\": \"sample string 13\",\r\n  \"CustomField4\": \"sample string 14\",\r\n  \"CustomField5\": \"sample string 15\",\r\n  \"CustomField6\": \"sample string 16\",\r\n  \"CustomField7\": \"sample string 17\",\r\n  \"EarnPoints\": true,\r\n  \"OrderDelivery\": {\r\n    \"DeliveryId\": \"sample string 1\",\r\n    \"Enabled\": true,\r\n    \"DeliveryMode\": \"sample string 3\",\r\n    \"DeliveryState\": \"sample string 4\",\r\n    \"CollectionCode\": \"sample string 5\",\r\n    \"DeliveryInfo\": \"sample string 6\",\r\n    \"DeliveryDueTime\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n    \"DeliveryTime\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n    \"DeliveredTime\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n    \"ProductionDueTime\": \"2026-03-25T07:30:10.4848316+00:00\",\r\n    \"Prepaid\": true,\r\n    \"DeliveryOrigin\": \"sample string 8\",\r\n    \"DeviceName\": \"sample string 9\",\r\n    \"Shpipping_Address\": {\r\n      \"address1\": \"sample string 1\",\r\n      \"address2\": \"sample string 2\",\r\n      \"city\": \"sample string 3\",\r\n      \"company\": \"sample string 4\",\r\n      \"country\": \"sample string 5\",\r\n      \"first_name\": \"sample string 6\",\r\n      \"last_name\": \"sample string 7\",\r\n      \"latitude\": 8.0,\r\n      \"longitude\": 9.0,\r\n      \"phone\": \"sample string 10\",\r\n      \"province\": \"sample string 11\",\r\n      \"zip\": \"sample string 12\",\r\n      \"name\": \"sample string 13\",\r\n      \"country_code\": \"sample string 14\",\r\n      \"province_code\": \"sample string 15\"\r\n    }\r\n  },\r\n  \"BookingReference\": {\r\n    \"ReservationReference\": \"sample string 1\",\r\n    \"SupplierCode\": 1,\r\n    \"BookingSector\": 1\r\n  }\r\n}"},"url":"https://{{Host}}/api/Transaction/PostOrder","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Send transaction details to Atreemo <br />\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>OrderTransaction Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ApplyRedeeemVoucher</td><td>Boolean</td><td>Flag Apply Redeeem Voucher : true when need to redeem voucher by transaction or by transaction items.</td><td>False</td></tr><tr><td>BookingReference</td><td>BookingReference</td><td>Booking Reference : optional</td><td>False</td></tr><tr><td>ClerkID</td><td>String</td><td>Clerk ID</td><td>False</td></tr><tr><td>CloseDateTime</td><td>DateTime (nullable)</td><td>Close Date Time</td><td>False</td></tr><tr><td>CollectionDate</td><td>DateTime (nullable)</td><td>Collection Date</td><td>False</td></tr><tr><td>Currency</td><td>String</td><td>ISO 3-Letter Currency Code like USD,GBP</td><td>False</td></tr><tr><td>CustomerCount</td><td>Int32</td><td>number of covers in the table</td><td>False</td></tr><tr><td>CustomField1</td><td>String</td><td>Extra Field 1</td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td>Extra Field 2</td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td>Extra Field 3</td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td>Extra Field 4</td><td>False</td></tr><tr><td>CustomField5</td><td>String</td><td>Extra Field 5</td><td>False</td></tr><tr><td>CustomField6</td><td>String</td><td>Extra Field 6</td><td>False</td></tr><tr><td>CustomField7</td><td>String</td><td>Extra Field 7</td><td>False</td></tr><tr><td>EarnPoints</td><td>Boolean</td><td>Trigger a bespoke loyalty program</td><td>False</td></tr><tr><td>Location</td><td>ApiLocation</td><td>The site visited (Acteol id)</td><td>True</td></tr><tr><td>OpenDateTime</td><td>DateTime (nullable)</td><td>Open Date Time</td><td>False</td></tr><tr><td>OrderChannelID</td><td>EnumOrderChannels (nullable)</td><td>Order Channel \n            InStore = 1,\n            OnlineWeb = 5,\n            OnlineApp = 6</td><td>False</td></tr><tr><td>OrderDate</td><td>DateTime (nullable)</td><td>Order Date : if null then date time when the Api call is made.</td><td>False</td></tr><tr><td>OrderDelivery</td><td>OrderDelivery</td><td>Delivery details : optional</td><td>False</td></tr><tr><td>OrderID</td><td>String</td><td>Transaction ID</td><td>True</td></tr><tr><td>OrderStatusID</td><td>EnumOrderStatus (nullable)</td><td>Order Status\n             Paid = 1,\n             Cancelled = 2,\n             Invoiced = 3,\n             Incomplete = 4,\n             Refunded = 5,\n             PartiallyPaid = 6</td><td>False</td></tr><tr><td>OrderTypeID</td><td>EnumOrderTypes (nullable)</td><td>Order Type\n            InStore = 1,\n            Collection = 2,\n            Delivery = 3,\n            Shop = 7,\n            PayAtTable = 8,\n            PreOrder = 9,\n            Deposit = 10,\n            Kiosk=11\n            HotelBooking=12</td><td>False</td></tr><tr><td>ReceiptCode</td><td>String</td><td>The code printed in the bill</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>Source</td><td>False</td></tr><tr><td>SubTransactions</td><td>List&lt;SubTransaction&gt;</td><td>Order items per customer</td><td>True</td></tr><tr><td>TableNumber</td><td>String</td><td>Table number</td><td>False</td></tr><tr><td>Tax</td><td>Double</td><td>Tax</td><td>False</td></tr><tr><td>TillID</td><td>String</td><td>Till ID</td><td>False</td></tr><tr><td colspan=4><h4>BookingReference Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>BookingSector</td><td>BookingSectorEnum (nullable)</td><td>Restaurant=1,\n            Hotel=2,\n            Other=3</td><td>False</td></tr><tr><td>ReservationReference</td><td>String</td><td>Reservation Reference</td><td>False</td></tr><tr><td>SupplierCode</td><td>Int32 (nullable)</td><td>Reservation Supplier Code : Call Api/Reservation/GetSuppliers to get full list\n            Mandatory with ReservationReference field</td><td>False</td></tr><tr><td colspan=4><h4>ApiLocation Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>False</td></tr><tr><td>ExternalLocationID</td><td>String</td><td>the ID of the site visited (supplier site id if the user in mapped with a supplier)\n            this field will be ignored if ActeolSiteID is populated</td><td>False</td></tr><tr><td colspan=4><h4>OrderDelivery Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CollectionCode</td><td>String</td><td>Collection Code</td><td>False</td></tr><tr><td>DeliveredTime</td><td>DateTime (nullable)</td><td>Delivered Time</td><td>False</td></tr><tr><td>DeliveryDueTime</td><td>DateTime (nullable)</td><td>Delivery DueTime</td><td>False</td></tr><tr><td>DeliveryId</td><td>String</td><td>Delivery Id</td><td>False</td></tr><tr><td>DeliveryInfo</td><td>String</td><td>Delivery Info</td><td>False</td></tr><tr><td>DeliveryMode</td><td>String</td><td>Delivery Mode</td><td>False</td></tr><tr><td>DeliveryOrigin</td><td>String</td><td>Delivery Origin</td><td>False</td></tr><tr><td>DeliveryState</td><td>String</td><td>Delivery State</td><td>False</td></tr><tr><td>DeliveryTime</td><td>DateTime (nullable)</td><td>Delivery Time</td><td>False</td></tr><tr><td>DeviceName</td><td>String</td><td>Device Name</td><td>False</td></tr><tr><td>Enabled</td><td>Boolean</td><td>Enabled</td><td>False</td></tr><tr><td>Prepaid</td><td>Boolean</td><td>Prepaid</td><td>False</td></tr><tr><td>ProductionDueTime</td><td>DateTime (nullable)</td><td>Production Due Time</td><td>False</td></tr><tr><td>Shpipping_Address</td><td>OrderShippingAddress</td><td>Address Details</td><td>False</td></tr><tr><td colspan=4><h4>OrderShippingAddress Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>address1</td><td>String</td><td>Street Address</td><td>False</td></tr><tr><td>address2</td><td>String</td><td>Building Address</td><td>False</td></tr><tr><td>city</td><td>String</td><td>City</td><td>False</td></tr><tr><td>company</td><td>String</td><td>Company</td><td>False</td></tr><tr><td>country</td><td>String</td><td>Country</td><td>False</td></tr><tr><td>country_code</td><td>String</td><td>country code</td><td>False</td></tr><tr><td>first_name</td><td>String</td><td>first name</td><td>False</td></tr><tr><td>last_name</td><td>String</td><td>Last name</td><td>False</td></tr><tr><td>latitude</td><td>Decimal</td><td>latitude</td><td>False</td></tr><tr><td>longitude</td><td>Decimal</td><td>longitude</td><td>False</td></tr><tr><td>name</td><td>String</td><td>name</td><td>False</td></tr><tr><td>phone</td><td>String</td><td>phone</td><td>False</td></tr><tr><td>province</td><td>String</td><td>province</td><td>False</td></tr><tr><td>province_code</td><td>String</td><td>province code</td><td>False</td></tr><tr><td>zip</td><td>String</td><td>zip</td><td>False</td></tr><tr><td colspan=4><h4>SubTransaction Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerDetails</td><td>CustomerIDDetails</td><td>Ids to find the customer of the transaction.</td><td>False</td></tr><tr><td>OrderChannelID</td><td>EnumOrderChannels (nullable)</td><td></td><td>False</td></tr><tr><td>OrderItems</td><td>List&lt;OrderItems&gt;</td><td>List of order Items</td><td>True</td></tr><tr><td>OrderStatusID</td><td>EnumOrderStatus (nullable)</td><td></td><td>False</td></tr><tr><td>OrderTypeID</td><td>EnumOrderTypes (nullable)</td><td></td><td>False</td></tr><tr><td>PaidAmount</td><td>Double</td><td>Paid Amount (after discount)</td><td>False</td></tr><tr><td>PaymentItems</td><td>List&lt;OrderPaymentItems&gt;</td><td>List of payments</td><td>False</td></tr><tr><td>ServiceChargeAmount</td><td>Double</td><td>The amount of service charge</td><td>False</td></tr><tr><td>TotalAdjustmentAmount</td><td>Double</td><td>Total Adjustement Amount (External)</td><td>False</td></tr><tr><td>TotalAmount</td><td>Double</td><td>Order amount before discount</td><td>False</td></tr><tr><td>TotalDiscountAmount</td><td>Double</td><td>Total Discount Amount (Atreemo voucher)</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>Order Voucher Code (Atreemo Code)</td><td>False</td></tr><tr><td colspan=4><h4>CustomerIDDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CardToken</td><td>String</td><td>The Card token used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>the customer member number (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td colspan=4><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr><tr><td colspan=4><h4>OrderItems Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AdjustmentAmount</td><td>Double</td><td>Adjustement Amount (External)</td><td>False</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Order Item DiscountAmount</td><td>False</td></tr><tr><td>Gross</td><td>Double</td><td>Order Item Gross</td><td>False</td></tr><tr><td>ItemDesc</td><td>String</td><td>Order Item Description (Product)</td><td>False</td></tr><tr><td>ItemGroupName</td><td>String</td><td>Order Item Product Group Name</td><td>False</td></tr><tr><td>ItemID</td><td>String</td><td>Order Item ID (unique identifier of the item in the order)</td><td>False</td></tr><tr><td>ItemName</td><td>String</td><td>Order Item Name (Product)</td><td>False</td></tr><tr><td>ItemPrice</td><td>Double</td><td>Order Item Price</td><td>False</td></tr><tr><td>ItemSubGroupName</td><td>String</td><td>Order Item Product Sub Group Name</td><td>False</td></tr><tr><td>PriceLevel</td><td>String</td><td>Order Price Level</td><td>False</td></tr><tr><td>ProductCode</td><td>String</td><td>Order Product Code</td><td>False</td></tr><tr><td>Quantity</td><td>Double</td><td>Order Item Quantity</td><td>False</td></tr><tr><td>SalesGroupID</td><td>String</td><td>Order Sales Group ID</td><td>False</td></tr><tr><td>SalesGroupName</td><td>String</td><td>Order Sales Group Name</td><td>False</td></tr><tr><td>Tax</td><td>Double</td><td>Order Item Tax</td><td>False</td></tr><tr><td>TotalPrice</td><td>Double</td><td>Order Item Total Price</td><td>False</td></tr><tr><td>VoucherCode</td><td>String</td><td>Order Voucher Code : ApplyRedeeemVoucher should be flagged (Atreemo Code)</td><td>False</td></tr><tr><td colspan=4><h4>OrderPaymentItems Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AmountPaid</td><td>Double</td><td>Amount Paid</td><td>False</td></tr><tr><td>AuthCode</td><td>String</td><td>Auth code like to credit card used for payment</td><td>False</td></tr><tr><td>CardNumber</td><td>String</td><td>Card Number</td><td>False</td></tr><tr><td>PaymentDate</td><td>DateTime (nullable)</td><td>Payment Date</td><td>False</td></tr><tr><td>PaymentDesc</td><td>String</td><td>Payment Description</td><td>False</td></tr><tr><td>PaymentMethodID</td><td>EnumPaymentMethod (nullable)</td><td>Payment Method\n            Card = 1,\n            Cash = 2,\n            Point = 3,\n            Mobile = 4,\n            PurchaseOrder = 5,\n            Credit = 6,\n            Voucher = 7,\n            Other = 8,\n            Internet = 9</td><td>False</td></tr><tr><td>PointsReservationCode</td><td>Int32</td><td>This will be used only if the payment method is point and (PaymentMethodID = 3) an you have already reserved these points at the begining.</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"d89af027-3964-4d8a-ae3d-3d0ac98811ba"}],"id":"8af1df9f-f826-4589-a3fd-01112e72f0c9","description":"<p>Api Methods for Transaction</p>\n","_postman_id":"8af1df9f-f826-4589-a3fd-01112e72f0c9"},{"name":"User","item":[{"name":"GetAllowedBrands","id":"aec01eac-2010-453c-9c14-be650ac6734c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/User/GetAllowedBrands","description":" <p>\n            find all brands detail you have access to\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>AllowedBrandResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>List&lt;Brand&gt;</td><td>search result</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td><h4>Brand Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>Culture</td><td>String</td><td></td></tr><tr><td>Footer</td><td>String</td><td></td></tr><tr><td>Header</td><td>String</td><td></td></tr><tr><td>IsMasterBrand</td><td>Boolean</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","User","GetAllowedBrands"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"9c4906a3-1c37-4e03-9a3d-e08cfa4cd8af","name":"api/User/GetAllowedBrands Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/User/GetAllowedBrands","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            find all brands detail you have access to\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>AllowedBrandResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseData</td><td>List&lt;Brand&gt;</td><td>search result</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr><tr><td colspan=3><h4>Brand Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>BrandID</td><td>Int32</td><td></td></tr><tr><td>BrandName</td><td>String</td><td></td></tr><tr><td>Culture</td><td>String</td><td></td></tr><tr><td>Footer</td><td>String</td><td></td></tr><tr><td>Header</td><td>String</td><td></td></tr><tr><td>IsMasterBrand</td><td>Boolean</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseData\": [\r\n    {\r\n      \"BrandID\": 1,\r\n      \"BrandName\": \"sample string 2\",\r\n      \"Header\": \"sample string 3\",\r\n      \"Footer\": \"sample string 4\",\r\n      \"Culture\": \"sample string 5\",\r\n      \"IsMasterBrand\": true\r\n    },\r\n    {\r\n      \"BrandID\": 1,\r\n      \"BrandName\": \"sample string 2\",\r\n      \"Header\": \"sample string 3\",\r\n      \"Footer\": \"sample string 4\",\r\n      \"Culture\": \"sample string 5\",\r\n      \"IsMasterBrand\": true\r\n    }\r\n  ],\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"aec01eac-2010-453c-9c14-be650ac6734c"}],"id":"9067ce35-2d67-4a3a-a266-6d2cfee89532","description":"<p>Api Methods for User</p>\n","_postman_id":"9067ce35-2d67-4a3a-a266-6d2cfee89532"},{"name":"Visit","item":[{"name":"PostVisit","id":"3ace66a4-ce21-48b2-8d7b-c093f1b87bda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ActeolSiteID\": 1,\r\n  \"VisitDateTime\": \"2026-03-25T07:30:10.5317028+00:00\",\r\n  \"VisitEndDateTime\": \"2026-03-25T07:30:10.5317028+00:00\",\r\n  \"CustomerIDDetails\": {\r\n    \"CtcID\": 1,\r\n    \"MemberNumber\": \"sample string 2\",\r\n    \"CardToken\": \"sample string 3\",\r\n    \"ExternalIdentifier\": {\r\n      \"ExternalID\": \"sample string 1\",\r\n      \"ExternalSource\": \"sample string 2\"\r\n    }\r\n  },\r\n  \"Source\": \"sample string 4\",\r\n  \"SpendAmount\": 5.1,\r\n  \"EstimatedSpendAmount\": 6.1,\r\n  \"BookingDate\": \"2026-03-25T07:30:10.5317028+00:00\",\r\n  \"CustomField1\": \"sample string 8\",\r\n  \"CustomField2\": \"sample string 9\",\r\n  \"CustomField3\": \"sample string 10\",\r\n  \"CustomField4\": \"sample string 11\"\r\n}"},"url":"https://{{Host}}/api/Visit/PostVisit","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>VisitPayload Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>True</td></tr><tr><td>BookingDate</td><td>DateTime</td><td>the date and time of the booking</td><td>False</td></tr><tr><td>CustomerIDDetails</td><td>CustomerIDDetails</td><td>Ids to find the customer visited.</td><td>True</td></tr><tr><td>CustomField1</td><td>String</td><td>Custom field</td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td>Custom field</td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td>Custom field</td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td>Custom field</td><td>False</td></tr><tr><td>EstimatedSpendAmount</td><td>Double</td><td>The estimated monetary amount linked to the visit</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>The source of the visit</td><td>True</td></tr><tr><td>SpendAmount</td><td>Double</td><td>The monetary amount linked to the visit</td><td>False</td></tr><tr><td>VisitDateTime</td><td>DateTime</td><td>the start date and time of the visit</td><td>True</td></tr><tr><td>VisitEndDateTime</td><td>DateTime</td><td>the end date and time of the visit</td><td>False</td></tr><tr><td><h4>CustomerIDDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CardToken</td><td>String</td><td>The Card token used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>the customer member number (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","Visit","PostVisit"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"431a0815-0137-4598-b00d-baa715957efd","name":"api/Visit/PostVisit Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"ActeolSiteID\": 1,\r\n  \"VisitDateTime\": \"2026-03-25T07:30:10.5317028+00:00\",\r\n  \"VisitEndDateTime\": \"2026-03-25T07:30:10.5317028+00:00\",\r\n  \"CustomerIDDetails\": {\r\n    \"CtcID\": 1,\r\n    \"MemberNumber\": \"sample string 2\",\r\n    \"CardToken\": \"sample string 3\",\r\n    \"ExternalIdentifier\": {\r\n      \"ExternalID\": \"sample string 1\",\r\n      \"ExternalSource\": \"sample string 2\"\r\n    }\r\n  },\r\n  \"Source\": \"sample string 4\",\r\n  \"SpendAmount\": 5.1,\r\n  \"EstimatedSpendAmount\": 6.1,\r\n  \"BookingDate\": \"2026-03-25T07:30:10.5317028+00:00\",\r\n  \"CustomField1\": \"sample string 8\",\r\n  \"CustomField2\": \"sample string 9\",\r\n  \"CustomField3\": \"sample string 10\",\r\n  \"CustomField4\": \"sample string 11\"\r\n}"},"url":"https://{{Host}}/api/Visit/PostVisit","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>VisitPayload Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ActeolSiteID</td><td>Int32</td><td>the ID of the site visited (Acteol id)</td><td>True</td></tr><tr><td>BookingDate</td><td>DateTime</td><td>the date and time of the booking</td><td>False</td></tr><tr><td>CustomerIDDetails</td><td>CustomerIDDetails</td><td>Ids to find the customer visited.</td><td>True</td></tr><tr><td>CustomField1</td><td>String</td><td>Custom field</td><td>False</td></tr><tr><td>CustomField2</td><td>String</td><td>Custom field</td><td>False</td></tr><tr><td>CustomField3</td><td>String</td><td>Custom field</td><td>False</td></tr><tr><td>CustomField4</td><td>String</td><td>Custom field</td><td>False</td></tr><tr><td>EstimatedSpendAmount</td><td>Double</td><td>The estimated monetary amount linked to the visit</td><td>False</td></tr><tr><td>Source</td><td>String</td><td>The source of the visit</td><td>True</td></tr><tr><td>SpendAmount</td><td>Double</td><td>The monetary amount linked to the visit</td><td>False</td></tr><tr><td>VisitDateTime</td><td>DateTime</td><td>the start date and time of the visit</td><td>True</td></tr><tr><td>VisitEndDateTime</td><td>DateTime</td><td>the end date and time of the visit</td><td>False</td></tr><tr><td colspan=4><h4>CustomerIDDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CardToken</td><td>String</td><td>The Card token used to identify customers returning with the same token sent to us in xxxxxxxxxxxxxx (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>Ctcid of the Customer</td><td>False</td></tr><tr><td>ExternalIdentifier</td><td>CustomerExtenalIdentifier</td><td>The combination of the <b>external id</b> and <b>External Source</b> (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td>MemberNumber</td><td>String</td><td>the customer member number (Info to find CtcID if it's empty)</td><td>False</td></tr><tr><td colspan=4><h4>CustomerExtenalIdentifier Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>ExternalID</td><td>String</td><td>External unique ID</td><td>False</td></tr><tr><td>ExternalSource</td><td>String</td><td>External Source</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"3ace66a4-ce21-48b2-8d7b-c093f1b87bda"}],"id":"d25669f4-b1be-48b4-8d5e-bbf263620186","description":"<p>Api Methods for Visit</p>\n","_postman_id":"d25669f4-b1be-48b4-8d5e-bbf263620186"},{"name":"Voucher","item":[{"name":"ConfirmRedeemVoucher","id":"11a4c2a5-e870-4450-840d-4ab21e320dd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"RedemptionID\": \"sample string 1\",\r\n  \"CustomerID\": 1\r\n}"},"url":"https://{{Host}}/api/Voucher/ConfirmRedeemVoucher","description":" <p>\n            Confirm the voucher redemption (RedemptionID should be retrieved from the method ValidateVoucher)\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>BenefitRedemptionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32 (nullable)</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>RedemptionID</td><td>String</td><td>The ID of the redemption to confirm</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>BenefitRedemptionOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","ConfirmRedeemVoucher"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"dd4c8bb1-bc7c-4f3b-a393-3e1558cc238e","name":"api/Voucher/ConfirmRedeemVoucher Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"RedemptionID\": \"sample string 1\",\r\n  \"CustomerID\": 1\r\n}"},"url":"https://{{Host}}/api/Voucher/ConfirmRedeemVoucher","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Confirm the voucher redemption (RedemptionID should be retrieved from the method ValidateVoucher)\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>BenefitRedemptionInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32 (nullable)</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>RedemptionID</td><td>String</td><td>The ID of the redemption to confirm</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>BenefitRedemptionOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"11a4c2a5-e870-4450-840d-4ab21e320dd0"},{"name":"Create","id":"d5e0732a-654a-4de7-80e2-a0667aa52739","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"OfferID\": 2,\r\n  \"SourceID\": \"sample string 3\",\r\n  \"JourneyID\": 1,\r\n  \"JourneyTaskID\": 1,\r\n  \"JourneyRunID\": 1,\r\n  \"PrjmkgID\": 1,\r\n  \"AddPrjmkgTarget\": true\r\n}"},"url":"https://{{Host}}/api/Voucher/Create","description":" <p>\n            Create a voucher code for a known customer\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>CreateVoucherInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AddPrjmkgTarget</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td></td><td>True</td></tr><tr><td>JourneyID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>JourneyRunID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>JourneyTaskID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>OfferID</td><td>Int32</td><td></td><td>True</td></tr><tr><td>PrjmkgID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of creation</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>CreateVoucherOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>VoucherCode</td><td>String</td><td>The code of the voucher</td></tr><tr><td>VoucherExpiryDate</td><td>DateTime</td><td>The end date time of the voucher</td></tr><tr><td>VoucherPrefix</td><td>String</td><td>the first part of voucher code (offercode)</td></tr><tr><td>VoucherStartDate</td><td>DateTime</td><td>The start date time of the voucher</td></tr><tr><td>VoucherSuffix</td><td>String</td><td>last last part voucher code (without offer code)</td></tr><tr><td>VoucherValue</td><td>Double</td><td>The value of the voucher</td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","Create"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"c2b263c2-563d-4061-a9f1-d2740ac0433b","name":"api/Voucher/Create Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CustomerID\": 1,\r\n  \"OfferID\": 2,\r\n  \"SourceID\": \"sample string 3\",\r\n  \"JourneyID\": 1,\r\n  \"JourneyTaskID\": 1,\r\n  \"JourneyRunID\": 1,\r\n  \"PrjmkgID\": 1,\r\n  \"AddPrjmkgTarget\": true\r\n}"},"url":"https://{{Host}}/api/Voucher/Create","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Create a voucher code for a known customer\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CreateVoucherInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AddPrjmkgTarget</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td></td><td>True</td></tr><tr><td>JourneyID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>JourneyRunID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>JourneyTaskID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>OfferID</td><td>Int32</td><td></td><td>True</td></tr><tr><td>PrjmkgID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>The source of creation</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>CreateVoucherOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>List&lt;String&gt;</td><td>The list of errors description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr><tr><td>VoucherCode</td><td>String</td><td>The code of the voucher</td></tr><tr><td>VoucherExpiryDate</td><td>DateTime</td><td>The end date time of the voucher</td></tr><tr><td>VoucherPrefix</td><td>String</td><td>the first part of voucher code (offercode)</td></tr><tr><td>VoucherStartDate</td><td>DateTime</td><td>The start date time of the voucher</td></tr><tr><td>VoucherSuffix</td><td>String</td><td>last last part voucher code (without offer code)</td></tr><tr><td>VoucherValue</td><td>Double</td><td>The value of the voucher</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"VoucherCode\": \"sample string 1\",\r\n  \"VoucherValue\": 2.1,\r\n  \"VoucherStartDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n  \"VoucherExpiryDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n  \"VoucherPrefix\": \"sample string 5\",\r\n  \"VoucherSuffix\": \"sample string 6\",\r\n  \"Response\": true,\r\n  \"Error\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"d5e0732a-654a-4de7-80e2-a0667aa52739"},{"name":"DeactivateVouchers","id":"fba32edf-f875-4fcb-87d3-6c3942814191","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"[\r\n  \"sample string 1\",\r\n  \"sample string 2\"\r\n]"},"url":"https://{{Host}}/api/Voucher/DeactivateVouchers","description":" <p>\n            Deactivate Vouchers ( max 100 voucher code per call )\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","DeactivateVouchers"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"bf7a129b-b636-480e-b37e-ef4d71601fd9","name":"api/Voucher/DeactivateVouchers Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"[\r\n  \"sample string 1\",\r\n  \"sample string 2\"\r\n]"},"url":"https://{{Host}}/api/Voucher/DeactivateVouchers","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Deactivate Vouchers ( max 100 voucher code per call )\r\n            \n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>ApiCallResponse Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Errors</td><td>List&lt;APICallError&gt;</td><td>Collection of errors if exist</td></tr><tr><td>ResponseStatus</td><td>Boolean</td><td>True: if the action was succsessfully treated<br />\n            False: if there is an error</td></tr><tr><td colspan=3><h4>APICallError Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ErrorCode</td><td>Int32</td><td>The error code</td></tr><tr><td>ErrorDescription</td><td>String</td><td>The error description</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ResponseStatus\": true,\r\n  \"Errors\": [\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"ErrorCode\": 1,\r\n      \"ErrorDescription\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"fba32edf-f875-4fcb-87d3-6c3942814191"},{"name":"Get","id":"7b5910af-f21d-43aa-b96d-80c8975f811d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/Get?vouchercode=vouchercode-value","description":" <p>\n            Get voucher details by voucher code\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetVoucherOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>redemptionerrors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>voucher</td><td>Voucher</td><td>Voucher details</td></tr><tr><td><h4>Voucher Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActiveOffer</td><td>Boolean</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td>Voucher category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>Voucher category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td></td></tr><tr><td>ChannelMessage</td><td>String</td><td></td></tr><tr><td>Conditions</td><td>String</td><td>Terms and condition (text format)</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Customer id linked to this voucher</td></tr><tr><td>CtcUID</td><td>String</td><td>Customer unique id linked to this voucher</td></tr><tr><td>CustomerName</td><td>String</td><td>Customer name linked to this voucher</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>Used to get the predefined Schedules and Locations</td></tr><tr><td>Description</td><td>String</td><td>Voucher short description</td></tr><tr><td>Disabled</td><td>Boolean</td><td>Voucher status (Disabled or not)</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Discount amount in £ (5 mean 5£)</td></tr><tr><td>DiscountPercentage</td><td>Double</td><td>Discount percentage (10 mean 10%)</td></tr><tr><td>DiscountType</td><td>String</td><td>The type of the discount \"P\" or \"M\" (if DiscountType = \"P\" so you find the percentage in the field \"DiscountPercentage\" else you find the discount amount in the field \"DiscountAmount\"</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td></td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td></td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Voucher end date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td></td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td></td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The URL of the large image if exist</td></tr><tr><td>Location</td><td>String</td><td>The redemption location (if the redemption voucher status = reddemed)</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>Used to set the Maximum number of Vouchers that can be redeemed by Period ( PeriodDaysByVoucher ) when the InfiniteVoucherRedemption is false</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>The Voucher can be redeemed Once Per mentioned number of days if the flag InfiniteVoucherRedemption is set to true or InfiniteVoucherRedemption is false and we have a MaxVoucherRedemption value</td></tr><tr><td>MediumImage</td><td>String</td><td>The URL of the medium image if exist</td></tr><tr><td>Message</td><td>String</td><td>Voucher long description (Text format)</td></tr><tr><td>Notes</td><td>String</td><td>Voucher notes</td></tr><tr><td>OfferID</td><td>Int32 (nullable)</td><td>Offer unique id</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>Products</td><td>List&lt;String&gt;</td><td>List of product codes affected by the discount</td></tr><tr><td>QualifiedBasketAmount</td><td>Double</td><td>List of product codes.\n            Used if the field \"VoucherTypeName\" = \"Spend\" so the basket amount must be equal or greater this amount to validate the voucher</td></tr><tr><td>QualifiedBasketProducts</td><td>List&lt;String&gt;</td><td>Used if the field \"VoucherTypeName\" = \"Linked Products\" so the basket must contain all these products to validate the voucher.</td></tr><tr><td>RandomID</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>ReactivationComment</td><td>String</td><td>Reactivation Comment</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>RedeemedBy</td><td>String</td><td>The user id who has redeem the vouccher (If the redemption voucher status = Redeemed)</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>Redemption date (if the redemption voucher status = redeemed)</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td></td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td></td></tr><tr><td>SmallImage</td><td>String</td><td>The URL of the small image if exist</td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Voucher start date</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td>Voucher sub category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>Voucher Sub category name</td></tr><tr><td>SubDescription</td><td>String</td><td></td></tr><tr><td>Title</td><td>String</td><td></td></tr><tr><td>URD</td><td>DateTime (nullable)</td><td>Voucher create date</td></tr><tr><td>Value</td><td>Double (nullable)</td><td>Value of the voucher</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>VoucherID</td><td>Int32 (nullable)</td><td>Voucher unique id</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>the type of the voucher :<br />\n            <ul>\n            <li>\n            Cash : you find the value in the field \"Value\"\n            </li>\n            <li>\n            Product : you find the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Linked Products : you find the list of products should be in the basket in the field \"QualifiedBasketProducts\" and the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Spend : you find the amount of the basket should be in the field \"QualifiedBasketAmount\" and the List of product codes affected by the discount in the field \"Products\" and the discount is :\n            <ul>\n            <li>\n            If the field \"DiscountType\" = \"P\" then you find the percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            If the field \"DiscountType\" = \"M\" then you find the amount of the discount in the field \"DiscountAmount\"\n            </li>\n            </ul>\n            </li>\n            </ul></td></tr><tr><td><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","Get"],"host":["{{Host}}"],"query":[{"key":"vouchercode","value":"vouchercode-value"}],"variable":[]}},"response":[{"id":"09cdd730-3352-43fc-aefa-f5779e1d92e8","name":"api/Voucher/Get?vouchercode={vouchercode} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Voucher/Get?vouchercode=vouchercode-value","protocol":"https","host":["{{Host}}"],"path":["api","Voucher","Get"],"query":[{"key":"vouchercode","value":"vouchercode-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get voucher details by voucher code\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetVoucherOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>redemptionerrors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>voucher</td><td>Voucher</td><td>Voucher details</td></tr><tr><td colspan=3><h4>Voucher Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActiveOffer</td><td>Boolean</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td>Voucher category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>Voucher category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td></td></tr><tr><td>ChannelMessage</td><td>String</td><td></td></tr><tr><td>Conditions</td><td>String</td><td>Terms and condition (text format)</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Customer id linked to this voucher</td></tr><tr><td>CtcUID</td><td>String</td><td>Customer unique id linked to this voucher</td></tr><tr><td>CustomerName</td><td>String</td><td>Customer name linked to this voucher</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>Used to get the predefined Schedules and Locations</td></tr><tr><td>Description</td><td>String</td><td>Voucher short description</td></tr><tr><td>Disabled</td><td>Boolean</td><td>Voucher status (Disabled or not)</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Discount amount in £ (5 mean 5£)</td></tr><tr><td>DiscountPercentage</td><td>Double</td><td>Discount percentage (10 mean 10%)</td></tr><tr><td>DiscountType</td><td>String</td><td>The type of the discount \"P\" or \"M\" (if DiscountType = \"P\" so you find the percentage in the field \"DiscountPercentage\" else you find the discount amount in the field \"DiscountAmount\"</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td></td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td></td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Voucher end date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td></td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td></td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The URL of the large image if exist</td></tr><tr><td>Location</td><td>String</td><td>The redemption location (if the redemption voucher status = reddemed)</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>Used to set the Maximum number of Vouchers that can be redeemed by Period ( PeriodDaysByVoucher ) when the InfiniteVoucherRedemption is false</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>The Voucher can be redeemed Once Per mentioned number of days if the flag InfiniteVoucherRedemption is set to true or InfiniteVoucherRedemption is false and we have a MaxVoucherRedemption value</td></tr><tr><td>MediumImage</td><td>String</td><td>The URL of the medium image if exist</td></tr><tr><td>Message</td><td>String</td><td>Voucher long description (Text format)</td></tr><tr><td>Notes</td><td>String</td><td>Voucher notes</td></tr><tr><td>OfferID</td><td>Int32 (nullable)</td><td>Offer unique id</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>Products</td><td>List&lt;String&gt;</td><td>List of product codes affected by the discount</td></tr><tr><td>QualifiedBasketAmount</td><td>Double</td><td>List of product codes.\n            Used if the field \"VoucherTypeName\" = \"Spend\" so the basket amount must be equal or greater this amount to validate the voucher</td></tr><tr><td>QualifiedBasketProducts</td><td>List&lt;String&gt;</td><td>Used if the field \"VoucherTypeName\" = \"Linked Products\" so the basket must contain all these products to validate the voucher.</td></tr><tr><td>RandomID</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>ReactivationComment</td><td>String</td><td>Reactivation Comment</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>RedeemedBy</td><td>String</td><td>The user id who has redeem the vouccher (If the redemption voucher status = Redeemed)</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>Redemption date (if the redemption voucher status = redeemed)</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td></td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td></td></tr><tr><td>SmallImage</td><td>String</td><td>The URL of the small image if exist</td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Voucher start date</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td>Voucher sub category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>Voucher Sub category name</td></tr><tr><td>SubDescription</td><td>String</td><td></td></tr><tr><td>Title</td><td>String</td><td></td></tr><tr><td>URD</td><td>DateTime (nullable)</td><td>Voucher create date</td></tr><tr><td>Value</td><td>Double (nullable)</td><td>Value of the voucher</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>VoucherID</td><td>Int32 (nullable)</td><td>Voucher unique id</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>the type of the voucher :<br />\n            <ul>\n            <li>\n            Cash : you find the value in the field \"Value\"\n            </li>\n            <li>\n            Product : you find the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Linked Products : you find the list of products should be in the basket in the field \"QualifiedBasketProducts\" and the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Spend : you find the amount of the basket should be in the field \"QualifiedBasketAmount\" and the List of product codes affected by the discount in the field \"Products\" and the discount is :\n            <ul>\n            <li>\n            If the field \"DiscountType\" = \"P\" then you find the percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            If the field \"DiscountType\" = \"M\" then you find the amount of the discount in the field \"DiscountAmount\"\n            </li>\n            </ul>\n            </li>\n            </ul></td></tr><tr><td colspan=3><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"voucher\": {\r\n    \"VoucherID\": 1,\r\n    \"OfferID\": 1,\r\n    \"StartDate\": \"2026-03-25T07:30:10.5473084+00:00\",\r\n    \"ExpiryDate\": \"2026-03-25T07:30:10.5473084+00:00\",\r\n    \"Conditions\": \"sample string 1\",\r\n    \"Message\": \"sample string 2\",\r\n    \"CategoryID\": 3,\r\n    \"CategoryName\": \"sample string 4\",\r\n    \"SubCategoryID\": 1,\r\n    \"SubCategoryName\": \"sample string 5\",\r\n    \"Description\": \"sample string 6\",\r\n    \"CtcID\": 1,\r\n    \"CtcUID\": \"sample string 7\",\r\n    \"CustomerName\": \"sample string 8\",\r\n    \"Redeemed\": true,\r\n    \"RedeemedBy\": \"sample string 9\",\r\n    \"Location\": \"sample string 10\",\r\n    \"RedemptionDate\": \"2026-03-25T07:30:10.5473084+00:00\",\r\n    \"URD\": \"2026-03-25T07:30:10.5473084+00:00\",\r\n    \"Disabled\": true,\r\n    \"Notes\": \"sample string 12\",\r\n    \"ReactivationComment\": \"sample string 13\",\r\n    \"RandomID\": \"sample string 14\",\r\n    \"VoucherCode\": \"sample string 15\",\r\n    \"SmallImage\": \"sample string 16\",\r\n    \"MediumImage\": \"sample string 17\",\r\n    \"LargeImage\": \"sample string 18\",\r\n    \"VoucherTypeName\": \"sample string 19\",\r\n    \"Value\": 1.1,\r\n    \"Products\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"DiscountType\": \"sample string 20\",\r\n    \"DiscountAmount\": 21.1,\r\n    \"DiscountPercentage\": 22.1,\r\n    \"QualifiedBasketAmount\": 23.1,\r\n    \"QualifiedBasketProducts\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ProductKey\": \"sample string 24\",\r\n    \"Source\": \"sample string 25\",\r\n    \"InterestNodeCode\": 26,\r\n    \"ActiveOffer\": true,\r\n    \"BrandID\": 1,\r\n    \"RedemptionTypes\": [\r\n      {\r\n        \"OrderTypeID\": 1,\r\n        \"OrderTypeDescription\": \"sample string 2\",\r\n        \"IsPhysicalVisit\": true\r\n      },\r\n      {\r\n        \"OrderTypeID\": 1,\r\n        \"OrderTypeDescription\": \"sample string 2\",\r\n        \"IsPhysicalVisit\": true\r\n      }\r\n    ],\r\n    \"DisplayChannels\": [\r\n      {\r\n        \"DisplayChannelID\": 1,\r\n        \"DisplayChannelDescription\": \"sample string 2\"\r\n      },\r\n      {\r\n        \"DisplayChannelID\": 1,\r\n        \"DisplayChannelDescription\": \"sample string 2\"\r\n      }\r\n    ],\r\n    \"ScheduleLines\": [\r\n      {\r\n        \"day\": 1,\r\n        \"start_minute\": 2,\r\n        \"end_minute\": 3,\r\n        \"timezone_type\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"day\": 1,\r\n        \"start_minute\": 2,\r\n        \"end_minute\": 3,\r\n        \"timezone_type\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"DaypartID\": 1,\r\n    \"Title\": \"sample string 28\",\r\n    \"SubDescription\": \"sample string 29\",\r\n    \"MaxIssuancePermitted\": 1,\r\n    \"IssuanceLimitPerCustomer\": 1,\r\n    \"ChannelHeadline\": \"sample string 30\",\r\n    \"ChannelMessage\": \"sample string 31\",\r\n    \"DisplayFrom\": \"2026-03-25T07:30:10.5473084+00:00\",\r\n    \"DisplayTo\": \"2026-03-25T07:30:10.5473084+00:00\",\r\n    \"InfiniteVoucherRedemption\": true,\r\n    \"MaxVoucherRedemption\": 1,\r\n    \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n    \"IssuancePointsWorth\": 33.1\r\n  },\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"redemptionerrors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"7b5910af-f21d-43aa-b96d-80c8975f811d"},{"name":"GetAllByCustomerID","id":"2b2bdf99-0c84-42b9-8b7b-58f8adde52f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetAllByCustomerID?customerid=customerid-value","description":" <p>\n            Get list of all vouchers ( redeemed or not ) related to a customer\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetVoucherListOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>OfferCategories</td><td>List&lt;OfferCategory&gt;</td><td>List of Voucher categories</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>voucher</td><td>List&lt;Voucher&gt;</td><td>List of Voucher details</td></tr><tr><td><h4>OfferCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>CategoryDescription</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CategoryImgUrl</td><td>String</td><td>Voucher category Image URL</td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>CategoryOrder</td><td>Int32 (nullable)</td><td>Display Order</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>subCategoriesList</td><td>List&lt;SubCategory&gt;</td><td></td></tr><tr><td>UserFullName</td><td>String</td><td></td></tr><tr><td><h4>SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr><tr><td><h4>Voucher Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActiveOffer</td><td>Boolean</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td>Voucher category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>Voucher category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td></td></tr><tr><td>ChannelMessage</td><td>String</td><td></td></tr><tr><td>Conditions</td><td>String</td><td>Terms and condition (text format)</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Customer id linked to this voucher</td></tr><tr><td>CtcUID</td><td>String</td><td>Customer unique id linked to this voucher</td></tr><tr><td>CustomerName</td><td>String</td><td>Customer name linked to this voucher</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>Used to get the predefined Schedules and Locations</td></tr><tr><td>Description</td><td>String</td><td>Voucher short description</td></tr><tr><td>Disabled</td><td>Boolean</td><td>Voucher status (Disabled or not)</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Discount amount in £ (5 mean 5£)</td></tr><tr><td>DiscountPercentage</td><td>Double</td><td>Discount percentage (10 mean 10%)</td></tr><tr><td>DiscountType</td><td>String</td><td>The type of the discount \"P\" or \"M\" (if DiscountType = \"P\" so you find the percentage in the field \"DiscountPercentage\" else you find the discount amount in the field \"DiscountAmount\"</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td></td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td></td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Voucher end date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td></td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td></td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The URL of the large image if exist</td></tr><tr><td>Location</td><td>String</td><td>The redemption location (if the redemption voucher status = reddemed)</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>Used to set the Maximum number of Vouchers that can be redeemed by Period ( PeriodDaysByVoucher ) when the InfiniteVoucherRedemption is false</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>The Voucher can be redeemed Once Per mentioned number of days if the flag InfiniteVoucherRedemption is set to true or InfiniteVoucherRedemption is false and we have a MaxVoucherRedemption value</td></tr><tr><td>MediumImage</td><td>String</td><td>The URL of the medium image if exist</td></tr><tr><td>Message</td><td>String</td><td>Voucher long description (Text format)</td></tr><tr><td>Notes</td><td>String</td><td>Voucher notes</td></tr><tr><td>OfferID</td><td>Int32 (nullable)</td><td>Offer unique id</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>Products</td><td>List&lt;String&gt;</td><td>List of product codes affected by the discount</td></tr><tr><td>QualifiedBasketAmount</td><td>Double</td><td>List of product codes.\n            Used if the field \"VoucherTypeName\" = \"Spend\" so the basket amount must be equal or greater this amount to validate the voucher</td></tr><tr><td>QualifiedBasketProducts</td><td>List&lt;String&gt;</td><td>Used if the field \"VoucherTypeName\" = \"Linked Products\" so the basket must contain all these products to validate the voucher.</td></tr><tr><td>RandomID</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>ReactivationComment</td><td>String</td><td>Reactivation Comment</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>RedeemedBy</td><td>String</td><td>The user id who has redeem the vouccher (If the redemption voucher status = Redeemed)</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>Redemption date (if the redemption voucher status = redeemed)</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td></td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td></td></tr><tr><td>SmallImage</td><td>String</td><td>The URL of the small image if exist</td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Voucher start date</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td>Voucher sub category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>Voucher Sub category name</td></tr><tr><td>SubDescription</td><td>String</td><td></td></tr><tr><td>Title</td><td>String</td><td></td></tr><tr><td>URD</td><td>DateTime (nullable)</td><td>Voucher create date</td></tr><tr><td>Value</td><td>Double (nullable)</td><td>Value of the voucher</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>VoucherID</td><td>Int32 (nullable)</td><td>Voucher unique id</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>the type of the voucher :<br />\n            <ul>\n            <li>\n            Cash : you find the value in the field \"Value\"\n            </li>\n            <li>\n            Product : you find the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Linked Products : you find the list of products should be in the basket in the field \"QualifiedBasketProducts\" and the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Spend : you find the amount of the basket should be in the field \"QualifiedBasketAmount\" and the List of product codes affected by the discount in the field \"Products\" and the discount is :\n            <ul>\n            <li>\n            If the field \"DiscountType\" = \"P\" then you find the percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            If the field \"DiscountType\" = \"M\" then you find the amount of the discount in the field \"DiscountAmount\"\n            </li>\n            </ul>\n            </li>\n            </ul></td></tr><tr><td><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetAllByCustomerID"],"host":["{{Host}}"],"query":[{"key":"customerid","value":"customerid-value"}],"variable":[]}},"response":[{"id":"7d529e67-bdca-4029-be8f-58fde1b06079","name":"api/Voucher/GetAllByCustomerID?customerid={customerid} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Voucher/GetAllByCustomerID?customerid=customerid-value","protocol":"https","host":["{{Host}}"],"path":["api","Voucher","GetAllByCustomerID"],"query":[{"key":"customerid","value":"customerid-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get list of all vouchers ( redeemed or not ) related to a customer\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetVoucherListOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>OfferCategories</td><td>List&lt;OfferCategory&gt;</td><td>List of Voucher categories</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>voucher</td><td>List&lt;Voucher&gt;</td><td>List of Voucher details</td></tr><tr><td colspan=3><h4>OfferCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>CategoryDescription</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CategoryImgUrl</td><td>String</td><td>Voucher category Image URL</td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>CategoryOrder</td><td>Int32 (nullable)</td><td>Display Order</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>subCategoriesList</td><td>List&lt;SubCategory&gt;</td><td></td></tr><tr><td>UserFullName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>Voucher Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActiveOffer</td><td>Boolean</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td>Voucher category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>Voucher category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td></td></tr><tr><td>ChannelMessage</td><td>String</td><td></td></tr><tr><td>Conditions</td><td>String</td><td>Terms and condition (text format)</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Customer id linked to this voucher</td></tr><tr><td>CtcUID</td><td>String</td><td>Customer unique id linked to this voucher</td></tr><tr><td>CustomerName</td><td>String</td><td>Customer name linked to this voucher</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>Used to get the predefined Schedules and Locations</td></tr><tr><td>Description</td><td>String</td><td>Voucher short description</td></tr><tr><td>Disabled</td><td>Boolean</td><td>Voucher status (Disabled or not)</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Discount amount in £ (5 mean 5£)</td></tr><tr><td>DiscountPercentage</td><td>Double</td><td>Discount percentage (10 mean 10%)</td></tr><tr><td>DiscountType</td><td>String</td><td>The type of the discount \"P\" or \"M\" (if DiscountType = \"P\" so you find the percentage in the field \"DiscountPercentage\" else you find the discount amount in the field \"DiscountAmount\"</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td></td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td></td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Voucher end date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td></td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td></td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The URL of the large image if exist</td></tr><tr><td>Location</td><td>String</td><td>The redemption location (if the redemption voucher status = reddemed)</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>Used to set the Maximum number of Vouchers that can be redeemed by Period ( PeriodDaysByVoucher ) when the InfiniteVoucherRedemption is false</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>The Voucher can be redeemed Once Per mentioned number of days if the flag InfiniteVoucherRedemption is set to true or InfiniteVoucherRedemption is false and we have a MaxVoucherRedemption value</td></tr><tr><td>MediumImage</td><td>String</td><td>The URL of the medium image if exist</td></tr><tr><td>Message</td><td>String</td><td>Voucher long description (Text format)</td></tr><tr><td>Notes</td><td>String</td><td>Voucher notes</td></tr><tr><td>OfferID</td><td>Int32 (nullable)</td><td>Offer unique id</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>Products</td><td>List&lt;String&gt;</td><td>List of product codes affected by the discount</td></tr><tr><td>QualifiedBasketAmount</td><td>Double</td><td>List of product codes.\n            Used if the field \"VoucherTypeName\" = \"Spend\" so the basket amount must be equal or greater this amount to validate the voucher</td></tr><tr><td>QualifiedBasketProducts</td><td>List&lt;String&gt;</td><td>Used if the field \"VoucherTypeName\" = \"Linked Products\" so the basket must contain all these products to validate the voucher.</td></tr><tr><td>RandomID</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>ReactivationComment</td><td>String</td><td>Reactivation Comment</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>RedeemedBy</td><td>String</td><td>The user id who has redeem the vouccher (If the redemption voucher status = Redeemed)</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>Redemption date (if the redemption voucher status = redeemed)</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td></td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td></td></tr><tr><td>SmallImage</td><td>String</td><td>The URL of the small image if exist</td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Voucher start date</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td>Voucher sub category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>Voucher Sub category name</td></tr><tr><td>SubDescription</td><td>String</td><td></td></tr><tr><td>Title</td><td>String</td><td></td></tr><tr><td>URD</td><td>DateTime (nullable)</td><td>Voucher create date</td></tr><tr><td>Value</td><td>Double (nullable)</td><td>Value of the voucher</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>VoucherID</td><td>Int32 (nullable)</td><td>Voucher unique id</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>the type of the voucher :<br />\n            <ul>\n            <li>\n            Cash : you find the value in the field \"Value\"\n            </li>\n            <li>\n            Product : you find the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Linked Products : you find the list of products should be in the basket in the field \"QualifiedBasketProducts\" and the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Spend : you find the amount of the basket should be in the field \"QualifiedBasketAmount\" and the List of product codes affected by the discount in the field \"Products\" and the discount is :\n            <ul>\n            <li>\n            If the field \"DiscountType\" = \"P\" then you find the percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            If the field \"DiscountType\" = \"M\" then you find the amount of the discount in the field \"DiscountAmount\"\n            </li>\n            </ul>\n            </li>\n            </ul></td></tr><tr><td colspan=3><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"voucher\": [\r\n    {\r\n      \"VoucherID\": 1,\r\n      \"OfferID\": 1,\r\n      \"StartDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"Conditions\": \"sample string 1\",\r\n      \"Message\": \"sample string 2\",\r\n      \"CategoryID\": 3,\r\n      \"CategoryName\": \"sample string 4\",\r\n      \"SubCategoryID\": 1,\r\n      \"SubCategoryName\": \"sample string 5\",\r\n      \"Description\": \"sample string 6\",\r\n      \"CtcID\": 1,\r\n      \"CtcUID\": \"sample string 7\",\r\n      \"CustomerName\": \"sample string 8\",\r\n      \"Redeemed\": true,\r\n      \"RedeemedBy\": \"sample string 9\",\r\n      \"Location\": \"sample string 10\",\r\n      \"RedemptionDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"URD\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"Disabled\": true,\r\n      \"Notes\": \"sample string 12\",\r\n      \"ReactivationComment\": \"sample string 13\",\r\n      \"RandomID\": \"sample string 14\",\r\n      \"VoucherCode\": \"sample string 15\",\r\n      \"SmallImage\": \"sample string 16\",\r\n      \"MediumImage\": \"sample string 17\",\r\n      \"LargeImage\": \"sample string 18\",\r\n      \"VoucherTypeName\": \"sample string 19\",\r\n      \"Value\": 1.1,\r\n      \"Products\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"DiscountType\": \"sample string 20\",\r\n      \"DiscountAmount\": 21.1,\r\n      \"DiscountPercentage\": 22.1,\r\n      \"QualifiedBasketAmount\": 23.1,\r\n      \"QualifiedBasketProducts\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ProductKey\": \"sample string 24\",\r\n      \"Source\": \"sample string 25\",\r\n      \"InterestNodeCode\": 26,\r\n      \"ActiveOffer\": true,\r\n      \"BrandID\": 1,\r\n      \"RedemptionTypes\": [\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        },\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        }\r\n      ],\r\n      \"DisplayChannels\": [\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"ScheduleLines\": [\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"DaypartID\": 1,\r\n      \"Title\": \"sample string 28\",\r\n      \"SubDescription\": \"sample string 29\",\r\n      \"MaxIssuancePermitted\": 1,\r\n      \"IssuanceLimitPerCustomer\": 1,\r\n      \"ChannelHeadline\": \"sample string 30\",\r\n      \"ChannelMessage\": \"sample string 31\",\r\n      \"DisplayFrom\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"DisplayTo\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"InfiniteVoucherRedemption\": true,\r\n      \"MaxVoucherRedemption\": 1,\r\n      \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n      \"IssuancePointsWorth\": 33.1\r\n    },\r\n    {\r\n      \"VoucherID\": 1,\r\n      \"OfferID\": 1,\r\n      \"StartDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"Conditions\": \"sample string 1\",\r\n      \"Message\": \"sample string 2\",\r\n      \"CategoryID\": 3,\r\n      \"CategoryName\": \"sample string 4\",\r\n      \"SubCategoryID\": 1,\r\n      \"SubCategoryName\": \"sample string 5\",\r\n      \"Description\": \"sample string 6\",\r\n      \"CtcID\": 1,\r\n      \"CtcUID\": \"sample string 7\",\r\n      \"CustomerName\": \"sample string 8\",\r\n      \"Redeemed\": true,\r\n      \"RedeemedBy\": \"sample string 9\",\r\n      \"Location\": \"sample string 10\",\r\n      \"RedemptionDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"URD\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"Disabled\": true,\r\n      \"Notes\": \"sample string 12\",\r\n      \"ReactivationComment\": \"sample string 13\",\r\n      \"RandomID\": \"sample string 14\",\r\n      \"VoucherCode\": \"sample string 15\",\r\n      \"SmallImage\": \"sample string 16\",\r\n      \"MediumImage\": \"sample string 17\",\r\n      \"LargeImage\": \"sample string 18\",\r\n      \"VoucherTypeName\": \"sample string 19\",\r\n      \"Value\": 1.1,\r\n      \"Products\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"DiscountType\": \"sample string 20\",\r\n      \"DiscountAmount\": 21.1,\r\n      \"DiscountPercentage\": 22.1,\r\n      \"QualifiedBasketAmount\": 23.1,\r\n      \"QualifiedBasketProducts\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ProductKey\": \"sample string 24\",\r\n      \"Source\": \"sample string 25\",\r\n      \"InterestNodeCode\": 26,\r\n      \"ActiveOffer\": true,\r\n      \"BrandID\": 1,\r\n      \"RedemptionTypes\": [\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        },\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        }\r\n      ],\r\n      \"DisplayChannels\": [\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"ScheduleLines\": [\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"DaypartID\": 1,\r\n      \"Title\": \"sample string 28\",\r\n      \"SubDescription\": \"sample string 29\",\r\n      \"MaxIssuancePermitted\": 1,\r\n      \"IssuanceLimitPerCustomer\": 1,\r\n      \"ChannelHeadline\": \"sample string 30\",\r\n      \"ChannelMessage\": \"sample string 31\",\r\n      \"DisplayFrom\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"DisplayTo\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"InfiniteVoucherRedemption\": true,\r\n      \"MaxVoucherRedemption\": 1,\r\n      \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n      \"IssuancePointsWorth\": 33.1\r\n    }\r\n  ],\r\n  \"OfferCategories\": [\r\n    {\r\n      \"CategoryID\": 1,\r\n      \"CategoryName\": \"sample string 2\",\r\n      \"CategoryDescription\": \"sample string 3\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"Active\": true,\r\n      \"UserFullName\": \"sample string 5\",\r\n      \"CategoryOrder\": 1,\r\n      \"CategoryImgUrl\": \"sample string 6\",\r\n      \"subCategoriesList\": [\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        },\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"CategoryID\": 1,\r\n      \"CategoryName\": \"sample string 2\",\r\n      \"CategoryDescription\": \"sample string 3\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"Active\": true,\r\n      \"UserFullName\": \"sample string 5\",\r\n      \"CategoryOrder\": 1,\r\n      \"CategoryImgUrl\": \"sample string 6\",\r\n      \"subCategoriesList\": [\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        },\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"2b2bdf99-0c84-42b9-8b7b-58f8adde52f7"},{"name":"GetAllByCustomerIDByParams","id":"41055c4d-99e8-4037-aeae-f3df98233ca6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetAllByCustomerIDByParams","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>GetVoucherListOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>OfferCategories</td><td>List&lt;OfferCategory&gt;</td><td>List of Voucher categories</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>voucher</td><td>List&lt;Voucher&gt;</td><td>List of Voucher details</td></tr><tr><td><h4>OfferCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>CategoryDescription</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CategoryImgUrl</td><td>String</td><td>Voucher category Image URL</td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>CategoryOrder</td><td>Int32 (nullable)</td><td>Display Order</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>subCategoriesList</td><td>List&lt;SubCategory&gt;</td><td></td></tr><tr><td>UserFullName</td><td>String</td><td></td></tr><tr><td><h4>SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr><tr><td><h4>Voucher Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActiveOffer</td><td>Boolean</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td>Voucher category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>Voucher category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td></td></tr><tr><td>ChannelMessage</td><td>String</td><td></td></tr><tr><td>Conditions</td><td>String</td><td>Terms and condition (text format)</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Customer id linked to this voucher</td></tr><tr><td>CtcUID</td><td>String</td><td>Customer unique id linked to this voucher</td></tr><tr><td>CustomerName</td><td>String</td><td>Customer name linked to this voucher</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>Used to get the predefined Schedules and Locations</td></tr><tr><td>Description</td><td>String</td><td>Voucher short description</td></tr><tr><td>Disabled</td><td>Boolean</td><td>Voucher status (Disabled or not)</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Discount amount in £ (5 mean 5£)</td></tr><tr><td>DiscountPercentage</td><td>Double</td><td>Discount percentage (10 mean 10%)</td></tr><tr><td>DiscountType</td><td>String</td><td>The type of the discount \"P\" or \"M\" (if DiscountType = \"P\" so you find the percentage in the field \"DiscountPercentage\" else you find the discount amount in the field \"DiscountAmount\"</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td></td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td></td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Voucher end date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td></td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td></td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The URL of the large image if exist</td></tr><tr><td>Location</td><td>String</td><td>The redemption location (if the redemption voucher status = reddemed)</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>Used to set the Maximum number of Vouchers that can be redeemed by Period ( PeriodDaysByVoucher ) when the InfiniteVoucherRedemption is false</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>The Voucher can be redeemed Once Per mentioned number of days if the flag InfiniteVoucherRedemption is set to true or InfiniteVoucherRedemption is false and we have a MaxVoucherRedemption value</td></tr><tr><td>MediumImage</td><td>String</td><td>The URL of the medium image if exist</td></tr><tr><td>Message</td><td>String</td><td>Voucher long description (Text format)</td></tr><tr><td>Notes</td><td>String</td><td>Voucher notes</td></tr><tr><td>OfferID</td><td>Int32 (nullable)</td><td>Offer unique id</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>Products</td><td>List&lt;String&gt;</td><td>List of product codes affected by the discount</td></tr><tr><td>QualifiedBasketAmount</td><td>Double</td><td>List of product codes.\n            Used if the field \"VoucherTypeName\" = \"Spend\" so the basket amount must be equal or greater this amount to validate the voucher</td></tr><tr><td>QualifiedBasketProducts</td><td>List&lt;String&gt;</td><td>Used if the field \"VoucherTypeName\" = \"Linked Products\" so the basket must contain all these products to validate the voucher.</td></tr><tr><td>RandomID</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>ReactivationComment</td><td>String</td><td>Reactivation Comment</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>RedeemedBy</td><td>String</td><td>The user id who has redeem the vouccher (If the redemption voucher status = Redeemed)</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>Redemption date (if the redemption voucher status = redeemed)</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td></td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td></td></tr><tr><td>SmallImage</td><td>String</td><td>The URL of the small image if exist</td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Voucher start date</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td>Voucher sub category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>Voucher Sub category name</td></tr><tr><td>SubDescription</td><td>String</td><td></td></tr><tr><td>Title</td><td>String</td><td></td></tr><tr><td>URD</td><td>DateTime (nullable)</td><td>Voucher create date</td></tr><tr><td>Value</td><td>Double (nullable)</td><td>Value of the voucher</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>VoucherID</td><td>Int32 (nullable)</td><td>Voucher unique id</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>the type of the voucher :<br />\n            <ul>\n            <li>\n            Cash : you find the value in the field \"Value\"\n            </li>\n            <li>\n            Product : you find the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Linked Products : you find the list of products should be in the basket in the field \"QualifiedBasketProducts\" and the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Spend : you find the amount of the basket should be in the field \"QualifiedBasketAmount\" and the List of product codes affected by the discount in the field \"Products\" and the discount is :\n            <ul>\n            <li>\n            If the field \"DiscountType\" = \"P\" then you find the percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            If the field \"DiscountType\" = \"M\" then you find the amount of the discount in the field \"DiscountAmount\"\n            </li>\n            </ul>\n            </li>\n            </ul></td></tr><tr><td><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetAllByCustomerIDByParams"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"1e8f5806-b3fd-46f9-91a4-cd57cc89faf1","name":"api/Voucher/GetAllByCustomerIDByParams Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetAllByCustomerIDByParams","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetVoucherListOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>OfferCategories</td><td>List&lt;OfferCategory&gt;</td><td>List of Voucher categories</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>voucher</td><td>List&lt;Voucher&gt;</td><td>List of Voucher details</td></tr><tr><td colspan=3><h4>OfferCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>CategoryDescription</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CategoryImgUrl</td><td>String</td><td>Voucher category Image URL</td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>CategoryOrder</td><td>Int32 (nullable)</td><td>Display Order</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>subCategoriesList</td><td>List&lt;SubCategory&gt;</td><td></td></tr><tr><td>UserFullName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>Voucher Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActiveOffer</td><td>Boolean</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td>Voucher category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>Voucher category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td></td></tr><tr><td>ChannelMessage</td><td>String</td><td></td></tr><tr><td>Conditions</td><td>String</td><td>Terms and condition (text format)</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Customer id linked to this voucher</td></tr><tr><td>CtcUID</td><td>String</td><td>Customer unique id linked to this voucher</td></tr><tr><td>CustomerName</td><td>String</td><td>Customer name linked to this voucher</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>Used to get the predefined Schedules and Locations</td></tr><tr><td>Description</td><td>String</td><td>Voucher short description</td></tr><tr><td>Disabled</td><td>Boolean</td><td>Voucher status (Disabled or not)</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Discount amount in £ (5 mean 5£)</td></tr><tr><td>DiscountPercentage</td><td>Double</td><td>Discount percentage (10 mean 10%)</td></tr><tr><td>DiscountType</td><td>String</td><td>The type of the discount \"P\" or \"M\" (if DiscountType = \"P\" so you find the percentage in the field \"DiscountPercentage\" else you find the discount amount in the field \"DiscountAmount\"</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td></td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td></td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Voucher end date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td></td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td></td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The URL of the large image if exist</td></tr><tr><td>Location</td><td>String</td><td>The redemption location (if the redemption voucher status = reddemed)</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>Used to set the Maximum number of Vouchers that can be redeemed by Period ( PeriodDaysByVoucher ) when the InfiniteVoucherRedemption is false</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>The Voucher can be redeemed Once Per mentioned number of days if the flag InfiniteVoucherRedemption is set to true or InfiniteVoucherRedemption is false and we have a MaxVoucherRedemption value</td></tr><tr><td>MediumImage</td><td>String</td><td>The URL of the medium image if exist</td></tr><tr><td>Message</td><td>String</td><td>Voucher long description (Text format)</td></tr><tr><td>Notes</td><td>String</td><td>Voucher notes</td></tr><tr><td>OfferID</td><td>Int32 (nullable)</td><td>Offer unique id</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>Products</td><td>List&lt;String&gt;</td><td>List of product codes affected by the discount</td></tr><tr><td>QualifiedBasketAmount</td><td>Double</td><td>List of product codes.\n            Used if the field \"VoucherTypeName\" = \"Spend\" so the basket amount must be equal or greater this amount to validate the voucher</td></tr><tr><td>QualifiedBasketProducts</td><td>List&lt;String&gt;</td><td>Used if the field \"VoucherTypeName\" = \"Linked Products\" so the basket must contain all these products to validate the voucher.</td></tr><tr><td>RandomID</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>ReactivationComment</td><td>String</td><td>Reactivation Comment</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>RedeemedBy</td><td>String</td><td>The user id who has redeem the vouccher (If the redemption voucher status = Redeemed)</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>Redemption date (if the redemption voucher status = redeemed)</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td></td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td></td></tr><tr><td>SmallImage</td><td>String</td><td>The URL of the small image if exist</td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Voucher start date</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td>Voucher sub category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>Voucher Sub category name</td></tr><tr><td>SubDescription</td><td>String</td><td></td></tr><tr><td>Title</td><td>String</td><td></td></tr><tr><td>URD</td><td>DateTime (nullable)</td><td>Voucher create date</td></tr><tr><td>Value</td><td>Double (nullable)</td><td>Value of the voucher</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>VoucherID</td><td>Int32 (nullable)</td><td>Voucher unique id</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>the type of the voucher :<br />\n            <ul>\n            <li>\n            Cash : you find the value in the field \"Value\"\n            </li>\n            <li>\n            Product : you find the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Linked Products : you find the list of products should be in the basket in the field \"QualifiedBasketProducts\" and the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Spend : you find the amount of the basket should be in the field \"QualifiedBasketAmount\" and the List of product codes affected by the discount in the field \"Products\" and the discount is :\n            <ul>\n            <li>\n            If the field \"DiscountType\" = \"P\" then you find the percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            If the field \"DiscountType\" = \"M\" then you find the amount of the discount in the field \"DiscountAmount\"\n            </li>\n            </ul>\n            </li>\n            </ul></td></tr><tr><td colspan=3><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"voucher\": [\r\n    {\r\n      \"VoucherID\": 1,\r\n      \"OfferID\": 1,\r\n      \"StartDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"Conditions\": \"sample string 1\",\r\n      \"Message\": \"sample string 2\",\r\n      \"CategoryID\": 3,\r\n      \"CategoryName\": \"sample string 4\",\r\n      \"SubCategoryID\": 1,\r\n      \"SubCategoryName\": \"sample string 5\",\r\n      \"Description\": \"sample string 6\",\r\n      \"CtcID\": 1,\r\n      \"CtcUID\": \"sample string 7\",\r\n      \"CustomerName\": \"sample string 8\",\r\n      \"Redeemed\": true,\r\n      \"RedeemedBy\": \"sample string 9\",\r\n      \"Location\": \"sample string 10\",\r\n      \"RedemptionDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"URD\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"Disabled\": true,\r\n      \"Notes\": \"sample string 12\",\r\n      \"ReactivationComment\": \"sample string 13\",\r\n      \"RandomID\": \"sample string 14\",\r\n      \"VoucherCode\": \"sample string 15\",\r\n      \"SmallImage\": \"sample string 16\",\r\n      \"MediumImage\": \"sample string 17\",\r\n      \"LargeImage\": \"sample string 18\",\r\n      \"VoucherTypeName\": \"sample string 19\",\r\n      \"Value\": 1.1,\r\n      \"Products\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"DiscountType\": \"sample string 20\",\r\n      \"DiscountAmount\": 21.1,\r\n      \"DiscountPercentage\": 22.1,\r\n      \"QualifiedBasketAmount\": 23.1,\r\n      \"QualifiedBasketProducts\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ProductKey\": \"sample string 24\",\r\n      \"Source\": \"sample string 25\",\r\n      \"InterestNodeCode\": 26,\r\n      \"ActiveOffer\": true,\r\n      \"BrandID\": 1,\r\n      \"RedemptionTypes\": [\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        },\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        }\r\n      ],\r\n      \"DisplayChannels\": [\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"ScheduleLines\": [\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"DaypartID\": 1,\r\n      \"Title\": \"sample string 28\",\r\n      \"SubDescription\": \"sample string 29\",\r\n      \"MaxIssuancePermitted\": 1,\r\n      \"IssuanceLimitPerCustomer\": 1,\r\n      \"ChannelHeadline\": \"sample string 30\",\r\n      \"ChannelMessage\": \"sample string 31\",\r\n      \"DisplayFrom\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"DisplayTo\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"InfiniteVoucherRedemption\": true,\r\n      \"MaxVoucherRedemption\": 1,\r\n      \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n      \"IssuancePointsWorth\": 33.1\r\n    },\r\n    {\r\n      \"VoucherID\": 1,\r\n      \"OfferID\": 1,\r\n      \"StartDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"Conditions\": \"sample string 1\",\r\n      \"Message\": \"sample string 2\",\r\n      \"CategoryID\": 3,\r\n      \"CategoryName\": \"sample string 4\",\r\n      \"SubCategoryID\": 1,\r\n      \"SubCategoryName\": \"sample string 5\",\r\n      \"Description\": \"sample string 6\",\r\n      \"CtcID\": 1,\r\n      \"CtcUID\": \"sample string 7\",\r\n      \"CustomerName\": \"sample string 8\",\r\n      \"Redeemed\": true,\r\n      \"RedeemedBy\": \"sample string 9\",\r\n      \"Location\": \"sample string 10\",\r\n      \"RedemptionDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"URD\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"Disabled\": true,\r\n      \"Notes\": \"sample string 12\",\r\n      \"ReactivationComment\": \"sample string 13\",\r\n      \"RandomID\": \"sample string 14\",\r\n      \"VoucherCode\": \"sample string 15\",\r\n      \"SmallImage\": \"sample string 16\",\r\n      \"MediumImage\": \"sample string 17\",\r\n      \"LargeImage\": \"sample string 18\",\r\n      \"VoucherTypeName\": \"sample string 19\",\r\n      \"Value\": 1.1,\r\n      \"Products\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"DiscountType\": \"sample string 20\",\r\n      \"DiscountAmount\": 21.1,\r\n      \"DiscountPercentage\": 22.1,\r\n      \"QualifiedBasketAmount\": 23.1,\r\n      \"QualifiedBasketProducts\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ProductKey\": \"sample string 24\",\r\n      \"Source\": \"sample string 25\",\r\n      \"InterestNodeCode\": 26,\r\n      \"ActiveOffer\": true,\r\n      \"BrandID\": 1,\r\n      \"RedemptionTypes\": [\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        },\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        }\r\n      ],\r\n      \"DisplayChannels\": [\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"ScheduleLines\": [\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"DaypartID\": 1,\r\n      \"Title\": \"sample string 28\",\r\n      \"SubDescription\": \"sample string 29\",\r\n      \"MaxIssuancePermitted\": 1,\r\n      \"IssuanceLimitPerCustomer\": 1,\r\n      \"ChannelHeadline\": \"sample string 30\",\r\n      \"ChannelMessage\": \"sample string 31\",\r\n      \"DisplayFrom\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"DisplayTo\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"InfiniteVoucherRedemption\": true,\r\n      \"MaxVoucherRedemption\": 1,\r\n      \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n      \"IssuancePointsWorth\": 33.1\r\n    }\r\n  ],\r\n  \"OfferCategories\": [\r\n    {\r\n      \"CategoryID\": 1,\r\n      \"CategoryName\": \"sample string 2\",\r\n      \"CategoryDescription\": \"sample string 3\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"Active\": true,\r\n      \"UserFullName\": \"sample string 5\",\r\n      \"CategoryOrder\": 1,\r\n      \"CategoryImgUrl\": \"sample string 6\",\r\n      \"subCategoriesList\": [\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        },\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"CategoryID\": 1,\r\n      \"CategoryName\": \"sample string 2\",\r\n      \"CategoryDescription\": \"sample string 3\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.562953+00:00\",\r\n      \"Active\": true,\r\n      \"UserFullName\": \"sample string 5\",\r\n      \"CategoryOrder\": 1,\r\n      \"CategoryImgUrl\": \"sample string 6\",\r\n      \"subCategoriesList\": [\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        },\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"41055c4d-99e8-4037-aeae-f3df98233ca6"},{"name":"GetAllByCustomerIDByParams","id":"ab204eea-88cb-4943-8b00-6e4cb21da3c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Voucher/GetAllByCustomerIDByParams","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>GetAllByCustomerIDByParamsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CategoryIDsList</td><td>List&lt;Int32&gt;</td><td></td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td></td><td>True</td></tr><tr><td>DisplayChannelIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Display Channels( optional search parameter )</td><td>False</td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td>Can be used to determine when an offer can be shown from ( optional search parameter )</td><td>False</td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td>Can be used to determine when an offer can be shown to ( optional search parameter )</td><td>False</td></tr><tr><td>OfferID</td><td>Int32 (nullable)</td><td>Can be used to get only selected OfferID ( optional search parameter )</td><td>False</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Can be used to determine when an offer can be shown to ( optional search parameter )</td><td>False</td></tr><tr><td>RedemptionTypeIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Redemption Types ( optional search parameter )</td><td>False</td></tr><tr><td>SubCategoryIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Sub categories ( optional search parameter )</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>GetVoucherListOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>OfferCategories</td><td>List&lt;OfferCategory&gt;</td><td>List of Voucher categories</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>voucher</td><td>List&lt;Voucher&gt;</td><td>List of Voucher details</td></tr><tr><td><h4>OfferCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>CategoryDescription</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CategoryImgUrl</td><td>String</td><td>Voucher category Image URL</td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>CategoryOrder</td><td>Int32 (nullable)</td><td>Display Order</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>subCategoriesList</td><td>List&lt;SubCategory&gt;</td><td></td></tr><tr><td>UserFullName</td><td>String</td><td></td></tr><tr><td><h4>SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr><tr><td><h4>Voucher Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActiveOffer</td><td>Boolean</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td>Voucher category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>Voucher category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td></td></tr><tr><td>ChannelMessage</td><td>String</td><td></td></tr><tr><td>Conditions</td><td>String</td><td>Terms and condition (text format)</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Customer id linked to this voucher</td></tr><tr><td>CtcUID</td><td>String</td><td>Customer unique id linked to this voucher</td></tr><tr><td>CustomerName</td><td>String</td><td>Customer name linked to this voucher</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>Used to get the predefined Schedules and Locations</td></tr><tr><td>Description</td><td>String</td><td>Voucher short description</td></tr><tr><td>Disabled</td><td>Boolean</td><td>Voucher status (Disabled or not)</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Discount amount in £ (5 mean 5£)</td></tr><tr><td>DiscountPercentage</td><td>Double</td><td>Discount percentage (10 mean 10%)</td></tr><tr><td>DiscountType</td><td>String</td><td>The type of the discount \"P\" or \"M\" (if DiscountType = \"P\" so you find the percentage in the field \"DiscountPercentage\" else you find the discount amount in the field \"DiscountAmount\"</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td></td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td></td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Voucher end date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td></td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td></td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The URL of the large image if exist</td></tr><tr><td>Location</td><td>String</td><td>The redemption location (if the redemption voucher status = reddemed)</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>Used to set the Maximum number of Vouchers that can be redeemed by Period ( PeriodDaysByVoucher ) when the InfiniteVoucherRedemption is false</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>The Voucher can be redeemed Once Per mentioned number of days if the flag InfiniteVoucherRedemption is set to true or InfiniteVoucherRedemption is false and we have a MaxVoucherRedemption value</td></tr><tr><td>MediumImage</td><td>String</td><td>The URL of the medium image if exist</td></tr><tr><td>Message</td><td>String</td><td>Voucher long description (Text format)</td></tr><tr><td>Notes</td><td>String</td><td>Voucher notes</td></tr><tr><td>OfferID</td><td>Int32 (nullable)</td><td>Offer unique id</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>Products</td><td>List&lt;String&gt;</td><td>List of product codes affected by the discount</td></tr><tr><td>QualifiedBasketAmount</td><td>Double</td><td>List of product codes.\n            Used if the field \"VoucherTypeName\" = \"Spend\" so the basket amount must be equal or greater this amount to validate the voucher</td></tr><tr><td>QualifiedBasketProducts</td><td>List&lt;String&gt;</td><td>Used if the field \"VoucherTypeName\" = \"Linked Products\" so the basket must contain all these products to validate the voucher.</td></tr><tr><td>RandomID</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>ReactivationComment</td><td>String</td><td>Reactivation Comment</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>RedeemedBy</td><td>String</td><td>The user id who has redeem the vouccher (If the redemption voucher status = Redeemed)</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>Redemption date (if the redemption voucher status = redeemed)</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td></td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td></td></tr><tr><td>SmallImage</td><td>String</td><td>The URL of the small image if exist</td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Voucher start date</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td>Voucher sub category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>Voucher Sub category name</td></tr><tr><td>SubDescription</td><td>String</td><td></td></tr><tr><td>Title</td><td>String</td><td></td></tr><tr><td>URD</td><td>DateTime (nullable)</td><td>Voucher create date</td></tr><tr><td>Value</td><td>Double (nullable)</td><td>Value of the voucher</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>VoucherID</td><td>Int32 (nullable)</td><td>Voucher unique id</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>the type of the voucher :<br />\n            <ul>\n            <li>\n            Cash : you find the value in the field \"Value\"\n            </li>\n            <li>\n            Product : you find the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Linked Products : you find the list of products should be in the basket in the field \"QualifiedBasketProducts\" and the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Spend : you find the amount of the basket should be in the field \"QualifiedBasketAmount\" and the List of product codes affected by the discount in the field \"Products\" and the discount is :\n            <ul>\n            <li>\n            If the field \"DiscountType\" = \"P\" then you find the percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            If the field \"DiscountType\" = \"M\" then you find the amount of the discount in the field \"DiscountAmount\"\n            </li>\n            </ul>\n            </li>\n            </ul></td></tr><tr><td><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetAllByCustomerIDByParams"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"6516da74-d75e-4351-a5d7-2f243a5e71c1","name":"api/Voucher/GetAllByCustomerIDByParams Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/Voucher/GetAllByCustomerIDByParams","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>GetAllByCustomerIDByParamsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CategoryIDsList</td><td>List&lt;Int32&gt;</td><td></td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td></td><td>True</td></tr><tr><td>DisplayChannelIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Display Channels( optional search parameter )</td><td>False</td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td>Can be used to determine when an offer can be shown from ( optional search parameter )</td><td>False</td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td>Can be used to determine when an offer can be shown to ( optional search parameter )</td><td>False</td></tr><tr><td>OfferID</td><td>Int32 (nullable)</td><td>Can be used to get only selected OfferID ( optional search parameter )</td><td>False</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Can be used to determine when an offer can be shown to ( optional search parameter )</td><td>False</td></tr><tr><td>RedemptionTypeIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Redemption Types ( optional search parameter )</td><td>False</td></tr><tr><td>SubCategoryIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Sub categories ( optional search parameter )</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetVoucherListOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>OfferCategories</td><td>List&lt;OfferCategory&gt;</td><td>List of Voucher categories</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>voucher</td><td>List&lt;Voucher&gt;</td><td>List of Voucher details</td></tr><tr><td colspan=3><h4>OfferCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>CategoryDescription</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CategoryImgUrl</td><td>String</td><td>Voucher category Image URL</td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>CategoryOrder</td><td>Int32 (nullable)</td><td>Display Order</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>subCategoriesList</td><td>List&lt;SubCategory&gt;</td><td></td></tr><tr><td>UserFullName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>Voucher Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActiveOffer</td><td>Boolean</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td>Voucher category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>Voucher category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td></td></tr><tr><td>ChannelMessage</td><td>String</td><td></td></tr><tr><td>Conditions</td><td>String</td><td>Terms and condition (text format)</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Customer id linked to this voucher</td></tr><tr><td>CtcUID</td><td>String</td><td>Customer unique id linked to this voucher</td></tr><tr><td>CustomerName</td><td>String</td><td>Customer name linked to this voucher</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>Used to get the predefined Schedules and Locations</td></tr><tr><td>Description</td><td>String</td><td>Voucher short description</td></tr><tr><td>Disabled</td><td>Boolean</td><td>Voucher status (Disabled or not)</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Discount amount in £ (5 mean 5£)</td></tr><tr><td>DiscountPercentage</td><td>Double</td><td>Discount percentage (10 mean 10%)</td></tr><tr><td>DiscountType</td><td>String</td><td>The type of the discount \"P\" or \"M\" (if DiscountType = \"P\" so you find the percentage in the field \"DiscountPercentage\" else you find the discount amount in the field \"DiscountAmount\"</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td></td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td></td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Voucher end date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td></td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td></td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The URL of the large image if exist</td></tr><tr><td>Location</td><td>String</td><td>The redemption location (if the redemption voucher status = reddemed)</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>Used to set the Maximum number of Vouchers that can be redeemed by Period ( PeriodDaysByVoucher ) when the InfiniteVoucherRedemption is false</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>The Voucher can be redeemed Once Per mentioned number of days if the flag InfiniteVoucherRedemption is set to true or InfiniteVoucherRedemption is false and we have a MaxVoucherRedemption value</td></tr><tr><td>MediumImage</td><td>String</td><td>The URL of the medium image if exist</td></tr><tr><td>Message</td><td>String</td><td>Voucher long description (Text format)</td></tr><tr><td>Notes</td><td>String</td><td>Voucher notes</td></tr><tr><td>OfferID</td><td>Int32 (nullable)</td><td>Offer unique id</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>Products</td><td>List&lt;String&gt;</td><td>List of product codes affected by the discount</td></tr><tr><td>QualifiedBasketAmount</td><td>Double</td><td>List of product codes.\n            Used if the field \"VoucherTypeName\" = \"Spend\" so the basket amount must be equal or greater this amount to validate the voucher</td></tr><tr><td>QualifiedBasketProducts</td><td>List&lt;String&gt;</td><td>Used if the field \"VoucherTypeName\" = \"Linked Products\" so the basket must contain all these products to validate the voucher.</td></tr><tr><td>RandomID</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>ReactivationComment</td><td>String</td><td>Reactivation Comment</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>RedeemedBy</td><td>String</td><td>The user id who has redeem the vouccher (If the redemption voucher status = Redeemed)</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>Redemption date (if the redemption voucher status = redeemed)</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td></td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td></td></tr><tr><td>SmallImage</td><td>String</td><td>The URL of the small image if exist</td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Voucher start date</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td>Voucher sub category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>Voucher Sub category name</td></tr><tr><td>SubDescription</td><td>String</td><td></td></tr><tr><td>Title</td><td>String</td><td></td></tr><tr><td>URD</td><td>DateTime (nullable)</td><td>Voucher create date</td></tr><tr><td>Value</td><td>Double (nullable)</td><td>Value of the voucher</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>VoucherID</td><td>Int32 (nullable)</td><td>Voucher unique id</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>the type of the voucher :<br />\n            <ul>\n            <li>\n            Cash : you find the value in the field \"Value\"\n            </li>\n            <li>\n            Product : you find the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Linked Products : you find the list of products should be in the basket in the field \"QualifiedBasketProducts\" and the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Spend : you find the amount of the basket should be in the field \"QualifiedBasketAmount\" and the List of product codes affected by the discount in the field \"Products\" and the discount is :\n            <ul>\n            <li>\n            If the field \"DiscountType\" = \"P\" then you find the percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            If the field \"DiscountType\" = \"M\" then you find the amount of the discount in the field \"DiscountAmount\"\n            </li>\n            </ul>\n            </li>\n            </ul></td></tr><tr><td colspan=3><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"voucher\": [\r\n    {\r\n      \"VoucherID\": 1,\r\n      \"OfferID\": 1,\r\n      \"StartDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"Conditions\": \"sample string 1\",\r\n      \"Message\": \"sample string 2\",\r\n      \"CategoryID\": 3,\r\n      \"CategoryName\": \"sample string 4\",\r\n      \"SubCategoryID\": 1,\r\n      \"SubCategoryName\": \"sample string 5\",\r\n      \"Description\": \"sample string 6\",\r\n      \"CtcID\": 1,\r\n      \"CtcUID\": \"sample string 7\",\r\n      \"CustomerName\": \"sample string 8\",\r\n      \"Redeemed\": true,\r\n      \"RedeemedBy\": \"sample string 9\",\r\n      \"Location\": \"sample string 10\",\r\n      \"RedemptionDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"URD\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"Disabled\": true,\r\n      \"Notes\": \"sample string 12\",\r\n      \"ReactivationComment\": \"sample string 13\",\r\n      \"RandomID\": \"sample string 14\",\r\n      \"VoucherCode\": \"sample string 15\",\r\n      \"SmallImage\": \"sample string 16\",\r\n      \"MediumImage\": \"sample string 17\",\r\n      \"LargeImage\": \"sample string 18\",\r\n      \"VoucherTypeName\": \"sample string 19\",\r\n      \"Value\": 1.1,\r\n      \"Products\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"DiscountType\": \"sample string 20\",\r\n      \"DiscountAmount\": 21.1,\r\n      \"DiscountPercentage\": 22.1,\r\n      \"QualifiedBasketAmount\": 23.1,\r\n      \"QualifiedBasketProducts\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ProductKey\": \"sample string 24\",\r\n      \"Source\": \"sample string 25\",\r\n      \"InterestNodeCode\": 26,\r\n      \"ActiveOffer\": true,\r\n      \"BrandID\": 1,\r\n      \"RedemptionTypes\": [\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        },\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        }\r\n      ],\r\n      \"DisplayChannels\": [\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"ScheduleLines\": [\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"DaypartID\": 1,\r\n      \"Title\": \"sample string 28\",\r\n      \"SubDescription\": \"sample string 29\",\r\n      \"MaxIssuancePermitted\": 1,\r\n      \"IssuanceLimitPerCustomer\": 1,\r\n      \"ChannelHeadline\": \"sample string 30\",\r\n      \"ChannelMessage\": \"sample string 31\",\r\n      \"DisplayFrom\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"DisplayTo\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"InfiniteVoucherRedemption\": true,\r\n      \"MaxVoucherRedemption\": 1,\r\n      \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n      \"IssuancePointsWorth\": 33.1\r\n    },\r\n    {\r\n      \"VoucherID\": 1,\r\n      \"OfferID\": 1,\r\n      \"StartDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"Conditions\": \"sample string 1\",\r\n      \"Message\": \"sample string 2\",\r\n      \"CategoryID\": 3,\r\n      \"CategoryName\": \"sample string 4\",\r\n      \"SubCategoryID\": 1,\r\n      \"SubCategoryName\": \"sample string 5\",\r\n      \"Description\": \"sample string 6\",\r\n      \"CtcID\": 1,\r\n      \"CtcUID\": \"sample string 7\",\r\n      \"CustomerName\": \"sample string 8\",\r\n      \"Redeemed\": true,\r\n      \"RedeemedBy\": \"sample string 9\",\r\n      \"Location\": \"sample string 10\",\r\n      \"RedemptionDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"URD\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"Disabled\": true,\r\n      \"Notes\": \"sample string 12\",\r\n      \"ReactivationComment\": \"sample string 13\",\r\n      \"RandomID\": \"sample string 14\",\r\n      \"VoucherCode\": \"sample string 15\",\r\n      \"SmallImage\": \"sample string 16\",\r\n      \"MediumImage\": \"sample string 17\",\r\n      \"LargeImage\": \"sample string 18\",\r\n      \"VoucherTypeName\": \"sample string 19\",\r\n      \"Value\": 1.1,\r\n      \"Products\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"DiscountType\": \"sample string 20\",\r\n      \"DiscountAmount\": 21.1,\r\n      \"DiscountPercentage\": 22.1,\r\n      \"QualifiedBasketAmount\": 23.1,\r\n      \"QualifiedBasketProducts\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ProductKey\": \"sample string 24\",\r\n      \"Source\": \"sample string 25\",\r\n      \"InterestNodeCode\": 26,\r\n      \"ActiveOffer\": true,\r\n      \"BrandID\": 1,\r\n      \"RedemptionTypes\": [\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        },\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        }\r\n      ],\r\n      \"DisplayChannels\": [\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"ScheduleLines\": [\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"DaypartID\": 1,\r\n      \"Title\": \"sample string 28\",\r\n      \"SubDescription\": \"sample string 29\",\r\n      \"MaxIssuancePermitted\": 1,\r\n      \"IssuanceLimitPerCustomer\": 1,\r\n      \"ChannelHeadline\": \"sample string 30\",\r\n      \"ChannelMessage\": \"sample string 31\",\r\n      \"DisplayFrom\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"DisplayTo\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"InfiniteVoucherRedemption\": true,\r\n      \"MaxVoucherRedemption\": 1,\r\n      \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n      \"IssuancePointsWorth\": 33.1\r\n    }\r\n  ],\r\n  \"OfferCategories\": [\r\n    {\r\n      \"CategoryID\": 1,\r\n      \"CategoryName\": \"sample string 2\",\r\n      \"CategoryDescription\": \"sample string 3\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"Active\": true,\r\n      \"UserFullName\": \"sample string 5\",\r\n      \"CategoryOrder\": 1,\r\n      \"CategoryImgUrl\": \"sample string 6\",\r\n      \"subCategoriesList\": [\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        },\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"CategoryID\": 1,\r\n      \"CategoryName\": \"sample string 2\",\r\n      \"CategoryDescription\": \"sample string 3\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"Active\": true,\r\n      \"UserFullName\": \"sample string 5\",\r\n      \"CategoryOrder\": 1,\r\n      \"CategoryImgUrl\": \"sample string 6\",\r\n      \"subCategoriesList\": [\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        },\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"ab204eea-88cb-4943-8b00-6e4cb21da3c8"},{"name":"GetByCustomerID","id":"f15be4ab-7c04-4c66-a8a2-ea9e7d0fbda1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetByCustomerID?customerid=customerid-value","description":" <p>\n            Get list of unredeemed vouchers related to a customer\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>GetVoucherListOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>OfferCategories</td><td>List&lt;OfferCategory&gt;</td><td>List of Voucher categories</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>voucher</td><td>List&lt;Voucher&gt;</td><td>List of Voucher details</td></tr><tr><td><h4>OfferCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>CategoryDescription</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CategoryImgUrl</td><td>String</td><td>Voucher category Image URL</td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>CategoryOrder</td><td>Int32 (nullable)</td><td>Display Order</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>subCategoriesList</td><td>List&lt;SubCategory&gt;</td><td></td></tr><tr><td>UserFullName</td><td>String</td><td></td></tr><tr><td><h4>SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr><tr><td><h4>Voucher Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActiveOffer</td><td>Boolean</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td>Voucher category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>Voucher category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td></td></tr><tr><td>ChannelMessage</td><td>String</td><td></td></tr><tr><td>Conditions</td><td>String</td><td>Terms and condition (text format)</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Customer id linked to this voucher</td></tr><tr><td>CtcUID</td><td>String</td><td>Customer unique id linked to this voucher</td></tr><tr><td>CustomerName</td><td>String</td><td>Customer name linked to this voucher</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>Used to get the predefined Schedules and Locations</td></tr><tr><td>Description</td><td>String</td><td>Voucher short description</td></tr><tr><td>Disabled</td><td>Boolean</td><td>Voucher status (Disabled or not)</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Discount amount in £ (5 mean 5£)</td></tr><tr><td>DiscountPercentage</td><td>Double</td><td>Discount percentage (10 mean 10%)</td></tr><tr><td>DiscountType</td><td>String</td><td>The type of the discount \"P\" or \"M\" (if DiscountType = \"P\" so you find the percentage in the field \"DiscountPercentage\" else you find the discount amount in the field \"DiscountAmount\"</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td></td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td></td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Voucher end date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td></td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td></td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The URL of the large image if exist</td></tr><tr><td>Location</td><td>String</td><td>The redemption location (if the redemption voucher status = reddemed)</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>Used to set the Maximum number of Vouchers that can be redeemed by Period ( PeriodDaysByVoucher ) when the InfiniteVoucherRedemption is false</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>The Voucher can be redeemed Once Per mentioned number of days if the flag InfiniteVoucherRedemption is set to true or InfiniteVoucherRedemption is false and we have a MaxVoucherRedemption value</td></tr><tr><td>MediumImage</td><td>String</td><td>The URL of the medium image if exist</td></tr><tr><td>Message</td><td>String</td><td>Voucher long description (Text format)</td></tr><tr><td>Notes</td><td>String</td><td>Voucher notes</td></tr><tr><td>OfferID</td><td>Int32 (nullable)</td><td>Offer unique id</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>Products</td><td>List&lt;String&gt;</td><td>List of product codes affected by the discount</td></tr><tr><td>QualifiedBasketAmount</td><td>Double</td><td>List of product codes.\n            Used if the field \"VoucherTypeName\" = \"Spend\" so the basket amount must be equal or greater this amount to validate the voucher</td></tr><tr><td>QualifiedBasketProducts</td><td>List&lt;String&gt;</td><td>Used if the field \"VoucherTypeName\" = \"Linked Products\" so the basket must contain all these products to validate the voucher.</td></tr><tr><td>RandomID</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>ReactivationComment</td><td>String</td><td>Reactivation Comment</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>RedeemedBy</td><td>String</td><td>The user id who has redeem the vouccher (If the redemption voucher status = Redeemed)</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>Redemption date (if the redemption voucher status = redeemed)</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td></td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td></td></tr><tr><td>SmallImage</td><td>String</td><td>The URL of the small image if exist</td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Voucher start date</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td>Voucher sub category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>Voucher Sub category name</td></tr><tr><td>SubDescription</td><td>String</td><td></td></tr><tr><td>Title</td><td>String</td><td></td></tr><tr><td>URD</td><td>DateTime (nullable)</td><td>Voucher create date</td></tr><tr><td>Value</td><td>Double (nullable)</td><td>Value of the voucher</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>VoucherID</td><td>Int32 (nullable)</td><td>Voucher unique id</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>the type of the voucher :<br />\n            <ul>\n            <li>\n            Cash : you find the value in the field \"Value\"\n            </li>\n            <li>\n            Product : you find the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Linked Products : you find the list of products should be in the basket in the field \"QualifiedBasketProducts\" and the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Spend : you find the amount of the basket should be in the field \"QualifiedBasketAmount\" and the List of product codes affected by the discount in the field \"Products\" and the discount is :\n            <ul>\n            <li>\n            If the field \"DiscountType\" = \"P\" then you find the percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            If the field \"DiscountType\" = \"M\" then you find the amount of the discount in the field \"DiscountAmount\"\n            </li>\n            </ul>\n            </li>\n            </ul></td></tr><tr><td><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetByCustomerID"],"host":["{{Host}}"],"query":[{"key":"customerid","value":"customerid-value"}],"variable":[]}},"response":[{"id":"4f6f7846-88e9-4e50-b3d9-a6a13ce7b506","name":"api/Voucher/GetByCustomerID?customerid={customerid} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Voucher/GetByCustomerID?customerid=customerid-value","protocol":"https","host":["{{Host}}"],"path":["api","Voucher","GetByCustomerID"],"query":[{"key":"customerid","value":"customerid-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get list of unredeemed vouchers related to a customer\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetVoucherListOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>OfferCategories</td><td>List&lt;OfferCategory&gt;</td><td>List of Voucher categories</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>voucher</td><td>List&lt;Voucher&gt;</td><td>List of Voucher details</td></tr><tr><td colspan=3><h4>OfferCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>CategoryDescription</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CategoryImgUrl</td><td>String</td><td>Voucher category Image URL</td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>CategoryOrder</td><td>Int32 (nullable)</td><td>Display Order</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>subCategoriesList</td><td>List&lt;SubCategory&gt;</td><td></td></tr><tr><td>UserFullName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>Voucher Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>ActiveOffer</td><td>Boolean</td><td></td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td>Voucher category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>Voucher category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td></td></tr><tr><td>ChannelMessage</td><td>String</td><td></td></tr><tr><td>Conditions</td><td>String</td><td>Terms and condition (text format)</td></tr><tr><td>CtcID</td><td>Int32 (nullable)</td><td>Customer id linked to this voucher</td></tr><tr><td>CtcUID</td><td>String</td><td>Customer unique id linked to this voucher</td></tr><tr><td>CustomerName</td><td>String</td><td>Customer name linked to this voucher</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>Used to get the predefined Schedules and Locations</td></tr><tr><td>Description</td><td>String</td><td>Voucher short description</td></tr><tr><td>Disabled</td><td>Boolean</td><td>Voucher status (Disabled or not)</td></tr><tr><td>DiscountAmount</td><td>Double</td><td>Discount amount in £ (5 mean 5£)</td></tr><tr><td>DiscountPercentage</td><td>Double</td><td>Discount percentage (10 mean 10%)</td></tr><tr><td>DiscountType</td><td>String</td><td>The type of the discount \"P\" or \"M\" (if DiscountType = \"P\" so you find the percentage in the field \"DiscountPercentage\" else you find the discount amount in the field \"DiscountAmount\"</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td></td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td></td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td></td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>Voucher end date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td></td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td></td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The URL of the large image if exist</td></tr><tr><td>Location</td><td>String</td><td>The redemption location (if the redemption voucher status = reddemed)</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td></td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>Used to set the Maximum number of Vouchers that can be redeemed by Period ( PeriodDaysByVoucher ) when the InfiniteVoucherRedemption is false</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>The Voucher can be redeemed Once Per mentioned number of days if the flag InfiniteVoucherRedemption is set to true or InfiniteVoucherRedemption is false and we have a MaxVoucherRedemption value</td></tr><tr><td>MediumImage</td><td>String</td><td>The URL of the medium image if exist</td></tr><tr><td>Message</td><td>String</td><td>Voucher long description (Text format)</td></tr><tr><td>Notes</td><td>String</td><td>Voucher notes</td></tr><tr><td>OfferID</td><td>Int32 (nullable)</td><td>Offer unique id</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>Products</td><td>List&lt;String&gt;</td><td>List of product codes affected by the discount</td></tr><tr><td>QualifiedBasketAmount</td><td>Double</td><td>List of product codes.\n            Used if the field \"VoucherTypeName\" = \"Spend\" so the basket amount must be equal or greater this amount to validate the voucher</td></tr><tr><td>QualifiedBasketProducts</td><td>List&lt;String&gt;</td><td>Used if the field \"VoucherTypeName\" = \"Linked Products\" so the basket must contain all these products to validate the voucher.</td></tr><tr><td>RandomID</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>ReactivationComment</td><td>String</td><td>Reactivation Comment</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>RedeemedBy</td><td>String</td><td>The user id who has redeem the vouccher (If the redemption voucher status = Redeemed)</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>Redemption date (if the redemption voucher status = redeemed)</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td></td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td></td></tr><tr><td>SmallImage</td><td>String</td><td>The URL of the small image if exist</td></tr><tr><td>Source</td><td>String</td><td></td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Voucher start date</td></tr><tr><td>SubCategoryID</td><td>Int32 (nullable)</td><td>Voucher sub category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>Voucher Sub category name</td></tr><tr><td>SubDescription</td><td>String</td><td></td></tr><tr><td>Title</td><td>String</td><td></td></tr><tr><td>URD</td><td>DateTime (nullable)</td><td>Voucher create date</td></tr><tr><td>Value</td><td>Double (nullable)</td><td>Value of the voucher</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr><tr><td>VoucherID</td><td>Int32 (nullable)</td><td>Voucher unique id</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>the type of the voucher :<br />\n            <ul>\n            <li>\n            Cash : you find the value in the field \"Value\"\n            </li>\n            <li>\n            Product : you find the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Linked Products : you find the list of products should be in the basket in the field \"QualifiedBasketProducts\" and the List of product codes affected by the discount in the field \"Products\" and percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            Spend : you find the amount of the basket should be in the field \"QualifiedBasketAmount\" and the List of product codes affected by the discount in the field \"Products\" and the discount is :\n            <ul>\n            <li>\n            If the field \"DiscountType\" = \"P\" then you find the percentage of the discount in the field \"DiscountPercentage\"\n            </li>\n            <li>\n            If the field \"DiscountType\" = \"M\" then you find the amount of the discount in the field \"DiscountAmount\"\n            </li>\n            </ul>\n            </li>\n            </ul></td></tr><tr><td colspan=3><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"voucher\": [\r\n    {\r\n      \"VoucherID\": 1,\r\n      \"OfferID\": 1,\r\n      \"StartDate\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"Conditions\": \"sample string 1\",\r\n      \"Message\": \"sample string 2\",\r\n      \"CategoryID\": 3,\r\n      \"CategoryName\": \"sample string 4\",\r\n      \"SubCategoryID\": 1,\r\n      \"SubCategoryName\": \"sample string 5\",\r\n      \"Description\": \"sample string 6\",\r\n      \"CtcID\": 1,\r\n      \"CtcUID\": \"sample string 7\",\r\n      \"CustomerName\": \"sample string 8\",\r\n      \"Redeemed\": true,\r\n      \"RedeemedBy\": \"sample string 9\",\r\n      \"Location\": \"sample string 10\",\r\n      \"RedemptionDate\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"URD\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"Disabled\": true,\r\n      \"Notes\": \"sample string 12\",\r\n      \"ReactivationComment\": \"sample string 13\",\r\n      \"RandomID\": \"sample string 14\",\r\n      \"VoucherCode\": \"sample string 15\",\r\n      \"SmallImage\": \"sample string 16\",\r\n      \"MediumImage\": \"sample string 17\",\r\n      \"LargeImage\": \"sample string 18\",\r\n      \"VoucherTypeName\": \"sample string 19\",\r\n      \"Value\": 1.1,\r\n      \"Products\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"DiscountType\": \"sample string 20\",\r\n      \"DiscountAmount\": 21.1,\r\n      \"DiscountPercentage\": 22.1,\r\n      \"QualifiedBasketAmount\": 23.1,\r\n      \"QualifiedBasketProducts\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ProductKey\": \"sample string 24\",\r\n      \"Source\": \"sample string 25\",\r\n      \"InterestNodeCode\": 26,\r\n      \"ActiveOffer\": true,\r\n      \"BrandID\": 1,\r\n      \"RedemptionTypes\": [\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        },\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        }\r\n      ],\r\n      \"DisplayChannels\": [\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"ScheduleLines\": [\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"DaypartID\": 1,\r\n      \"Title\": \"sample string 28\",\r\n      \"SubDescription\": \"sample string 29\",\r\n      \"MaxIssuancePermitted\": 1,\r\n      \"IssuanceLimitPerCustomer\": 1,\r\n      \"ChannelHeadline\": \"sample string 30\",\r\n      \"ChannelMessage\": \"sample string 31\",\r\n      \"DisplayFrom\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"DisplayTo\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"InfiniteVoucherRedemption\": true,\r\n      \"MaxVoucherRedemption\": 1,\r\n      \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n      \"IssuancePointsWorth\": 33.1\r\n    },\r\n    {\r\n      \"VoucherID\": 1,\r\n      \"OfferID\": 1,\r\n      \"StartDate\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"Conditions\": \"sample string 1\",\r\n      \"Message\": \"sample string 2\",\r\n      \"CategoryID\": 3,\r\n      \"CategoryName\": \"sample string 4\",\r\n      \"SubCategoryID\": 1,\r\n      \"SubCategoryName\": \"sample string 5\",\r\n      \"Description\": \"sample string 6\",\r\n      \"CtcID\": 1,\r\n      \"CtcUID\": \"sample string 7\",\r\n      \"CustomerName\": \"sample string 8\",\r\n      \"Redeemed\": true,\r\n      \"RedeemedBy\": \"sample string 9\",\r\n      \"Location\": \"sample string 10\",\r\n      \"RedemptionDate\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"URD\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"Disabled\": true,\r\n      \"Notes\": \"sample string 12\",\r\n      \"ReactivationComment\": \"sample string 13\",\r\n      \"RandomID\": \"sample string 14\",\r\n      \"VoucherCode\": \"sample string 15\",\r\n      \"SmallImage\": \"sample string 16\",\r\n      \"MediumImage\": \"sample string 17\",\r\n      \"LargeImage\": \"sample string 18\",\r\n      \"VoucherTypeName\": \"sample string 19\",\r\n      \"Value\": 1.1,\r\n      \"Products\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"DiscountType\": \"sample string 20\",\r\n      \"DiscountAmount\": 21.1,\r\n      \"DiscountPercentage\": 22.1,\r\n      \"QualifiedBasketAmount\": 23.1,\r\n      \"QualifiedBasketProducts\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ProductKey\": \"sample string 24\",\r\n      \"Source\": \"sample string 25\",\r\n      \"InterestNodeCode\": 26,\r\n      \"ActiveOffer\": true,\r\n      \"BrandID\": 1,\r\n      \"RedemptionTypes\": [\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        },\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        }\r\n      ],\r\n      \"DisplayChannels\": [\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"ScheduleLines\": [\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"DaypartID\": 1,\r\n      \"Title\": \"sample string 28\",\r\n      \"SubDescription\": \"sample string 29\",\r\n      \"MaxIssuancePermitted\": 1,\r\n      \"IssuanceLimitPerCustomer\": 1,\r\n      \"ChannelHeadline\": \"sample string 30\",\r\n      \"ChannelMessage\": \"sample string 31\",\r\n      \"DisplayFrom\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"DisplayTo\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"InfiniteVoucherRedemption\": true,\r\n      \"MaxVoucherRedemption\": 1,\r\n      \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n      \"IssuancePointsWorth\": 33.1\r\n    }\r\n  ],\r\n  \"OfferCategories\": [\r\n    {\r\n      \"CategoryID\": 1,\r\n      \"CategoryName\": \"sample string 2\",\r\n      \"CategoryDescription\": \"sample string 3\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"Active\": true,\r\n      \"UserFullName\": \"sample string 5\",\r\n      \"CategoryOrder\": 1,\r\n      \"CategoryImgUrl\": \"sample string 6\",\r\n      \"subCategoriesList\": [\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        },\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        }\r\n      ]\r\n    },\r\n    {\r\n      \"CategoryID\": 1,\r\n      \"CategoryName\": \"sample string 2\",\r\n      \"CategoryDescription\": \"sample string 3\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n      \"Active\": true,\r\n      \"UserFullName\": \"sample string 5\",\r\n      \"CategoryOrder\": 1,\r\n      \"CategoryImgUrl\": \"sample string 6\",\r\n      \"subCategoriesList\": [\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        },\r\n        {\r\n          \"SubCategoryID\": 1,\r\n          \"SubCategoryName\": \"sample string 2\",\r\n          \"CategoryID\": 3\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"f15be4ab-7c04-4c66-a8a2-ea9e7d0fbda1"},{"name":"GetCategoriesAndSubCategories","id":"3083b170-d665-447d-b628-de1bad2449d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetCategoriesAndSubCategories","description":" <p>\n            Get Categories\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>OfferCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>CategoryDescription</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CategoryImgUrl</td><td>String</td><td>Voucher category Image URL</td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>CategoryOrder</td><td>Int32 (nullable)</td><td>Display Order</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>subCategoriesList</td><td>List&lt;SubCategory&gt;</td><td></td></tr><tr><td>UserFullName</td><td>String</td><td></td></tr><tr><td><h4>SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetCategoriesAndSubCategories"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"10e11fe9-d829-4231-a1ec-9c6a9d2e10bb","name":"api/Voucher/GetCategoriesAndSubCategories Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetCategoriesAndSubCategories","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Categories\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>OfferCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Active</td><td>Boolean</td><td></td></tr><tr><td>CategoryDescription</td><td>String</td><td></td></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>CategoryImgUrl</td><td>String</td><td>Voucher category Image URL</td></tr><tr><td>CategoryName</td><td>String</td><td></td></tr><tr><td>CategoryOrder</td><td>Int32 (nullable)</td><td>Display Order</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td></tr><tr><td>subCategoriesList</td><td>List&lt;SubCategory&gt;</td><td></td></tr><tr><td>UserFullName</td><td>String</td><td></td></tr><tr><td colspan=3><h4>SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"CategoryID\": 1,\r\n    \"CategoryName\": \"sample string 2\",\r\n    \"CategoryDescription\": \"sample string 3\",\r\n    \"CreateDate\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n    \"Active\": true,\r\n    \"UserFullName\": \"sample string 5\",\r\n    \"CategoryOrder\": 1,\r\n    \"CategoryImgUrl\": \"sample string 6\",\r\n    \"subCategoriesList\": [\r\n      {\r\n        \"SubCategoryID\": 1,\r\n        \"SubCategoryName\": \"sample string 2\",\r\n        \"CategoryID\": 3\r\n      },\r\n      {\r\n        \"SubCategoryID\": 1,\r\n        \"SubCategoryName\": \"sample string 2\",\r\n        \"CategoryID\": 3\r\n      }\r\n    ]\r\n  },\r\n  {\r\n    \"CategoryID\": 1,\r\n    \"CategoryName\": \"sample string 2\",\r\n    \"CategoryDescription\": \"sample string 3\",\r\n    \"CreateDate\": \"2026-03-25T07:30:10.5785698+00:00\",\r\n    \"Active\": true,\r\n    \"UserFullName\": \"sample string 5\",\r\n    \"CategoryOrder\": 1,\r\n    \"CategoryImgUrl\": \"sample string 6\",\r\n    \"subCategoriesList\": [\r\n      {\r\n        \"SubCategoryID\": 1,\r\n        \"SubCategoryName\": \"sample string 2\",\r\n        \"CategoryID\": 3\r\n      },\r\n      {\r\n        \"SubCategoryID\": 1,\r\n        \"SubCategoryName\": \"sample string 2\",\r\n        \"CategoryID\": 3\r\n      }\r\n    ]\r\n  }\r\n]"}],"_postman_id":"3083b170-d665-447d-b628-de1bad2449d1"},{"name":"GetCustomersPerOfferByParams","id":"39359511-ba85-4fc4-9a2a-7ddf86c85de5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetCustomersPerOfferByParams","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>CustomersPerOfferByParamsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>customersList</td><td>List&lt;CustomersList&gt;</td><td></td></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td><h4>CustomersList Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetCustomersPerOfferByParams"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"1e285732-42e0-4665-8d5f-503ac1fd7969","name":"api/Voucher/GetCustomersPerOfferByParams Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetCustomersPerOfferByParams","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomersPerOfferByParamsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>customersList</td><td>List&lt;CustomersList&gt;</td><td></td></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td colspan=3><h4>CustomersList Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"customersList\": [\r\n    {\r\n      \"CtcID\": 1,\r\n      \"OriginID\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"CtcID\": 1,\r\n      \"OriginID\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"39359511-ba85-4fc4-9a2a-7ddf86c85de5"},{"name":"GetCustomersPerOfferByParams","id":"4108446e-445f-4d81-99c2-2c6c082c00e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OfferID\": 1,\r\n  \"StartDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n  \"EndDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n  \"SourceID\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Voucher/GetCustomersPerOfferByParams","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>CustomersPerOfferByParamsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>OfferID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>OriginID will be returned only if SourceID is provided</td><td>False</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>CustomersPerOfferByParamsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>customersList</td><td>List&lt;CustomersList&gt;</td><td></td></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td><h4>CustomersList Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetCustomersPerOfferByParams"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"5b489c20-4544-400f-ac56-010ab4638f23","name":"api/Voucher/GetCustomersPerOfferByParams Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OfferID\": 1,\r\n  \"StartDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n  \"EndDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n  \"SourceID\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Voucher/GetCustomersPerOfferByParams","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>CustomersPerOfferByParamsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>OfferID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>OriginID will be returned only if SourceID is provided</td><td>False</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>CustomersPerOfferByParamsOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>customersList</td><td>List&lt;CustomersList&gt;</td><td></td></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td colspan=3><h4>CustomersList Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>OriginID</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"customersList\": [\r\n    {\r\n      \"CtcID\": 1,\r\n      \"OriginID\": \"sample string 2\"\r\n    },\r\n    {\r\n      \"CtcID\": 1,\r\n      \"OriginID\": \"sample string 2\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"4108446e-445f-4d81-99c2-2c6c082c00e6"},{"name":"GetOffersByParams","id":"706cdd75-7f37-4226-9f5b-7f061c0f771f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetOffersByParams","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>Offers Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>offers</td><td>List&lt;OfferOutput&gt;</td><td></td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td><h4>OfferOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td>The Category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>The Category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td>The Channel Headline</td></tr><tr><td>ChannelMessage</td><td>String</td><td>The Channel Message</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>The Creation Date</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>The DaypartID if we use a predefined Daypart</td></tr><tr><td>Description</td><td>String</td><td>The Description of the Offer</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td>The Offer Display Channels</td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td>Can be used to determine when an offer can be shown from</td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td>Can be used to determine when an offer can be shown to</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>The Expiry Date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not\n            Used for : Non Generic Offer</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td>The Interest NodeCode</td></tr><tr><td>InterestNodes</td><td>List&lt;InterestNode&gt;</td><td>The Interest nodes of the Offer</td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td>Control the maximum number of vouchers that can be issued per customer</td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The Large Image</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td>Control how many times the voucher can be issued</td></tr><tr><td>MaxRedemptionPermitted</td><td>Int32 (nullable)</td><td>Control how many times the Offer can be redeemed\n            Used for : Generic Offer</td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>When the InfiniteVoucherRedemption is false, it represents the Maximum number of Vouchers that can be redeemed within a specific Number Of Days ( MaxVoucherRedemptionOncePerNumberOfDays ) \n            Used for : Non Generic Offer</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>Set the maximum number of allowed redemptions per mentioned number of days When: ( InfiniteVoucherRedemption is TRUE ) OR ( InfiniteVoucherRedemption is FALSE and we have a MaxVoucherRedemption value )\n            Used for : Non Generic Offer</td></tr><tr><td>MediumImage</td><td>String</td><td>The Medium Image</td></tr><tr><td>OfferCode</td><td>String</td><td>The OfferCode</td></tr><tr><td>OfferID</td><td>Int32</td><td>The ID</td></tr><tr><td>OfferTypeID</td><td>Int32</td><td>The Offer Type ID of the Offer : Specific ( 1 ) / Generic ( 2 )</td></tr><tr><td>OfferTypeName</td><td>String</td><td>The Offer Type Name</td></tr><tr><td>OneRedemptionPerCustomer</td><td>Boolean</td><td>Control the maximum number of Offers that can be redeemed per customer\n            Used for : Generic Offer</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>RedemptionLocations</td><td>List&lt;Location&gt;</td><td>The Offer Redemption Locations</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td>The Offer Redemption Types</td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td>The Schedule of the Offer</td></tr><tr><td>SmallImage</td><td>String</td><td>The Small Image</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>The Start Date</td></tr><tr><td>SubCategoryID</td><td>Int32</td><td>The Sub-Category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>The Sub-Category name</td></tr><tr><td>SubDescription</td><td>String</td><td>The SubDescription of the Offer</td></tr><tr><td>Title</td><td>String</td><td>The Title</td></tr><tr><td>VoucherTermsCondition</td><td>String</td><td>The Voucher Terms and Conditions</td></tr><tr><td>VoucherText</td><td>String</td><td>The Voucher Text</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>The Voucher Type</td></tr><tr><td>VoucherValue</td><td>Double (nullable)</td><td>The Voucher Value</td></tr><tr><td><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td><h4>InterestNode Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>InterestNodeName</td><td>String</td><td></td></tr><tr><td>NodeCode</td><td>Int32</td><td></td></tr><tr><td><h4>Location Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsGeneric</td><td>Boolean</td><td></td></tr><tr><td>LocationEmailAddress</td><td>String</td><td></td></tr><tr><td>LocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>LocationName</td><td>String</td><td>Name of locations</td></tr><tr><td>LocationNodecode</td><td>Int32 (nullable)</td><td></td></tr><tr><td>OriginLocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>Region unique identifier</td></tr><tr><td>RegionName</td><td>String</td><td>Name of the region</td></tr><tr><td>Suspended</td><td>Boolean</td><td>Suspension status</td></tr><tr><td><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetOffersByParams"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"1762fbcd-7405-4799-b84e-63a67e517a87","name":"api/Voucher/GetOffersByParams Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetOffersByParams","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>Offers Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>offers</td><td>List&lt;OfferOutput&gt;</td><td></td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td colspan=3><h4>OfferOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td>The Category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>The Category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td>The Channel Headline</td></tr><tr><td>ChannelMessage</td><td>String</td><td>The Channel Message</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>The Creation Date</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>The DaypartID if we use a predefined Daypart</td></tr><tr><td>Description</td><td>String</td><td>The Description of the Offer</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td>The Offer Display Channels</td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td>Can be used to determine when an offer can be shown from</td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td>Can be used to determine when an offer can be shown to</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>The Expiry Date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not\n            Used for : Non Generic Offer</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td>The Interest NodeCode</td></tr><tr><td>InterestNodes</td><td>List&lt;InterestNode&gt;</td><td>The Interest nodes of the Offer</td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td>Control the maximum number of vouchers that can be issued per customer</td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The Large Image</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td>Control how many times the voucher can be issued</td></tr><tr><td>MaxRedemptionPermitted</td><td>Int32 (nullable)</td><td>Control how many times the Offer can be redeemed\n            Used for : Generic Offer</td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>When the InfiniteVoucherRedemption is false, it represents the Maximum number of Vouchers that can be redeemed within a specific Number Of Days ( MaxVoucherRedemptionOncePerNumberOfDays ) \n            Used for : Non Generic Offer</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>Set the maximum number of allowed redemptions per mentioned number of days When: ( InfiniteVoucherRedemption is TRUE ) OR ( InfiniteVoucherRedemption is FALSE and we have a MaxVoucherRedemption value )\n            Used for : Non Generic Offer</td></tr><tr><td>MediumImage</td><td>String</td><td>The Medium Image</td></tr><tr><td>OfferCode</td><td>String</td><td>The OfferCode</td></tr><tr><td>OfferID</td><td>Int32</td><td>The ID</td></tr><tr><td>OfferTypeID</td><td>Int32</td><td>The Offer Type ID of the Offer : Specific ( 1 ) / Generic ( 2 )</td></tr><tr><td>OfferTypeName</td><td>String</td><td>The Offer Type Name</td></tr><tr><td>OneRedemptionPerCustomer</td><td>Boolean</td><td>Control the maximum number of Offers that can be redeemed per customer\n            Used for : Generic Offer</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>RedemptionLocations</td><td>List&lt;Location&gt;</td><td>The Offer Redemption Locations</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td>The Offer Redemption Types</td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td>The Schedule of the Offer</td></tr><tr><td>SmallImage</td><td>String</td><td>The Small Image</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>The Start Date</td></tr><tr><td>SubCategoryID</td><td>Int32</td><td>The Sub-Category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>The Sub-Category name</td></tr><tr><td>SubDescription</td><td>String</td><td>The SubDescription of the Offer</td></tr><tr><td>Title</td><td>String</td><td>The Title</td></tr><tr><td>VoucherTermsCondition</td><td>String</td><td>The Voucher Terms and Conditions</td></tr><tr><td>VoucherText</td><td>String</td><td>The Voucher Text</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>The Voucher Type</td></tr><tr><td>VoucherValue</td><td>Double (nullable)</td><td>The Voucher Value</td></tr><tr><td colspan=3><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>InterestNode Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>InterestNodeName</td><td>String</td><td></td></tr><tr><td>NodeCode</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Location Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsGeneric</td><td>Boolean</td><td></td></tr><tr><td>LocationEmailAddress</td><td>String</td><td></td></tr><tr><td>LocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>LocationName</td><td>String</td><td>Name of locations</td></tr><tr><td>LocationNodecode</td><td>Int32 (nullable)</td><td></td></tr><tr><td>OriginLocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>Region unique identifier</td></tr><tr><td>RegionName</td><td>String</td><td>Name of the region</td></tr><tr><td>Suspended</td><td>Boolean</td><td>Suspension status</td></tr><tr><td colspan=3><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"offers\": [\r\n    {\r\n      \"OfferID\": 1,\r\n      \"Title\": \"sample string 2\",\r\n      \"Description\": \"sample string 3\",\r\n      \"SubDescription\": \"sample string 4\",\r\n      \"OfferCode\": \"sample string 5\",\r\n      \"StartDate\": \"2026-03-25T07:30:10.6098129+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:10.6098129+00:00\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.6098129+00:00\",\r\n      \"CategoryName\": \"sample string 6\",\r\n      \"CategoryID\": 7,\r\n      \"SubCategoryName\": \"sample string 8\",\r\n      \"SubCategoryID\": 9,\r\n      \"VoucherTypeName\": \"sample string 10\",\r\n      \"VoucherValue\": 1.1,\r\n      \"VoucherText\": \"sample string 11\",\r\n      \"VoucherTermsCondition\": \"sample string 12\",\r\n      \"ChannelHeadline\": \"sample string 13\",\r\n      \"ChannelMessage\": \"sample string 14\",\r\n      \"SmallImage\": \"sample string 15\",\r\n      \"MediumImage\": \"sample string 16\",\r\n      \"LargeImage\": \"sample string 17\",\r\n      \"InterestNodeCode\": 18,\r\n      \"ProductKey\": \"sample string 19\",\r\n      \"DisplayFrom\": \"2026-03-25T07:30:10.6098129+00:00\",\r\n      \"DisplayTo\": \"2026-03-25T07:30:10.6098129+00:00\",\r\n      \"DaypartID\": 1,\r\n      \"ScheduleLines\": [\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"InterestNodes\": [\r\n        {\r\n          \"<NodeCode>k__BackingField\": 1,\r\n          \"<InterestNodeName>k__BackingField\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"<NodeCode>k__BackingField\": 1,\r\n          \"<InterestNodeName>k__BackingField\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"RedemptionTypes\": [\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        },\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        }\r\n      ],\r\n      \"DisplayChannels\": [\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"RedemptionLocations\": [\r\n        {\r\n          \"LocationID\": \"sample string 1\",\r\n          \"LocationName\": \"sample string 2\",\r\n          \"Suspended\": true,\r\n          \"OriginLocationID\": \"sample string 4\",\r\n          \"RegionID\": 1,\r\n          \"RegionName\": \"sample string 5\",\r\n          \"LocationEmailAddress\": \"sample string 8\",\r\n          \"LocationNodecode\": 1,\r\n          \"IsGeneric\": true\r\n        },\r\n        {\r\n          \"LocationID\": \"sample string 1\",\r\n          \"LocationName\": \"sample string 2\",\r\n          \"Suspended\": true,\r\n          \"OriginLocationID\": \"sample string 4\",\r\n          \"RegionID\": 1,\r\n          \"RegionName\": \"sample string 5\",\r\n          \"LocationEmailAddress\": \"sample string 8\",\r\n          \"LocationNodecode\": 1,\r\n          \"IsGeneric\": true\r\n        }\r\n      ],\r\n      \"MaxIssuancePermitted\": 1,\r\n      \"IssuanceLimitPerCustomer\": 1,\r\n      \"MaxRedemptionPermitted\": 1,\r\n      \"OneRedemptionPerCustomer\": true,\r\n      \"InfiniteVoucherRedemption\": true,\r\n      \"MaxVoucherRedemption\": 1,\r\n      \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n      \"OfferTypeID\": 22,\r\n      \"OfferTypeName\": \"sample string 23\",\r\n      \"IssuancePointsWorth\": 24.1\r\n    },\r\n    {\r\n      \"OfferID\": 1,\r\n      \"Title\": \"sample string 2\",\r\n      \"Description\": \"sample string 3\",\r\n      \"SubDescription\": \"sample string 4\",\r\n      \"OfferCode\": \"sample string 5\",\r\n      \"StartDate\": \"2026-03-25T07:30:10.6098129+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:10.6098129+00:00\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.6098129+00:00\",\r\n      \"CategoryName\": \"sample string 6\",\r\n      \"CategoryID\": 7,\r\n      \"SubCategoryName\": \"sample string 8\",\r\n      \"SubCategoryID\": 9,\r\n      \"VoucherTypeName\": \"sample string 10\",\r\n      \"VoucherValue\": 1.1,\r\n      \"VoucherText\": \"sample string 11\",\r\n      \"VoucherTermsCondition\": \"sample string 12\",\r\n      \"ChannelHeadline\": \"sample string 13\",\r\n      \"ChannelMessage\": \"sample string 14\",\r\n      \"SmallImage\": \"sample string 15\",\r\n      \"MediumImage\": \"sample string 16\",\r\n      \"LargeImage\": \"sample string 17\",\r\n      \"InterestNodeCode\": 18,\r\n      \"ProductKey\": \"sample string 19\",\r\n      \"DisplayFrom\": \"2026-03-25T07:30:10.6098129+00:00\",\r\n      \"DisplayTo\": \"2026-03-25T07:30:10.6098129+00:00\",\r\n      \"DaypartID\": 1,\r\n      \"ScheduleLines\": [\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"InterestNodes\": [\r\n        {\r\n          \"<NodeCode>k__BackingField\": 1,\r\n          \"<InterestNodeName>k__BackingField\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"<NodeCode>k__BackingField\": 1,\r\n          \"<InterestNodeName>k__BackingField\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"RedemptionTypes\": [\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        },\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        }\r\n      ],\r\n      \"DisplayChannels\": [\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"RedemptionLocations\": [\r\n        {\r\n          \"LocationID\": \"sample string 1\",\r\n          \"LocationName\": \"sample string 2\",\r\n          \"Suspended\": true,\r\n          \"OriginLocationID\": \"sample string 4\",\r\n          \"RegionID\": 1,\r\n          \"RegionName\": \"sample string 5\",\r\n          \"LocationEmailAddress\": \"sample string 8\",\r\n          \"LocationNodecode\": 1,\r\n          \"IsGeneric\": true\r\n        },\r\n        {\r\n          \"LocationID\": \"sample string 1\",\r\n          \"LocationName\": \"sample string 2\",\r\n          \"Suspended\": true,\r\n          \"OriginLocationID\": \"sample string 4\",\r\n          \"RegionID\": 1,\r\n          \"RegionName\": \"sample string 5\",\r\n          \"LocationEmailAddress\": \"sample string 8\",\r\n          \"LocationNodecode\": 1,\r\n          \"IsGeneric\": true\r\n        }\r\n      ],\r\n      \"MaxIssuancePermitted\": 1,\r\n      \"IssuanceLimitPerCustomer\": 1,\r\n      \"MaxRedemptionPermitted\": 1,\r\n      \"OneRedemptionPerCustomer\": true,\r\n      \"InfiniteVoucherRedemption\": true,\r\n      \"MaxVoucherRedemption\": 1,\r\n      \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n      \"OfferTypeID\": 22,\r\n      \"OfferTypeName\": \"sample string 23\",\r\n      \"IssuancePointsWorth\": 24.1\r\n    }\r\n  ]\r\n}"}],"_postman_id":"706cdd75-7f37-4226-9f5b-7f061c0f771f"},{"name":"GetOffersByParams","id":"5c42452c-2391-4c60-b608-9265caa8154e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OfferCode\": \"sample string 1\",\r\n  \"StartDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n  \"CategoryIDsList\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"SubCategoryIDsList\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"RedemptionTypeIDsList\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"DisplayChannelIDsList\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"VoucherTypeIDsList\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"DisplayFrom\": \"2026-03-25T07:30:10.699494+00:00\",\r\n  \"RedemptionLocationID\": 1,\r\n  \"OnlyActiveOffers\": true\r\n}"},"url":"https://{{Host}}/api/Voucher/GetOffersByParams","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>OfferByParamsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CategoryIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided categories ( optional search parameter )</td><td>False</td></tr><tr><td>DisplayChannelIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Display Channels( optional search parameter )</td><td>False</td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td>Get the offers the their display Date is greated than the provided date ( optional search parameter )</td><td>False</td></tr><tr><td>OfferCode</td><td>String</td><td>Get the offers that matches the provided Offer Code ( optional search parameter )</td><td>False</td></tr><tr><td>OnlyActiveOffers</td><td>Boolean</td><td>Expired and paused offers will be excluded where the value is true ( optional search parameter )</td><td>False</td></tr><tr><td>RedemptionLocationID</td><td>Int32 (nullable)</td><td>Get the offers that can be redeemed in the provided Location ID ( optional search parameter )</td><td>False</td></tr><tr><td>RedemptionTypeIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Redemption Types ( optional search parameter )</td><td>False</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Get the offers the their Start Date is greated than the provided date ( optional search parameter )</td><td>False</td></tr><tr><td>SubCategoryIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Sub categories ( optional search parameter )</td><td>False</td></tr><tr><td>VoucherTypeIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Voucher Types ( optional search parameter )</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>Offers Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>offers</td><td>List&lt;OfferOutput&gt;</td><td></td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td><h4>OfferOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td>The Category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>The Category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td>The Channel Headline</td></tr><tr><td>ChannelMessage</td><td>String</td><td>The Channel Message</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>The Creation Date</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>The DaypartID if we use a predefined Daypart</td></tr><tr><td>Description</td><td>String</td><td>The Description of the Offer</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td>The Offer Display Channels</td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td>Can be used to determine when an offer can be shown from</td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td>Can be used to determine when an offer can be shown to</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>The Expiry Date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not\n            Used for : Non Generic Offer</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td>The Interest NodeCode</td></tr><tr><td>InterestNodes</td><td>List&lt;InterestNode&gt;</td><td>The Interest nodes of the Offer</td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td>Control the maximum number of vouchers that can be issued per customer</td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The Large Image</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td>Control how many times the voucher can be issued</td></tr><tr><td>MaxRedemptionPermitted</td><td>Int32 (nullable)</td><td>Control how many times the Offer can be redeemed\n            Used for : Generic Offer</td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>When the InfiniteVoucherRedemption is false, it represents the Maximum number of Vouchers that can be redeemed within a specific Number Of Days ( MaxVoucherRedemptionOncePerNumberOfDays ) \n            Used for : Non Generic Offer</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>Set the maximum number of allowed redemptions per mentioned number of days When: ( InfiniteVoucherRedemption is TRUE ) OR ( InfiniteVoucherRedemption is FALSE and we have a MaxVoucherRedemption value )\n            Used for : Non Generic Offer</td></tr><tr><td>MediumImage</td><td>String</td><td>The Medium Image</td></tr><tr><td>OfferCode</td><td>String</td><td>The OfferCode</td></tr><tr><td>OfferID</td><td>Int32</td><td>The ID</td></tr><tr><td>OfferTypeID</td><td>Int32</td><td>The Offer Type ID of the Offer : Specific ( 1 ) / Generic ( 2 )</td></tr><tr><td>OfferTypeName</td><td>String</td><td>The Offer Type Name</td></tr><tr><td>OneRedemptionPerCustomer</td><td>Boolean</td><td>Control the maximum number of Offers that can be redeemed per customer\n            Used for : Generic Offer</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>RedemptionLocations</td><td>List&lt;Location&gt;</td><td>The Offer Redemption Locations</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td>The Offer Redemption Types</td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td>The Schedule of the Offer</td></tr><tr><td>SmallImage</td><td>String</td><td>The Small Image</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>The Start Date</td></tr><tr><td>SubCategoryID</td><td>Int32</td><td>The Sub-Category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>The Sub-Category name</td></tr><tr><td>SubDescription</td><td>String</td><td>The SubDescription of the Offer</td></tr><tr><td>Title</td><td>String</td><td>The Title</td></tr><tr><td>VoucherTermsCondition</td><td>String</td><td>The Voucher Terms and Conditions</td></tr><tr><td>VoucherText</td><td>String</td><td>The Voucher Text</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>The Voucher Type</td></tr><tr><td>VoucherValue</td><td>Double (nullable)</td><td>The Voucher Value</td></tr><tr><td><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td><h4>InterestNode Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>InterestNodeName</td><td>String</td><td></td></tr><tr><td>NodeCode</td><td>Int32</td><td></td></tr><tr><td><h4>Location Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsGeneric</td><td>Boolean</td><td></td></tr><tr><td>LocationEmailAddress</td><td>String</td><td></td></tr><tr><td>LocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>LocationName</td><td>String</td><td>Name of locations</td></tr><tr><td>LocationNodecode</td><td>Int32 (nullable)</td><td></td></tr><tr><td>OriginLocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>Region unique identifier</td></tr><tr><td>RegionName</td><td>String</td><td>Name of the region</td></tr><tr><td>Suspended</td><td>Boolean</td><td>Suspension status</td></tr><tr><td><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetOffersByParams"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"00c7e8cd-0caa-44ba-ac3c-80e498ef2570","name":"api/Voucher/GetOffersByParams Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OfferCode\": \"sample string 1\",\r\n  \"StartDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n  \"CategoryIDsList\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"SubCategoryIDsList\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"RedemptionTypeIDsList\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"DisplayChannelIDsList\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"VoucherTypeIDsList\": [\r\n    1,\r\n    2\r\n  ],\r\n  \"DisplayFrom\": \"2026-03-25T07:30:10.699494+00:00\",\r\n  \"RedemptionLocationID\": 1,\r\n  \"OnlyActiveOffers\": true\r\n}"},"url":"https://{{Host}}/api/Voucher/GetOffersByParams","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>OfferByParamsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CategoryIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided categories ( optional search parameter )</td><td>False</td></tr><tr><td>DisplayChannelIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Display Channels( optional search parameter )</td><td>False</td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td>Get the offers the their display Date is greated than the provided date ( optional search parameter )</td><td>False</td></tr><tr><td>OfferCode</td><td>String</td><td>Get the offers that matches the provided Offer Code ( optional search parameter )</td><td>False</td></tr><tr><td>OnlyActiveOffers</td><td>Boolean</td><td>Expired and paused offers will be excluded where the value is true ( optional search parameter )</td><td>False</td></tr><tr><td>RedemptionLocationID</td><td>Int32 (nullable)</td><td>Get the offers that can be redeemed in the provided Location ID ( optional search parameter )</td><td>False</td></tr><tr><td>RedemptionTypeIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Redemption Types ( optional search parameter )</td><td>False</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Get the offers the their Start Date is greated than the provided date ( optional search parameter )</td><td>False</td></tr><tr><td>SubCategoryIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Sub categories ( optional search parameter )</td><td>False</td></tr><tr><td>VoucherTypeIDsList</td><td>List&lt;Int32&gt;</td><td>Get the offers that matches the provided Voucher Types ( optional search parameter )</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>Offers Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>offers</td><td>List&lt;OfferOutput&gt;</td><td></td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td colspan=3><h4>OfferOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td>The Category ID</td></tr><tr><td>CategoryName</td><td>String</td><td>The Category name</td></tr><tr><td>ChannelHeadline</td><td>String</td><td>The Channel Headline</td></tr><tr><td>ChannelMessage</td><td>String</td><td>The Channel Message</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>The Creation Date</td></tr><tr><td>DaypartID</td><td>Int32 (nullable)</td><td>The DaypartID if we use a predefined Daypart</td></tr><tr><td>Description</td><td>String</td><td>The Description of the Offer</td></tr><tr><td>DisplayChannels</td><td>List&lt;DisplayChannel&gt;</td><td>The Offer Display Channels</td></tr><tr><td>DisplayFrom</td><td>DateTime (nullable)</td><td>Can be used to determine when an offer can be shown from</td></tr><tr><td>DisplayTo</td><td>DateTime (nullable)</td><td>Can be used to determine when an offer can be shown to</td></tr><tr><td>ExpiryDate</td><td>DateTime (nullable)</td><td>The Expiry Date</td></tr><tr><td>InfiniteVoucherRedemption</td><td>Boolean</td><td>Use to determine whether the Offer Voucher's can be redeemed infinitely or not\n            Used for : Non Generic Offer</td></tr><tr><td>InterestNodeCode</td><td>Int32</td><td>The Interest NodeCode</td></tr><tr><td>InterestNodes</td><td>List&lt;InterestNode&gt;</td><td>The Interest nodes of the Offer</td></tr><tr><td>IssuanceLimitPerCustomer</td><td>Int32 (nullable)</td><td>Control the maximum number of vouchers that can be issued per customer</td></tr><tr><td>IssuancePointsWorth</td><td>Double</td><td>Number of loyalty points burned from customer balance when the voucher code will be issued.</td></tr><tr><td>LargeImage</td><td>String</td><td>The Large Image</td></tr><tr><td>MaxIssuancePermitted</td><td>Int32 (nullable)</td><td>Control how many times the voucher can be issued</td></tr><tr><td>MaxRedemptionPermitted</td><td>Int32 (nullable)</td><td>Control how many times the Offer can be redeemed\n            Used for : Generic Offer</td></tr><tr><td>MaxVoucherRedemption</td><td>Int32 (nullable)</td><td>When the InfiniteVoucherRedemption is false, it represents the Maximum number of Vouchers that can be redeemed within a specific Number Of Days ( MaxVoucherRedemptionOncePerNumberOfDays ) \n            Used for : Non Generic Offer</td></tr><tr><td>MaxVoucherRedemptionOncePerNumberOfDays</td><td>Int32 (nullable)</td><td>Set the maximum number of allowed redemptions per mentioned number of days When: ( InfiniteVoucherRedemption is TRUE ) OR ( InfiniteVoucherRedemption is FALSE and we have a MaxVoucherRedemption value )\n            Used for : Non Generic Offer</td></tr><tr><td>MediumImage</td><td>String</td><td>The Medium Image</td></tr><tr><td>OfferCode</td><td>String</td><td>The OfferCode</td></tr><tr><td>OfferID</td><td>Int32</td><td>The ID</td></tr><tr><td>OfferTypeID</td><td>Int32</td><td>The Offer Type ID of the Offer : Specific ( 1 ) / Generic ( 2 )</td></tr><tr><td>OfferTypeName</td><td>String</td><td>The Offer Type Name</td></tr><tr><td>OneRedemptionPerCustomer</td><td>Boolean</td><td>Control the maximum number of Offers that can be redeemed per customer\n            Used for : Generic Offer</td></tr><tr><td>ProductKey</td><td>String</td><td>The OfferCode</td></tr><tr><td>RedemptionLocations</td><td>List&lt;Location&gt;</td><td>The Offer Redemption Locations</td></tr><tr><td>RedemptionTypes</td><td>List&lt;OrderType&gt;</td><td>The Offer Redemption Types</td></tr><tr><td>ScheduleLines</td><td>List&lt;ScheduleLineBasic&gt;</td><td>The Schedule of the Offer</td></tr><tr><td>SmallImage</td><td>String</td><td>The Small Image</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>The Start Date</td></tr><tr><td>SubCategoryID</td><td>Int32</td><td>The Sub-Category ID</td></tr><tr><td>SubCategoryName</td><td>String</td><td>The Sub-Category name</td></tr><tr><td>SubDescription</td><td>String</td><td>The SubDescription of the Offer</td></tr><tr><td>Title</td><td>String</td><td>The Title</td></tr><tr><td>VoucherTermsCondition</td><td>String</td><td>The Voucher Terms and Conditions</td></tr><tr><td>VoucherText</td><td>String</td><td>The Voucher Text</td></tr><tr><td>VoucherTypeName</td><td>String</td><td>The Voucher Type</td></tr><tr><td>VoucherValue</td><td>Double (nullable)</td><td>The Voucher Value</td></tr><tr><td colspan=3><h4>DisplayChannel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>DisplayChannelDescription</td><td>String</td><td></td></tr><tr><td>DisplayChannelID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>InterestNode Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>InterestNodeName</td><td>String</td><td></td></tr><tr><td>NodeCode</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>Location Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsGeneric</td><td>Boolean</td><td></td></tr><tr><td>LocationEmailAddress</td><td>String</td><td></td></tr><tr><td>LocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>LocationName</td><td>String</td><td>Name of locations</td></tr><tr><td>LocationNodecode</td><td>Int32 (nullable)</td><td></td></tr><tr><td>OriginLocationID</td><td>String</td><td>The unique identifier</td></tr><tr><td>RegionID</td><td>Int32 (nullable)</td><td>Region unique identifier</td></tr><tr><td>RegionName</td><td>String</td><td>Name of the region</td></tr><tr><td>Suspended</td><td>Boolean</td><td>Suspension status</td></tr><tr><td colspan=3><h4>OrderType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>IsPhysicalVisit</td><td>Boolean</td><td></td></tr><tr><td>OrderTypeDescription</td><td>String</td><td></td></tr><tr><td>OrderTypeID</td><td>Int32</td><td></td></tr><tr><td colspan=3><h4>ScheduleLineBasic Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>day</td><td>Int32</td><td>Sunday (0), Monday (1), Tuesday(2), Wednesday(3), Thursday(4), Friday(5), Saturday(6)</td></tr><tr><td>end_minute</td><td>Int32</td><td></td></tr><tr><td>start_minute</td><td>Int32</td><td></td></tr><tr><td>timezone_type</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"offers\": [\r\n    {\r\n      \"OfferID\": 1,\r\n      \"Title\": \"sample string 2\",\r\n      \"Description\": \"sample string 3\",\r\n      \"SubDescription\": \"sample string 4\",\r\n      \"OfferCode\": \"sample string 5\",\r\n      \"StartDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"CategoryName\": \"sample string 6\",\r\n      \"CategoryID\": 7,\r\n      \"SubCategoryName\": \"sample string 8\",\r\n      \"SubCategoryID\": 9,\r\n      \"VoucherTypeName\": \"sample string 10\",\r\n      \"VoucherValue\": 1.1,\r\n      \"VoucherText\": \"sample string 11\",\r\n      \"VoucherTermsCondition\": \"sample string 12\",\r\n      \"ChannelHeadline\": \"sample string 13\",\r\n      \"ChannelMessage\": \"sample string 14\",\r\n      \"SmallImage\": \"sample string 15\",\r\n      \"MediumImage\": \"sample string 16\",\r\n      \"LargeImage\": \"sample string 17\",\r\n      \"InterestNodeCode\": 18,\r\n      \"ProductKey\": \"sample string 19\",\r\n      \"DisplayFrom\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"DisplayTo\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"DaypartID\": 1,\r\n      \"ScheduleLines\": [\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"InterestNodes\": [\r\n        {\r\n          \"<NodeCode>k__BackingField\": 1,\r\n          \"<InterestNodeName>k__BackingField\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"<NodeCode>k__BackingField\": 1,\r\n          \"<InterestNodeName>k__BackingField\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"RedemptionTypes\": [\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        },\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        }\r\n      ],\r\n      \"DisplayChannels\": [\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"RedemptionLocations\": [\r\n        {\r\n          \"LocationID\": \"sample string 1\",\r\n          \"LocationName\": \"sample string 2\",\r\n          \"Suspended\": true,\r\n          \"OriginLocationID\": \"sample string 4\",\r\n          \"RegionID\": 1,\r\n          \"RegionName\": \"sample string 5\",\r\n          \"LocationEmailAddress\": \"sample string 8\",\r\n          \"LocationNodecode\": 1,\r\n          \"IsGeneric\": true\r\n        },\r\n        {\r\n          \"LocationID\": \"sample string 1\",\r\n          \"LocationName\": \"sample string 2\",\r\n          \"Suspended\": true,\r\n          \"OriginLocationID\": \"sample string 4\",\r\n          \"RegionID\": 1,\r\n          \"RegionName\": \"sample string 5\",\r\n          \"LocationEmailAddress\": \"sample string 8\",\r\n          \"LocationNodecode\": 1,\r\n          \"IsGeneric\": true\r\n        }\r\n      ],\r\n      \"MaxIssuancePermitted\": 1,\r\n      \"IssuanceLimitPerCustomer\": 1,\r\n      \"MaxRedemptionPermitted\": 1,\r\n      \"OneRedemptionPerCustomer\": true,\r\n      \"InfiniteVoucherRedemption\": true,\r\n      \"MaxVoucherRedemption\": 1,\r\n      \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n      \"OfferTypeID\": 22,\r\n      \"OfferTypeName\": \"sample string 23\",\r\n      \"IssuancePointsWorth\": 24.1\r\n    },\r\n    {\r\n      \"OfferID\": 1,\r\n      \"Title\": \"sample string 2\",\r\n      \"Description\": \"sample string 3\",\r\n      \"SubDescription\": \"sample string 4\",\r\n      \"OfferCode\": \"sample string 5\",\r\n      \"StartDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"ExpiryDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"CategoryName\": \"sample string 6\",\r\n      \"CategoryID\": 7,\r\n      \"SubCategoryName\": \"sample string 8\",\r\n      \"SubCategoryID\": 9,\r\n      \"VoucherTypeName\": \"sample string 10\",\r\n      \"VoucherValue\": 1.1,\r\n      \"VoucherText\": \"sample string 11\",\r\n      \"VoucherTermsCondition\": \"sample string 12\",\r\n      \"ChannelHeadline\": \"sample string 13\",\r\n      \"ChannelMessage\": \"sample string 14\",\r\n      \"SmallImage\": \"sample string 15\",\r\n      \"MediumImage\": \"sample string 16\",\r\n      \"LargeImage\": \"sample string 17\",\r\n      \"InterestNodeCode\": 18,\r\n      \"ProductKey\": \"sample string 19\",\r\n      \"DisplayFrom\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"DisplayTo\": \"2026-03-25T07:30:10.699494+00:00\",\r\n      \"DaypartID\": 1,\r\n      \"ScheduleLines\": [\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"day\": 1,\r\n          \"start_minute\": 2,\r\n          \"end_minute\": 3,\r\n          \"timezone_type\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"InterestNodes\": [\r\n        {\r\n          \"<NodeCode>k__BackingField\": 1,\r\n          \"<InterestNodeName>k__BackingField\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"<NodeCode>k__BackingField\": 1,\r\n          \"<InterestNodeName>k__BackingField\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"RedemptionTypes\": [\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        },\r\n        {\r\n          \"OrderTypeID\": 1,\r\n          \"OrderTypeDescription\": \"sample string 2\",\r\n          \"IsPhysicalVisit\": true\r\n        }\r\n      ],\r\n      \"DisplayChannels\": [\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        },\r\n        {\r\n          \"DisplayChannelID\": 1,\r\n          \"DisplayChannelDescription\": \"sample string 2\"\r\n        }\r\n      ],\r\n      \"RedemptionLocations\": [\r\n        {\r\n          \"LocationID\": \"sample string 1\",\r\n          \"LocationName\": \"sample string 2\",\r\n          \"Suspended\": true,\r\n          \"OriginLocationID\": \"sample string 4\",\r\n          \"RegionID\": 1,\r\n          \"RegionName\": \"sample string 5\",\r\n          \"LocationEmailAddress\": \"sample string 8\",\r\n          \"LocationNodecode\": 1,\r\n          \"IsGeneric\": true\r\n        },\r\n        {\r\n          \"LocationID\": \"sample string 1\",\r\n          \"LocationName\": \"sample string 2\",\r\n          \"Suspended\": true,\r\n          \"OriginLocationID\": \"sample string 4\",\r\n          \"RegionID\": 1,\r\n          \"RegionName\": \"sample string 5\",\r\n          \"LocationEmailAddress\": \"sample string 8\",\r\n          \"LocationNodecode\": 1,\r\n          \"IsGeneric\": true\r\n        }\r\n      ],\r\n      \"MaxIssuancePermitted\": 1,\r\n      \"IssuanceLimitPerCustomer\": 1,\r\n      \"MaxRedemptionPermitted\": 1,\r\n      \"OneRedemptionPerCustomer\": true,\r\n      \"InfiniteVoucherRedemption\": true,\r\n      \"MaxVoucherRedemption\": 1,\r\n      \"MaxVoucherRedemptionOncePerNumberOfDays\": 1,\r\n      \"OfferTypeID\": 22,\r\n      \"OfferTypeName\": \"sample string 23\",\r\n      \"IssuancePointsWorth\": 24.1\r\n    }\r\n  ]\r\n}"}],"_postman_id":"5c42452c-2391-4c60-b608-9265caa8154e"},{"name":"GetOrderTypes","id":"bfa241f7-c3bf-4df6-826a-cadfb2230987","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetOrderTypes","description":" <p>\n            Get Order Types\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetOrderTypes"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"610e2a8b-6421-4b02-9719-29c2630a6507","name":"api/Voucher/GetOrderTypes Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetOrderTypes","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Order Types\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>SubCategory Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryName</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"SubCategoryID\": 1,\r\n    \"SubCategoryName\": \"sample string 2\",\r\n    \"CategoryID\": 3\r\n  },\r\n  {\r\n    \"SubCategoryID\": 1,\r\n    \"SubCategoryName\": \"sample string 2\",\r\n    \"CategoryID\": 3\r\n  }\r\n]"}],"_postman_id":"bfa241f7-c3bf-4df6-826a-cadfb2230987"},{"name":"GetVouchersIssuedByOffer","id":"5c90d6a1-d8c0-403e-a0d4-4acd30e43cc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetVouchersIssuedByOffer","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>GetVouchersIssuedByOfferOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>VouchersList</td><td>List&lt;IssuedVoucherDetails&gt;</td><td></td></tr><tr><td><h4>IssuedVoucherDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>Customer id linked to this voucher</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetVouchersIssuedByOffer"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"0a31c431-9ba5-4bd6-9c82-70f8f5ba65fa","name":"api/Voucher/GetVouchersIssuedByOffer Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetVouchersIssuedByOffer","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetVouchersIssuedByOfferOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>VouchersList</td><td>List&lt;IssuedVoucherDetails&gt;</td><td></td></tr><tr><td colspan=3><h4>IssuedVoucherDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>Customer id linked to this voucher</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"VouchersList\": [\r\n    {\r\n      \"CtcID\": 1,\r\n      \"VoucherCode\": \"sample string 2\",\r\n      \"Redeemed\": true\r\n    },\r\n    {\r\n      \"CtcID\": 1,\r\n      \"VoucherCode\": \"sample string 2\",\r\n      \"Redeemed\": true\r\n    }\r\n  ]\r\n}"}],"_postman_id":"5c90d6a1-d8c0-403e-a0d4-4acd30e43cc2"},{"name":"GetVouchersIssuedByOffer","id":"6a2dfba4-0918-402c-9256-50f619aeda9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OfferID\": 1,\r\n  \"StartDate\": \"2026-03-25T07:30:10.7151337+00:00\",\r\n  \"EndDate\": \"2026-03-25T07:30:10.7151337+00:00\",\r\n  \"Disabled\": true,\r\n  \"Redeemed\": true,\r\n  \"SourceID\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Voucher/GetVouchersIssuedByOffer","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>GetVouchersIssuedByOfferInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Disabled</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>OfferID</td><td>Int32</td><td></td><td>True</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>GetVouchersIssuedByOfferOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>VouchersList</td><td>List&lt;IssuedVoucherDetails&gt;</td><td></td></tr><tr><td><h4>IssuedVoucherDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>Customer id linked to this voucher</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetVouchersIssuedByOffer"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"17a6ae8e-71bb-413f-96bb-e289c4c89787","name":"api/Voucher/GetVouchersIssuedByOffer Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OfferID\": 1,\r\n  \"StartDate\": \"2026-03-25T07:30:10.7151337+00:00\",\r\n  \"EndDate\": \"2026-03-25T07:30:10.7151337+00:00\",\r\n  \"Disabled\": true,\r\n  \"Redeemed\": true,\r\n  \"SourceID\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Voucher/GetVouchersIssuedByOffer","description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>GetVouchersIssuedByOfferInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Disabled</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>EndDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>OfferID</td><td>Int32</td><td></td><td>True</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>GetVouchersIssuedByOfferOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr><tr><td>VouchersList</td><td>List&lt;IssuedVoucherDetails&gt;</td><td></td></tr><tr><td colspan=3><h4>IssuedVoucherDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>Customer id linked to this voucher</td></tr><tr><td>Redeemed</td><td>Boolean (nullable)</td><td>Voucher redemption status (redeemed or not)</td></tr><tr><td>VoucherCode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"VouchersList\": [\r\n    {\r\n      \"CtcID\": 1,\r\n      \"VoucherCode\": \"sample string 2\",\r\n      \"Redeemed\": true\r\n    },\r\n    {\r\n      \"CtcID\": 1,\r\n      \"VoucherCode\": \"sample string 2\",\r\n      \"Redeemed\": true\r\n    }\r\n  ]\r\n}"}],"_postman_id":"6a2dfba4-0918-402c-9256-50f619aeda9a"},{"name":"GetVoucherTypes","id":"5982d771-2063-4121-8af4-e4e90ee3d058","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetVoucherTypes","description":" <p>\n            Get Voucher Types\n            \n</p><h4>Response Payload</h4><table><tr><td><h4>VoucherType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>VoucherTypeID</td><td>Int32</td><td></td></tr><tr><td>VoucherTypeName</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","GetVoucherTypes"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"2c585d3b-c53d-4898-805a-8b95c6ffca80","name":"api/Voucher/GetVoucherTypes Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Voucher/GetVoucherTypes","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Get Voucher Types\r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>VoucherType Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>VoucherTypeID</td><td>Int32</td><td></td></tr><tr><td>VoucherTypeName</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"VoucherTypeID\": 1,\r\n    \"VoucherTypeName\": \"sample string 2\"\r\n  },\r\n  {\r\n    \"VoucherTypeID\": 1,\r\n    \"VoucherTypeName\": \"sample string 2\"\r\n  }\r\n]"}],"_postman_id":"5982d771-2063-4121-8af4-e4e90ee3d058"},{"name":"Reactivate","id":"46e1cf1c-8c2d-48b4-bc41-975951e8528e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"vouchercode\": \"sample string 1\",\r\n  \"Comments\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Voucher/Reactivate","description":" <p>\n            Reactivate a voucher\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>ReactivateVoucherInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Comments</td><td>String</td><td>Comments</td><td>False</td></tr><tr><td>vouchercode</td><td>String</td><td></td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ReactivateVoucherOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","Reactivate"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"700fd780-58d2-4ce5-86d2-c88ec8cf151b","name":"api/Voucher/Reactivate Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"vouchercode\": \"sample string 1\",\r\n  \"Comments\": \"sample string 2\"\r\n}"},"url":"https://{{Host}}/api/Voucher/Reactivate","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Reactivate a voucher\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ReactivateVoucherInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Comments</td><td>String</td><td>Comments</td><td>False</td></tr><tr><td>vouchercode</td><td>String</td><td></td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ReactivateVoucherOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>response</td><td>Boolean</td><td>Status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"46e1cf1c-8c2d-48b4-bc41-975951e8528e"},{"name":"Redeem","id":"b5324aee-dd85-430a-be2c-0d0675db37fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"vouchercode\": \"sample string 1\",\r\n  \"firstname\": \"sample string 2\",\r\n  \"lastname\": \"sample string 3\",\r\n  \"email\": \"sample string 4\",\r\n  \"mobile\": \"sample string 5\",\r\n  \"birthdate\": \"2026-03-25T07:30:10.7307422+00:00\",\r\n  \"RedemptionLocationID\": 1,\r\n  \"RedemptionLocationName\": \"sample string 6\",\r\n  \"RedemptionDate\": \"2026-03-25T07:30:10.7307422+00:00\",\r\n  \"VoucherAmount\": 1.1,\r\n  \"OrderAmount\": 1.1,\r\n  \"redemptionType\": 1,\r\n  \"CustomerID\": 7,\r\n  \"OrderID\": \"sample string 8\",\r\n  \"FromPostTransaction\": true\r\n}"},"url":"https://{{Host}}/api/Voucher/Redeem","description":" <p>\n            Redeem voucher\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>RedeemVoucherInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>birthdate</td><td>DateTime (nullable)</td><td>Birthdate of the customer if it's anonymous voucher</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>the ctcid of the contact (if the voucher is anonymous, it will be linked to this CustomerID)</td><td>False</td></tr><tr><td>email</td><td>String</td><td>Email of the customer if it's anonymous voucher</td><td>False</td></tr><tr><td>firstname</td><td>String</td><td>First name of the customer if it's anonymous voucher</td><td>False</td></tr><tr><td>FromPostTransaction</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>lastname</td><td>String</td><td>Last name of the customer if it's anonymous voucher</td><td>False</td></tr><tr><td>mobile</td><td>String</td><td>Mobile phone of the customer if it's anonymous voucher</td><td>False</td></tr><tr><td>OrderAmount</td><td>Double (nullable)</td><td>The amount of the order</td><td>False</td></tr><tr><td>OrderID</td><td>String</td><td>This will be used to validate voucher if it's reseved</td><td>False</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>Date when the voucher has been redeemed</td><td>False</td></tr><tr><td>RedemptionLocationID</td><td>Int32 (nullable)</td><td>Location ID where the voucher will be redeemed</td><td>False</td></tr><tr><td>RedemptionLocationName</td><td>String</td><td>Location Name where the voucher will be redeemed</td><td>False</td></tr><tr><td>redemptionType</td><td>RedemptionType (nullable)</td><td>The redemption type of the voucher</td><td>False</td></tr><tr><td>VoucherAmount</td><td>Double (nullable)</td><td>The amount of the voucher</td><td>False</td></tr><tr><td>vouchercode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>RedeemVoucherOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>ProductKey</td><td>String</td><td>Product Key</td></tr><tr><td>RedemptionKey</td><td>Int32</td><td>integer key starting from 1000 to 9999 (the key is generated per day)</td></tr><tr><td>response</td><td>Boolean</td><td>List of errors if exists</td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","Redeem"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"936b9949-93a9-453b-bae5-56c5bf2ecd67","name":"api/Voucher/Redeem Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"vouchercode\": \"sample string 1\",\r\n  \"firstname\": \"sample string 2\",\r\n  \"lastname\": \"sample string 3\",\r\n  \"email\": \"sample string 4\",\r\n  \"mobile\": \"sample string 5\",\r\n  \"birthdate\": \"2026-03-25T07:30:10.7307422+00:00\",\r\n  \"RedemptionLocationID\": 1,\r\n  \"RedemptionLocationName\": \"sample string 6\",\r\n  \"RedemptionDate\": \"2026-03-25T07:30:10.7307422+00:00\",\r\n  \"VoucherAmount\": 1.1,\r\n  \"OrderAmount\": 1.1,\r\n  \"redemptionType\": 1,\r\n  \"CustomerID\": 7,\r\n  \"OrderID\": \"sample string 8\",\r\n  \"FromPostTransaction\": true\r\n}"},"url":"https://{{Host}}/api/Voucher/Redeem","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Redeem voucher\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>RedeemVoucherInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>birthdate</td><td>DateTime (nullable)</td><td>Birthdate of the customer if it's anonymous voucher</td><td>False</td></tr><tr><td>CustomerID</td><td>Int32</td><td>the ctcid of the contact (if the voucher is anonymous, it will be linked to this CustomerID)</td><td>False</td></tr><tr><td>email</td><td>String</td><td>Email of the customer if it's anonymous voucher</td><td>False</td></tr><tr><td>firstname</td><td>String</td><td>First name of the customer if it's anonymous voucher</td><td>False</td></tr><tr><td>FromPostTransaction</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>lastname</td><td>String</td><td>Last name of the customer if it's anonymous voucher</td><td>False</td></tr><tr><td>mobile</td><td>String</td><td>Mobile phone of the customer if it's anonymous voucher</td><td>False</td></tr><tr><td>OrderAmount</td><td>Double (nullable)</td><td>The amount of the order</td><td>False</td></tr><tr><td>OrderID</td><td>String</td><td>This will be used to validate voucher if it's reseved</td><td>False</td></tr><tr><td>RedemptionDate</td><td>DateTime (nullable)</td><td>Date when the voucher has been redeemed</td><td>False</td></tr><tr><td>RedemptionLocationID</td><td>Int32 (nullable)</td><td>Location ID where the voucher will be redeemed</td><td>False</td></tr><tr><td>RedemptionLocationName</td><td>String</td><td>Location Name where the voucher will be redeemed</td><td>False</td></tr><tr><td>redemptionType</td><td>RedemptionType (nullable)</td><td>The redemption type of the voucher</td><td>False</td></tr><tr><td>VoucherAmount</td><td>Double (nullable)</td><td>The amount of the voucher</td><td>False</td></tr><tr><td>vouchercode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>RedeemVoucherOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>ProductKey</td><td>String</td><td>Product Key</td></tr><tr><td>RedemptionKey</td><td>Int32</td><td>integer key starting from 1000 to 9999 (the key is generated per day)</td></tr><tr><td>response</td><td>Boolean</td><td>List of errors if exists</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"ProductKey\": \"sample string 2\",\r\n  \"RedemptionKey\": 3,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"b5324aee-dd85-430a-be2c-0d0675db37fa"},{"name":"ValidateVoucher","id":"c7d15873-5fc5-4c85-ae78-2d52df6330db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"vouchercode\": \"sample string 1\",\r\n  \"ReserveIt\": true,\r\n  \"ReservedFor\": \"sample string 3\",\r\n  \"LocationID\": 1,\r\n  \"VoucherAmount\": 1.1,\r\n  \"redemptionType\": 1,\r\n  \"CustomerID\": 4\r\n}"},"url":"https://{{Host}}/api/Voucher/ValidateVoucher","description":" <p>\n            Validate voucher\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>ValidateVoucherInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>the ctcid of the contact (if the voucher is anonymous, it will be linked to this CustomerID)</td><td>False</td></tr><tr><td>LocationID</td><td>Int32 (nullable)</td><td></td><td>True</td></tr><tr><td>redemptionType</td><td>RedemptionType (nullable)</td><td>redemptionType type\n             InStore = 1,\n             Collection = 2,\n             Delivery = 3,\n             Shop = 7,\n             PayAtTable = 8,\n             PreOrder = 9</td><td>False</td></tr><tr><td>ReservedFor</td><td>String</td><td>this ID will be used in the redemption (if empty we will use the user ID connected)</td><td>False</td></tr><tr><td>ReserveIt</td><td>Boolean</td><td>Reserve it for 30 mn if needed</td><td>False</td></tr><tr><td>VoucherAmount</td><td>Double (nullable)</td><td>The amount of the voucher</td><td>False</td></tr><tr><td>vouchercode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>ValidateVoucherOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>ProductKey</td><td>String</td><td>Product Key</td></tr><tr><td>RedemptionID</td><td>Int32</td><td>RedemptionID</td></tr><tr><td>response</td><td>Boolean</td><td>List of errors if exists</td></tr></table>","urlObject":{"protocol":"https","path":["api","Voucher","ValidateVoucher"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"c288dd8c-706e-4040-960c-d9b59d288f4c","name":"api/Voucher/ValidateVoucher Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"vouchercode\": \"sample string 1\",\r\n  \"ReserveIt\": true,\r\n  \"ReservedFor\": \"sample string 3\",\r\n  \"LocationID\": 1,\r\n  \"VoucherAmount\": 1.1,\r\n  \"redemptionType\": 1,\r\n  \"CustomerID\": 4\r\n}"},"url":"https://{{Host}}/api/Voucher/ValidateVoucher","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Validate voucher\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>ValidateVoucherInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CustomerID</td><td>Int32</td><td>the ctcid of the contact (if the voucher is anonymous, it will be linked to this CustomerID)</td><td>False</td></tr><tr><td>LocationID</td><td>Int32 (nullable)</td><td></td><td>True</td></tr><tr><td>redemptionType</td><td>RedemptionType (nullable)</td><td>redemptionType type\n             InStore = 1,\n             Collection = 2,\n             Delivery = 3,\n             Shop = 7,\n             PayAtTable = 8,\n             PreOrder = 9</td><td>False</td></tr><tr><td>ReservedFor</td><td>String</td><td>this ID will be used in the redemption (if empty we will use the user ID connected)</td><td>False</td></tr><tr><td>ReserveIt</td><td>Boolean</td><td>Reserve it for 30 mn if needed</td><td>False</td></tr><tr><td>VoucherAmount</td><td>Double (nullable)</td><td>The amount of the voucher</td><td>False</td></tr><tr><td>vouchercode</td><td>String</td><td>Voucher code \"OfferCode-9999999\" (like Coke-9999999)</td><td>True</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>ValidateVoucherOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td>List of errors if exists</td></tr><tr><td>ProductKey</td><td>String</td><td>Product Key</td></tr><tr><td>RedemptionID</td><td>Int32</td><td>RedemptionID</td></tr><tr><td>response</td><td>Boolean</td><td>List of errors if exists</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"RedemptionID\": 2,\r\n  \"ProductKey\": \"sample string 3\",\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ]\r\n}"}],"_postman_id":"c7d15873-5fc5-4c85-ae78-2d52df6330db"}],"id":"4d6a870d-9850-4132-9504-70500d917328","description":"<p>Api Methods for Voucher</p>\n","_postman_id":"4d6a870d-9850-4132-9504-70500d917328"},{"name":"WhatsAppApi","item":[{"name":"CheckOptin","id":"9b49b96e-23c4-44ed-8d99-687068fa150b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/WhatsAppApi/CheckOptin?CtcID=CtcID-value&WA_NumberID=WA_NumberID-value&FromModule=FromModule-value","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","WhatsAppApi","CheckOptin"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"WA_NumberID","value":"WA_NumberID-value"},{"key":"FromModule","value":"FromModule-value"}],"variable":[]}},"response":[{"id":"445ac931-3f02-41e2-9165-e1e3af6c31e9","name":"api/WhatsAppApi/CheckOptin?CtcID={CtcID}&WA_NumberID={WA_NumberID}&FromModule={FromModule} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/WhatsAppApi/CheckOptin?CtcID=CtcID-value&WA_NumberID=WA_NumberID-value&FromModule=FromModule-value","protocol":"https","host":["{{Host}}"],"path":["api","WhatsAppApi","CheckOptin"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"WA_NumberID","value":"WA_NumberID-value"},{"key":"FromModule","value":"FromModule-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"StartSession\": \"2026-03-25T07:30:10.7463625+00:00\",\r\n  \"MessageID\": \"sample string 2\",\r\n  \"WaContactID\": \"sample string 3\"\r\n}"}],"_postman_id":"9b49b96e-23c4-44ed-8d99-687068fa150b"},{"name":"CheckSendWATemplate","id":"c98fadfd-e79c-45d4-b575-46723d09c372","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/WhatsAppApi/CheckSendWATemplate?CtcID=CtcID-value&ModuleIDName=ModuleIDName-value&ModuleIDValue=ModuleIDValue-value&To=To-value&FromModule=FromModule-value","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","WhatsAppApi","CheckSendWATemplate"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"ModuleIDName","value":"ModuleIDName-value"},{"key":"ModuleIDValue","value":"ModuleIDValue-value"},{"key":"To","value":"To-value"},{"key":"FromModule","value":"FromModule-value"}],"variable":[]}},"response":[{"id":"e2394ad3-9e02-4dcf-a54b-e09579dd15c4","name":"api/WhatsAppApi/CheckSendWATemplate?CtcID={CtcID}&ModuleIDName={ModuleIDName}&ModuleIDValue={ModuleIDValue}&To={To}&FromModule={FromModule} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/WhatsAppApi/CheckSendWATemplate?CtcID=CtcID-value&ModuleIDName=ModuleIDName-value&ModuleIDValue=ModuleIDValue-value&To=To-value&FromModule=FromModule-value","protocol":"https","host":["{{Host}}"],"path":["api","WhatsAppApi","CheckSendWATemplate"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"ModuleIDName","value":"ModuleIDName-value"},{"key":"ModuleIDValue","value":"ModuleIDValue-value"},{"key":"To","value":"To-value"},{"key":"FromModule","value":"FromModule-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"StartSession\": \"2026-03-25T07:30:10.7619956+00:00\",\r\n  \"MessageID\": \"sample string 2\",\r\n  \"WaContactID\": \"sample string 3\"\r\n}"}],"_postman_id":"c98fadfd-e79c-45d4-b575-46723d09c372"},{"name":"CheckSessionTime","id":"c10813e8-4941-4e4c-911f-10d813dbe90b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/WhatsAppApi/CheckSessionTime?CtcID=CtcID-value&MobileNumber=MobileNumber-value&FromModule=FromModule-value","description":" <p>\n</p><h4>Response Payload</h4><table><tr><td><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","WhatsAppApi","CheckSessionTime"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"MobileNumber","value":"MobileNumber-value"},{"key":"FromModule","value":"FromModule-value"}],"variable":[]}},"response":[{"id":"f20bb399-91c8-49f4-8ef4-669906bc914f","name":"api/WhatsAppApi/CheckSessionTime?CtcID={CtcID}&MobileNumber={MobileNumber}&FromModule={FromModule} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/WhatsAppApi/CheckSessionTime?CtcID=CtcID-value&MobileNumber=MobileNumber-value&FromModule=FromModule-value","protocol":"https","host":["{{Host}}"],"path":["api","WhatsAppApi","CheckSessionTime"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"MobileNumber","value":"MobileNumber-value"},{"key":"FromModule","value":"FromModule-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"StartSession\": \"2026-03-25T07:30:10.7619956+00:00\",\r\n  \"MessageID\": \"sample string 2\",\r\n  \"WaContactID\": \"sample string 3\"\r\n}"}],"_postman_id":"c10813e8-4941-4e4c-911f-10d813dbe90b"},{"name":"PostFeedBack","id":"a6aeaa64-be30-4c1f-9596-c8f366285fce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"StatusID\": 1,\r\n  \"LocationID\": 2,\r\n  \"CtcID\": 3,\r\n  \"CategoryID\": 4,\r\n  \"SubCategoryID\": 5,\r\n  \"FeedBackID\": 6,\r\n  \"ClaimedBy\": 7,\r\n  \"EscalatedTo\": 8\r\n}"},"url":"https://{{Host}}/api/WhatsAppApi/PostFeedBack","description":" <p>\n            Add new feedback or enquiry.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>FeedBackInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>ClaimedBy</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EscalatedTo</td><td>Int32</td><td></td><td>False</td></tr><tr><td>FeedBackID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LocationID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>StatusID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>FeedBackInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>ClaimedBy</td><td>Int32</td><td></td></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>EscalatedTo</td><td>Int32</td><td></td></tr><tr><td>FeedBackID</td><td>Int32</td><td></td></tr><tr><td>LocationID</td><td>Int32</td><td></td></tr><tr><td>StatusID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","WhatsAppApi","PostFeedBack"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"6f38cdce-acc3-42b3-b443-8f7d2fed480d","name":"api/WhatsAppApi/PostFeedBack Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"StatusID\": 1,\r\n  \"LocationID\": 2,\r\n  \"CtcID\": 3,\r\n  \"CategoryID\": 4,\r\n  \"SubCategoryID\": 5,\r\n  \"FeedBackID\": 6,\r\n  \"ClaimedBy\": 7,\r\n  \"EscalatedTo\": 8\r\n}"},"url":"https://{{Host}}/api/WhatsAppApi/PostFeedBack","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add new feedback or enquiry.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>FeedBackInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>ClaimedBy</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>EscalatedTo</td><td>Int32</td><td></td><td>False</td></tr><tr><td>FeedBackID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>LocationID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>StatusID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>FeedBackInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CategoryID</td><td>Int32</td><td></td></tr><tr><td>ClaimedBy</td><td>Int32</td><td></td></tr><tr><td>CtcID</td><td>Int32</td><td></td></tr><tr><td>EscalatedTo</td><td>Int32</td><td></td></tr><tr><td>FeedBackID</td><td>Int32</td><td></td></tr><tr><td>LocationID</td><td>Int32</td><td></td></tr><tr><td>StatusID</td><td>Int32</td><td></td></tr><tr><td>SubCategoryID</td><td>Int32</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"StatusID\": 1,\r\n  \"LocationID\": 2,\r\n  \"CtcID\": 3,\r\n  \"CategoryID\": 4,\r\n  \"SubCategoryID\": 5,\r\n  \"FeedBackID\": 6,\r\n  \"ClaimedBy\": 7,\r\n  \"EscalatedTo\": 8\r\n}"}],"_postman_id":"a6aeaa64-be30-4c1f-9596-c8f366285fce"},{"name":"PostWaContact","id":"023a7aa6-aeb7-4806-9a24-03261e4d77bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"https://{{Host}}/api/WhatsAppApi/PostWaContact?CtcID=CtcID-value&PhoneNumber=PhoneNumber-value&DisplayName=DisplayName-value","description":" <p>\n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","WhatsAppApi","PostWaContact"],"host":["{{Host}}"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"PhoneNumber","value":"PhoneNumber-value"},{"key":"DisplayName","value":"DisplayName-value"}],"variable":[]}},"response":[{"id":"ac7d7781-c946-4fb3-b533-caee8c9745fe","name":"api/WhatsAppApi/PostWaContact?CtcID={CtcID}&PhoneNumber={PhoneNumber}&DisplayName={DisplayName} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://{{Host}}/api/WhatsAppApi/PostWaContact?CtcID=CtcID-value&PhoneNumber=PhoneNumber-value&DisplayName=DisplayName-value","protocol":"https","host":["{{Host}}"],"path":["api","WhatsAppApi","PostWaContact"],"query":[{"key":"CtcID","value":"CtcID-value"},{"key":"PhoneNumber","value":"PhoneNumber-value"},{"key":"DisplayName","value":"DisplayName-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><h4>Response Payload</h4><table><tr><td colspan=3><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"StartSession\": \"2026-03-25T07:30:10.7619956+00:00\",\r\n  \"MessageID\": \"sample string 2\",\r\n  \"WaContactID\": \"sample string 3\"\r\n}"}],"_postman_id":"023a7aa6-aeb7-4806-9a24-03261e4d77bd"},{"name":"SendWAMessage","id":"38f6440e-3bb9-474c-8d2b-1e92a59df78f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"WA_NumberID\": 1,\r\n  \"CtcID\": 2,\r\n  \"To\": \"sample string 3\",\r\n  \"ReceiverName\": \"sample string 4\",\r\n  \"MessageContent\": \"sample string 5\",\r\n  \"ModuleIDName\": \"sample string 6\",\r\n  \"ModuleIDValue\": 7,\r\n  \"WATemplate\": {\r\n    \"type\": \"sample string 1\",\r\n    \"template_name\": \"sample string 2\",\r\n    \"language\": \"sample string 3\",\r\n    \"header_params\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"body_params\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"buttons\": [\r\n      {\r\n        \"type\": \"sample string 1\",\r\n        \"index\": \"sample string 2\",\r\n        \"text\": \"sample string 3\",\r\n        \"payload\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"type\": \"sample string 1\",\r\n        \"index\": \"sample string 2\",\r\n        \"text\": \"sample string 3\",\r\n        \"payload\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"media\": {\r\n      \"type\": \"sample string 1\",\r\n      \"text\": \"sample string 2\"\r\n    },\r\n    \"TemplateID\": 4\r\n  },\r\n  \"IsReceived\": true,\r\n  \"MsgType\": \"sample string 8\",\r\n  \"MsgUrl\": \"sample string 9\",\r\n  \"Mime_Type\": \"sample string 10\",\r\n  \"FileName\": \"sample string 11\"\r\n}"},"url":"https://{{Host}}/api/WhatsAppApi/SendWAMessage?FromModule=FromModule-value&WithVerifications=WithVerifications-value","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>WAInputMessage Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>IsReceived</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>MessageContent</td><td>String</td><td></td><td>False</td></tr><tr><td>Mime_Type</td><td>String</td><td></td><td>False</td></tr><tr><td>ModuleIDName</td><td>String</td><td></td><td>False</td></tr><tr><td>ModuleIDValue</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MsgType</td><td>String</td><td></td><td>False</td></tr><tr><td>MsgUrl</td><td>String</td><td></td><td>False</td></tr><tr><td>ReceiverName</td><td>String</td><td></td><td>False</td></tr><tr><td>To</td><td>String</td><td></td><td>False</td></tr><tr><td>WA_NumberID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>WATemplate</td><td>WATemplateMsg</td><td></td><td>False</td></tr><tr><td><h4>WATemplateMsg Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>body_params</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>buttons</td><td>List&lt;WAButton&gt;</td><td></td><td>False</td></tr><tr><td>header_params</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>language</td><td>String</td><td></td><td>False</td></tr><tr><td>media</td><td>WAMedia</td><td></td><td>False</td></tr><tr><td>template_name</td><td>String</td><td></td><td>False</td></tr><tr><td>TemplateID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>type</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>WAButton Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>index</td><td>String</td><td></td><td>False</td></tr><tr><td>payload</td><td>String</td><td></td><td>False</td></tr><tr><td>text</td><td>String</td><td></td><td>False</td></tr><tr><td>type</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>WAMedia Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>text</td><td>String</td><td></td><td>False</td></tr><tr><td>type</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","WhatsAppApi","SendWAMessage"],"host":["{{Host}}"],"query":[{"key":"FromModule","value":"FromModule-value"},{"key":"WithVerifications","value":"WithVerifications-value"}],"variable":[]}},"response":[{"id":"b4ae3d42-35f3-4ff3-bfb8-1cfb5c5c571e","name":"api/WhatsAppApi/SendWAMessage?FromModule={FromModule}&WithVerifications={WithVerifications} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"WA_NumberID\": 1,\r\n  \"CtcID\": 2,\r\n  \"To\": \"sample string 3\",\r\n  \"ReceiverName\": \"sample string 4\",\r\n  \"MessageContent\": \"sample string 5\",\r\n  \"ModuleIDName\": \"sample string 6\",\r\n  \"ModuleIDValue\": 7,\r\n  \"WATemplate\": {\r\n    \"type\": \"sample string 1\",\r\n    \"template_name\": \"sample string 2\",\r\n    \"language\": \"sample string 3\",\r\n    \"header_params\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"body_params\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"buttons\": [\r\n      {\r\n        \"type\": \"sample string 1\",\r\n        \"index\": \"sample string 2\",\r\n        \"text\": \"sample string 3\",\r\n        \"payload\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"type\": \"sample string 1\",\r\n        \"index\": \"sample string 2\",\r\n        \"text\": \"sample string 3\",\r\n        \"payload\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"media\": {\r\n      \"type\": \"sample string 1\",\r\n      \"text\": \"sample string 2\"\r\n    },\r\n    \"TemplateID\": 4\r\n  },\r\n  \"IsReceived\": true,\r\n  \"MsgType\": \"sample string 8\",\r\n  \"MsgUrl\": \"sample string 9\",\r\n  \"Mime_Type\": \"sample string 10\",\r\n  \"FileName\": \"sample string 11\"\r\n}"},"url":{"raw":"https://{{Host}}/api/WhatsAppApi/SendWAMessage?FromModule=FromModule-value&WithVerifications=WithVerifications-value","protocol":"https","host":["{{Host}}"],"path":["api","WhatsAppApi","SendWAMessage"],"query":[{"key":"FromModule","value":"FromModule-value"},{"key":"WithVerifications","value":"WithVerifications-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>WAInputMessage Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>IsReceived</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>MessageContent</td><td>String</td><td></td><td>False</td></tr><tr><td>Mime_Type</td><td>String</td><td></td><td>False</td></tr><tr><td>ModuleIDName</td><td>String</td><td></td><td>False</td></tr><tr><td>ModuleIDValue</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MsgType</td><td>String</td><td></td><td>False</td></tr><tr><td>MsgUrl</td><td>String</td><td></td><td>False</td></tr><tr><td>ReceiverName</td><td>String</td><td></td><td>False</td></tr><tr><td>To</td><td>String</td><td></td><td>False</td></tr><tr><td>WA_NumberID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>WATemplate</td><td>WATemplateMsg</td><td></td><td>False</td></tr><tr><td colspan=4><h4>WATemplateMsg Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>body_params</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>buttons</td><td>List&lt;WAButton&gt;</td><td></td><td>False</td></tr><tr><td>header_params</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>language</td><td>String</td><td></td><td>False</td></tr><tr><td>media</td><td>WAMedia</td><td></td><td>False</td></tr><tr><td>template_name</td><td>String</td><td></td><td>False</td></tr><tr><td>TemplateID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>type</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>WAButton Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>index</td><td>String</td><td></td><td>False</td></tr><tr><td>payload</td><td>String</td><td></td><td>False</td></tr><tr><td>text</td><td>String</td><td></td><td>False</td></tr><tr><td>type</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>WAMedia Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>text</td><td>String</td><td></td><td>False</td></tr><tr><td>type</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"StartSession\": \"2026-03-25T07:30:10.7932381+00:00\",\r\n  \"MessageID\": \"sample string 2\",\r\n  \"WaContactID\": \"sample string 3\"\r\n}"}],"_postman_id":"38f6440e-3bb9-474c-8d2b-1e92a59df78f"},{"name":"SendWATemplate","id":"feeef9f4-5c09-446d-b8a3-4e7d10d443da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"WA_NumberID\": 1,\r\n  \"CtcID\": 2,\r\n  \"To\": \"sample string 3\",\r\n  \"ReceiverName\": \"sample string 4\",\r\n  \"MessageContent\": \"sample string 5\",\r\n  \"ModuleIDName\": \"sample string 6\",\r\n  \"ModuleIDValue\": 7,\r\n  \"WATemplate\": {\r\n    \"type\": \"sample string 1\",\r\n    \"template_name\": \"sample string 2\",\r\n    \"language\": \"sample string 3\",\r\n    \"header_params\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"body_params\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"buttons\": [\r\n      {\r\n        \"type\": \"sample string 1\",\r\n        \"index\": \"sample string 2\",\r\n        \"text\": \"sample string 3\",\r\n        \"payload\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"type\": \"sample string 1\",\r\n        \"index\": \"sample string 2\",\r\n        \"text\": \"sample string 3\",\r\n        \"payload\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"media\": {\r\n      \"type\": \"sample string 1\",\r\n      \"text\": \"sample string 2\"\r\n    },\r\n    \"TemplateID\": 4\r\n  },\r\n  \"IsReceived\": true,\r\n  \"MsgType\": \"sample string 8\",\r\n  \"MsgUrl\": \"sample string 9\",\r\n  \"Mime_Type\": \"sample string 10\",\r\n  \"FileName\": \"sample string 11\"\r\n}"},"url":"https://{{Host}}/api/WhatsAppApi/SendWATemplate?FromModule=FromModule-value","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>WAInputMessage Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>IsReceived</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>MessageContent</td><td>String</td><td></td><td>False</td></tr><tr><td>Mime_Type</td><td>String</td><td></td><td>False</td></tr><tr><td>ModuleIDName</td><td>String</td><td></td><td>False</td></tr><tr><td>ModuleIDValue</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MsgType</td><td>String</td><td></td><td>False</td></tr><tr><td>MsgUrl</td><td>String</td><td></td><td>False</td></tr><tr><td>ReceiverName</td><td>String</td><td></td><td>False</td></tr><tr><td>To</td><td>String</td><td></td><td>False</td></tr><tr><td>WA_NumberID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>WATemplate</td><td>WATemplateMsg</td><td></td><td>False</td></tr><tr><td><h4>WATemplateMsg Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>body_params</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>buttons</td><td>List&lt;WAButton&gt;</td><td></td><td>False</td></tr><tr><td>header_params</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>language</td><td>String</td><td></td><td>False</td></tr><tr><td>media</td><td>WAMedia</td><td></td><td>False</td></tr><tr><td>template_name</td><td>String</td><td></td><td>False</td></tr><tr><td>TemplateID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>type</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>WAButton Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>index</td><td>String</td><td></td><td>False</td></tr><tr><td>payload</td><td>String</td><td></td><td>False</td></tr><tr><td>text</td><td>String</td><td></td><td>False</td></tr><tr><td>type</td><td>String</td><td></td><td>False</td></tr><tr><td><h4>WAMedia Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>text</td><td>String</td><td></td><td>False</td></tr><tr><td>type</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","WhatsAppApi","SendWATemplate"],"host":["{{Host}}"],"query":[{"key":"FromModule","value":"FromModule-value"}],"variable":[]}},"response":[{"id":"8fc436f0-bb14-46bb-bf59-04fc1b572644","name":"api/WhatsAppApi/SendWATemplate?FromModule={FromModule} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"WA_NumberID\": 1,\r\n  \"CtcID\": 2,\r\n  \"To\": \"sample string 3\",\r\n  \"ReceiverName\": \"sample string 4\",\r\n  \"MessageContent\": \"sample string 5\",\r\n  \"ModuleIDName\": \"sample string 6\",\r\n  \"ModuleIDValue\": 7,\r\n  \"WATemplate\": {\r\n    \"type\": \"sample string 1\",\r\n    \"template_name\": \"sample string 2\",\r\n    \"language\": \"sample string 3\",\r\n    \"header_params\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"body_params\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"buttons\": [\r\n      {\r\n        \"type\": \"sample string 1\",\r\n        \"index\": \"sample string 2\",\r\n        \"text\": \"sample string 3\",\r\n        \"payload\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"type\": \"sample string 1\",\r\n        \"index\": \"sample string 2\",\r\n        \"text\": \"sample string 3\",\r\n        \"payload\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"media\": {\r\n      \"type\": \"sample string 1\",\r\n      \"text\": \"sample string 2\"\r\n    },\r\n    \"TemplateID\": 4\r\n  },\r\n  \"IsReceived\": true,\r\n  \"MsgType\": \"sample string 8\",\r\n  \"MsgUrl\": \"sample string 9\",\r\n  \"Mime_Type\": \"sample string 10\",\r\n  \"FileName\": \"sample string 11\"\r\n}"},"url":{"raw":"https://{{Host}}/api/WhatsAppApi/SendWATemplate?FromModule=FromModule-value","protocol":"https","host":["{{Host}}"],"path":["api","WhatsAppApi","SendWATemplate"],"query":[{"key":"FromModule","value":"FromModule-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>WAInputMessage Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>IsReceived</td><td>Boolean (nullable)</td><td></td><td>False</td></tr><tr><td>MessageContent</td><td>String</td><td></td><td>False</td></tr><tr><td>Mime_Type</td><td>String</td><td></td><td>False</td></tr><tr><td>ModuleIDName</td><td>String</td><td></td><td>False</td></tr><tr><td>ModuleIDValue</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MsgType</td><td>String</td><td></td><td>False</td></tr><tr><td>MsgUrl</td><td>String</td><td></td><td>False</td></tr><tr><td>ReceiverName</td><td>String</td><td></td><td>False</td></tr><tr><td>To</td><td>String</td><td></td><td>False</td></tr><tr><td>WA_NumberID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>WATemplate</td><td>WATemplateMsg</td><td></td><td>False</td></tr><tr><td colspan=4><h4>WATemplateMsg Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>body_params</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>buttons</td><td>List&lt;WAButton&gt;</td><td></td><td>False</td></tr><tr><td>header_params</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>language</td><td>String</td><td></td><td>False</td></tr><tr><td>media</td><td>WAMedia</td><td></td><td>False</td></tr><tr><td>template_name</td><td>String</td><td></td><td>False</td></tr><tr><td>TemplateID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>type</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>WAButton Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>index</td><td>String</td><td></td><td>False</td></tr><tr><td>payload</td><td>String</td><td></td><td>False</td></tr><tr><td>text</td><td>String</td><td></td><td>False</td></tr><tr><td>type</td><td>String</td><td></td><td>False</td></tr><tr><td colspan=4><h4>WAMedia Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>text</td><td>String</td><td></td><td>False</td></tr><tr><td>type</td><td>String</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"StartSession\": \"2026-03-25T07:30:10.7932381+00:00\",\r\n  \"MessageID\": \"sample string 2\",\r\n  \"WaContactID\": \"sample string 3\"\r\n}"}],"_postman_id":"feeef9f4-5c09-446d-b8a3-4e7d10d443da"},{"name":"SetOptin","id":"5f27cd95-827f-455e-80c6-23c45cca63a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"MobilePhone\": \"sample string 2\",\r\n  \"IsWhatsAppOptin\": 3,\r\n  \"WA_NumberID\": 4\r\n}"},"url":"https://{{Host}}/api/WhatsAppApi/SetOptin?FromModule=FromModule-value","description":" <p>\n</p><h4>Body Payload</h4><table><tr><td><h4>WhatsAppOptinInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>IsWhatsAppOptin</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td></td><td>False</td></tr><tr><td>WA_NumberID</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table>","urlObject":{"protocol":"https","path":["api","WhatsAppApi","SetOptin"],"host":["{{Host}}"],"query":[{"key":"FromModule","value":"FromModule-value"}],"variable":[]}},"response":[{"id":"324c7ed7-d672-4310-aa64-f99b844966e1","name":"api/WhatsAppApi/SetOptin?FromModule={FromModule} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"CtcID\": 1,\r\n  \"MobilePhone\": \"sample string 2\",\r\n  \"IsWhatsAppOptin\": 3,\r\n  \"WA_NumberID\": 4\r\n}"},"url":{"raw":"https://{{Host}}/api/WhatsAppApi/SetOptin?FromModule=FromModule-value","protocol":"https","host":["{{Host}}"],"path":["api","WhatsAppApi","SetOptin"],"query":[{"key":"FromModule","value":"FromModule-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>WhatsAppOptinInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>CtcID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>IsWhatsAppOptin</td><td>Int32</td><td></td><td>False</td></tr><tr><td>MobilePhone</td><td>String</td><td></td><td>False</td></tr><tr><td>WA_NumberID</td><td>Int32</td><td></td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>WhatsAppAPIOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>errors</td><td>List&lt;String&gt;</td><td></td></tr><tr><td>MessageID</td><td>String</td><td></td></tr><tr><td>response</td><td>Boolean</td><td></td></tr><tr><td>StartSession</td><td>DateTime (nullable)</td><td></td></tr><tr><td>WaContactID</td><td>String</td><td></td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"response\": true,\r\n  \"errors\": [\r\n    \"sample string 1\",\r\n    \"sample string 2\"\r\n  ],\r\n  \"StartSession\": \"2026-03-25T07:30:10.7932381+00:00\",\r\n  \"MessageID\": \"sample string 2\",\r\n  \"WaContactID\": \"sample string 3\"\r\n}"}],"_postman_id":"5f27cd95-827f-455e-80c6-23c45cca63a8"}],"id":"4202ad3c-cf48-4b84-9ebf-799fc46ab2f9","description":"<p>Api Methods for WhatsAppApi</p>\n","_postman_id":"4202ad3c-cf48-4b84-9ebf-799fc46ab2f9"},{"name":"Wireless","item":[{"name":"GetActiveLoginPageBySiteID","id":"a09c9c39-564f-45c8-92ca-4037d5132728","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/api/Wireless/GetActiveLoginPageBySiteID?SiteID=SiteID-value","description":" <p>\n            GET Login Page HTML content \n            \n</p><h4>Response Payload</h4><table><tr><td><h4>WirelessPageModel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CreationDate</td><td>DateTime</td><td>Creation date</td></tr><tr><td>CustomPostLogin</td><td>Boolean</td><td>Customisable PostLogin page</td></tr><tr><td>ExpirationDate</td><td>DateTime (nullable)</td><td>Expiration Date</td></tr><tr><td>FooterHtml</td><td>String</td><td></td></tr><tr><td>FormFields</td><td>String</td><td>Form fields wrapper</td></tr><tr><td>HeaderHtml</td><td>String</td><td></td></tr><tr><td>IsDefault</td><td>Boolean</td><td></td></tr><tr><td>PageID</td><td>Int32</td><td>Page ID</td></tr><tr><td>PageStatusTemplate</td><td>String</td><td></td></tr><tr><td>SiteID</td><td>Int32</td><td>Site ID</td></tr><tr><td>SiteName</td><td>String</td><td>Site Name</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Start Date</td></tr></table>","urlObject":{"protocol":"https","path":["api","Wireless","GetActiveLoginPageBySiteID"],"host":["{{Host}}"],"query":[{"key":"SiteID","value":"SiteID-value"}],"variable":[]}},"response":[{"id":"e95fa516-7d07-46fe-b785-c1a49da0f57d","name":"api/Wireless/GetActiveLoginPageBySiteID?SiteID={SiteID} Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":{"raw":"https://{{Host}}/api/Wireless/GetActiveLoginPageBySiteID?SiteID=SiteID-value","protocol":"https","host":["{{Host}}"],"path":["api","Wireless","GetActiveLoginPageBySiteID"],"query":[{"key":"SiteID","value":"SiteID-value"}]},"description":"<html> <style>table { background-color: coral; }</style><p>\r\n            GET Login Page HTML content \r\n            \n</p><h4>Response Payload</h4><table><tr><td colspan=3><h4>WirelessPageModel Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CreationDate</td><td>DateTime</td><td>Creation date</td></tr><tr><td>CustomPostLogin</td><td>Boolean</td><td>Customisable PostLogin page</td></tr><tr><td>ExpirationDate</td><td>DateTime (nullable)</td><td>Expiration Date</td></tr><tr><td>FooterHtml</td><td>String</td><td></td></tr><tr><td>FormFields</td><td>String</td><td>Form fields wrapper</td></tr><tr><td>HeaderHtml</td><td>String</td><td></td></tr><tr><td>IsDefault</td><td>Boolean</td><td></td></tr><tr><td>PageID</td><td>Int32</td><td>Page ID</td></tr><tr><td>PageStatusTemplate</td><td>String</td><td></td></tr><tr><td>SiteID</td><td>Int32</td><td>Site ID</td></tr><tr><td>SiteName</td><td>String</td><td>Site Name</td></tr><tr><td>StartDate</td><td>DateTime (nullable)</td><td>Start Date</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"PageID\": 1,\r\n    \"HeaderHtml\": \"sample string 2\",\r\n    \"FooterHtml\": \"sample string 3\",\r\n    \"SiteID\": 4,\r\n    \"SiteName\": \"sample string 5\",\r\n    \"FormFields\": \"sample string 6\",\r\n    \"StartDate\": \"2026-03-25T07:30:10.7932381+00:00\",\r\n    \"ExpirationDate\": \"2026-03-25T07:30:10.8088642+00:00\",\r\n    \"CustomPostLogin\": true,\r\n    \"CreationDate\": \"2026-03-25T07:30:10.8088642+00:00\",\r\n    \"IsDefault\": true,\r\n    \"PageStatusTemplate\": \"<table style='border:none;'><tr><td style='border:none; height: 32px; vertical-align: middle;'><table align='center'><tr><td style='border:none; height: 32px; vertical-align: middle;'><div class='notification-style' style='background-color:#16B84E' >Active</div></td></tr></table></tr></table>\"\r\n  },\r\n  {\r\n    \"PageID\": 1,\r\n    \"HeaderHtml\": \"sample string 2\",\r\n    \"FooterHtml\": \"sample string 3\",\r\n    \"SiteID\": 4,\r\n    \"SiteName\": \"sample string 5\",\r\n    \"FormFields\": \"sample string 6\",\r\n    \"StartDate\": \"2026-03-25T07:30:10.7932381+00:00\",\r\n    \"ExpirationDate\": \"2026-03-25T07:30:10.8088642+00:00\",\r\n    \"CustomPostLogin\": true,\r\n    \"CreationDate\": \"2026-03-25T07:30:10.8088642+00:00\",\r\n    \"IsDefault\": true,\r\n    \"PageStatusTemplate\": \"<table style='border:none;'><tr><td style='border:none; height: 32px; vertical-align: middle;'><table align='center'><tr><td style='border:none; height: 32px; vertical-align: middle;'><div class='notification-style' style='background-color:#16B84E' >Active</div></td></tr></table></tr></table>\"\r\n  }\r\n]"}],"_postman_id":"a09c9c39-564f-45c8-92ca-4037d5132728"},{"name":"PostBulkUnknownVisit","id":"0f2d4d0b-3920-4a5f-ba85-b127991355d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"UnknownVisitDetails\": [\r\n    {\r\n      \"MacAddress\": \"sample string 1\",\r\n      \"StartDate\": \"2026-03-25T07:30:10.8088642+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:10.8088642+00:00\",\r\n      \"SourceID\": \"sample string 4\",\r\n      \"venueRef\": \"sample string 5\"\r\n    },\r\n    {\r\n      \"MacAddress\": \"sample string 1\",\r\n      \"StartDate\": \"2026-03-25T07:30:10.8088642+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:10.8088642+00:00\",\r\n      \"SourceID\": \"sample string 4\",\r\n      \"venueRef\": \"sample string 5\"\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/Wireless/PostBulkUnknownVisit","description":" <p>\n            Post visit details ( Mac Address,visit date and the source )\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>UnknownVisitDetailsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>UnknownVisitDetails</td><td>List&lt;UnknownVisitDetails&gt;</td><td>MAC address</td><td>False</td></tr><tr><td><h4>UnknownVisitDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>EndDate</td><td>DateTime</td><td>Visit date</td><td>False</td></tr><tr><td>MacAddress</td><td>String</td><td>MAC address</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source</td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td>Visit date</td><td>False</td></tr><tr><td>venueRef</td><td>String</td><td>Location reference (SiteID)</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>WirelessVisitOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Wireless","PostBulkUnknownVisit"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"8be69360-ed05-4122-9a4d-a1d3b5cad693","name":"api/Wireless/PostBulkUnknownVisit Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"UnknownVisitDetails\": [\r\n    {\r\n      \"MacAddress\": \"sample string 1\",\r\n      \"StartDate\": \"2026-03-25T07:30:10.8088642+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:10.8088642+00:00\",\r\n      \"SourceID\": \"sample string 4\",\r\n      \"venueRef\": \"sample string 5\"\r\n    },\r\n    {\r\n      \"MacAddress\": \"sample string 1\",\r\n      \"StartDate\": \"2026-03-25T07:30:10.8088642+00:00\",\r\n      \"EndDate\": \"2026-03-25T07:30:10.8088642+00:00\",\r\n      \"SourceID\": \"sample string 4\",\r\n      \"venueRef\": \"sample string 5\"\r\n    }\r\n  ]\r\n}"},"url":"https://{{Host}}/api/Wireless/PostBulkUnknownVisit","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post visit details ( Mac Address,visit date and the source )\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>UnknownVisitDetailsInput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>UnknownVisitDetails</td><td>List&lt;UnknownVisitDetails&gt;</td><td>MAC address</td><td>False</td></tr><tr><td colspan=4><h4>UnknownVisitDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>EndDate</td><td>DateTime</td><td>Visit date</td><td>False</td></tr><tr><td>MacAddress</td><td>String</td><td>MAC address</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source</td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td>Visit date</td><td>False</td></tr><tr><td>venueRef</td><td>String</td><td>Location reference (SiteID)</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>WirelessVisitOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"0f2d4d0b-3920-4a5f-ba85-b127991355d6"},{"name":"PostLogin","id":"11da259e-9331-4293-a450-1e6b91c02b53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"occurredAt\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n  \"user\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:10.8245022+00:00\"\r\n  },\r\n  \"venueName\": \"sample string 2\",\r\n  \"venueRef\": \"sample string 3\",\r\n  \"isFirstSightingOfUser\": true,\r\n  \"dwellTime\": 5\r\n}"},"url":"https://{{Host}}/api/Wireless/PostLogin","description":" <p>\n            Post a single wireless login details (Real time)\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>WirelessLogin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>dwellTime</td><td>Int32</td><td>The amount of time (in seconds) that the user was logged in for</td><td>False</td></tr><tr><td>isFirstSightingOfUser</td><td>Boolean</td><td>Will be set to true if this is the first time a user has logged into a venue in this group</td><td>False</td></tr><tr><td>occurredAt</td><td>DateTime</td><td>Date time of the login</td><td>False</td></tr><tr><td>user</td><td>Contact</td><td>Details of the Contact</td><td>False</td></tr><tr><td>venueName</td><td>String</td><td>Location name</td><td>False</td></tr><tr><td>venueRef</td><td>String</td><td>Location reference (SiteID)</td><td>False</td></tr><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>WirelessLoginOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Wireless","PostLogin"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"4a4049a1-f06d-4a88-a1a0-091d2f19111b","name":"api/Wireless/PostLogin Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"occurredAt\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n  \"user\": {\r\n    \"CtcID\": 1,\r\n    \"LastName\": \"sample string 2\",\r\n    \"CpyID\": 3,\r\n    \"PositionFreeText\": \"sample string 7\",\r\n    \"CreateDate\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n    \"ModifDate\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n    \"ModifiedBy\": 1,\r\n    \"SourceID\": \"sample string 10\",\r\n    \"OriginID\": \"sample string 11\",\r\n    \"DoNotExport\": true,\r\n    \"ParentEmailAddress\": \"sample string 14\",\r\n    \"SupInfo\": [\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      },\r\n      {\r\n        \"FieldName\": \"sample string 1\",\r\n        \"FieldContent\": \"sample string 4\"\r\n      }\r\n    ],\r\n    \"Company\": {\r\n      \"CpyID\": 1,\r\n      \"Name\": \"sample string 2\",\r\n      \"Building\": \"sample string 4\",\r\n      \"Street\": \"sample string 5\",\r\n      \"Zone\": \"sample string 6\",\r\n      \"City\": \"sample string 7\",\r\n      \"PostCode\": \"sample string 8\",\r\n      \"StateCode\": \"sample string 9\",\r\n      \"StateName\": \"sample string 10\",\r\n      \"CountryCode\": \"sample string 13\",\r\n      \"CountryName\": \"sample string 14\",\r\n      \"Phone\": \"sample string 15\",\r\n      \"Fax\": \"sample string 16\",\r\n      \"Web\": \"sample string 17\",\r\n      \"Email\": \"sample string 18\",\r\n      \"NationalID\": \"sample string 20\",\r\n      \"SourceID\": \"sample string 21\",\r\n      \"OriginID\": \"sample string 22\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n      \"LastModifDate\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"CpyNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ]\r\n    },\r\n    \"CtcNotes\": {\r\n      \"CtcCpyID\": 1,\r\n      \"NoteUserID\": 2,\r\n      \"SourceNote\": 3,\r\n      \"Comment\": \"sample string 4\",\r\n      \"LastModifiedBy\": \"sample string 5\",\r\n      \"LastModifiedOn\": \"2026-03-25T07:30:10.8245022+00:00\",\r\n      \"AttachmentFilesList\": [\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        },\r\n        {\r\n          \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n          \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n          \"<FileName>k__BackingField\": \"sample string 3\",\r\n          \"<FileContent>k__BackingField\": \"sample string 4\",\r\n          \"<ContentType>k__BackingField\": \"sample string 5\",\r\n          \"<FileSize>k__BackingField\": 1,\r\n          \"<ID>k__BackingField\": 1,\r\n          \"<HasContent>k__BackingField\": true\r\n        }\r\n      ],\r\n      \"AttachmentFilesListString\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ]\r\n    },\r\n    \"Gender\": null,\r\n    \"PredefinedGender\": 0,\r\n    \"ProcessMydata\": true,\r\n    \"DeleteMyData\": true,\r\n    \"HomeSiteID\": \"sample string 20\",\r\n    \"BrandID\": 1,\r\n    \"MemberNumbersList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CurrentMemberNumber\": \"sample string 21\",\r\n    \"CardTokensList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"CardToken\": \"sample string 22\",\r\n    \"CurrentReferrerCode\": \"sample string 23\",\r\n    \"ReferrerCodeList\": [\r\n      \"sample string 1\",\r\n      \"sample string 2\"\r\n    ],\r\n    \"ReferredByCode\": \"sample string 24\",\r\n    \"ReferrerCode\": \"sample string 25\",\r\n    \"UpdateIfPopulated\": true,\r\n    \"IsLeadCtc\": true,\r\n    \"IsFinanceCtc\": true,\r\n    \"CorporateName\": \"sample string 29\",\r\n    \"CorporateJobTitle\": 30,\r\n    \"Picture\": \"QEA=\",\r\n    \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n    \"ContactSpendInLast12Months\": \"sample string 31\",\r\n    \"_Title\": \"sample string 33\",\r\n    \"FirstName\": \"sample string 34\",\r\n    \"Phone\": \"sample string 35\",\r\n    \"MobilPhone\": \"sample string 36\",\r\n    \"Email\": \"sample string 37\",\r\n    \"BirthDate\": \"2026-03-25T07:30:10.8245022+00:00\"\r\n  },\r\n  \"venueName\": \"sample string 2\",\r\n  \"venueRef\": \"sample string 3\",\r\n  \"isFirstSightingOfUser\": true,\r\n  \"dwellTime\": 5\r\n}"},"url":"https://{{Host}}/api/Wireless/PostLogin","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post a single wireless login details (Real time)\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>WirelessLogin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>dwellTime</td><td>Int32</td><td>The amount of time (in seconds) that the user was logged in for</td><td>False</td></tr><tr><td>isFirstSightingOfUser</td><td>Boolean</td><td>Will be set to true if this is the first time a user has logged into a venue in this group</td><td>False</td></tr><tr><td>occurredAt</td><td>DateTime</td><td>Date time of the login</td><td>False</td></tr><tr><td>user</td><td>Contact</td><td>Details of the Contact</td><td>False</td></tr><tr><td>venueName</td><td>String</td><td>Location name</td><td>False</td></tr><tr><td>venueRef</td><td>String</td><td>Location reference (SiteID)</td><td>False</td></tr><tr><td colspan=4><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td colspan=4><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>WirelessLoginOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>CtcID</td><td>Int32</td><td>The Contact ID</td></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"CtcID\": 2,\r\n  \"Error\": \"sample string 3\"\r\n}"}],"_postman_id":"11da259e-9331-4293-a450-1e6b91c02b53"},{"name":"PostLoginFeed","id":"2c04cb31-766d-44c3-b192-11720198365d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"occurredAt\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n    \"user\": {\r\n      \"CtcID\": 1,\r\n      \"LastName\": \"sample string 2\",\r\n      \"CpyID\": 3,\r\n      \"PositionFreeText\": \"sample string 7\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n      \"ModifDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"SourceID\": \"sample string 10\",\r\n      \"OriginID\": \"sample string 11\",\r\n      \"DoNotExport\": true,\r\n      \"ParentEmailAddress\": \"sample string 14\",\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"Company\": {\r\n        \"CpyID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"Building\": \"sample string 4\",\r\n        \"Street\": \"sample string 5\",\r\n        \"Zone\": \"sample string 6\",\r\n        \"City\": \"sample string 7\",\r\n        \"PostCode\": \"sample string 8\",\r\n        \"StateCode\": \"sample string 9\",\r\n        \"StateName\": \"sample string 10\",\r\n        \"CountryCode\": \"sample string 13\",\r\n        \"CountryName\": \"sample string 14\",\r\n        \"Phone\": \"sample string 15\",\r\n        \"Fax\": \"sample string 16\",\r\n        \"Web\": \"sample string 17\",\r\n        \"Email\": \"sample string 18\",\r\n        \"NationalID\": \"sample string 20\",\r\n        \"SourceID\": \"sample string 21\",\r\n        \"OriginID\": \"sample string 22\",\r\n        \"CreateDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n        \"LastModifDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"CpyNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ]\r\n      },\r\n      \"CtcNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"Gender\": null,\r\n      \"PredefinedGender\": 0,\r\n      \"ProcessMydata\": true,\r\n      \"DeleteMyData\": true,\r\n      \"HomeSiteID\": \"sample string 20\",\r\n      \"BrandID\": 1,\r\n      \"MemberNumbersList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"CurrentMemberNumber\": \"sample string 21\",\r\n      \"CardTokensList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"CardToken\": \"sample string 22\",\r\n      \"CurrentReferrerCode\": \"sample string 23\",\r\n      \"ReferrerCodeList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ReferredByCode\": \"sample string 24\",\r\n      \"ReferrerCode\": \"sample string 25\",\r\n      \"UpdateIfPopulated\": true,\r\n      \"IsLeadCtc\": true,\r\n      \"IsFinanceCtc\": true,\r\n      \"CorporateName\": \"sample string 29\",\r\n      \"CorporateJobTitle\": 30,\r\n      \"Picture\": \"QEA=\",\r\n      \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"ContactSpendInLast12Months\": \"sample string 31\",\r\n      \"_Title\": \"sample string 33\",\r\n      \"FirstName\": \"sample string 34\",\r\n      \"Phone\": \"sample string 35\",\r\n      \"MobilPhone\": \"sample string 36\",\r\n      \"Email\": \"sample string 37\",\r\n      \"BirthDate\": \"2026-03-25T07:30:10.8557348+00:00\"\r\n    },\r\n    \"venueName\": \"sample string 2\",\r\n    \"venueRef\": \"sample string 3\",\r\n    \"isFirstSightingOfUser\": true,\r\n    \"dwellTime\": 5\r\n  },\r\n  {\r\n    \"occurredAt\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n    \"user\": {\r\n      \"CtcID\": 1,\r\n      \"LastName\": \"sample string 2\",\r\n      \"CpyID\": 3,\r\n      \"PositionFreeText\": \"sample string 7\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n      \"ModifDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"SourceID\": \"sample string 10\",\r\n      \"OriginID\": \"sample string 11\",\r\n      \"DoNotExport\": true,\r\n      \"ParentEmailAddress\": \"sample string 14\",\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"Company\": {\r\n        \"CpyID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"Building\": \"sample string 4\",\r\n        \"Street\": \"sample string 5\",\r\n        \"Zone\": \"sample string 6\",\r\n        \"City\": \"sample string 7\",\r\n        \"PostCode\": \"sample string 8\",\r\n        \"StateCode\": \"sample string 9\",\r\n        \"StateName\": \"sample string 10\",\r\n        \"CountryCode\": \"sample string 13\",\r\n        \"CountryName\": \"sample string 14\",\r\n        \"Phone\": \"sample string 15\",\r\n        \"Fax\": \"sample string 16\",\r\n        \"Web\": \"sample string 17\",\r\n        \"Email\": \"sample string 18\",\r\n        \"NationalID\": \"sample string 20\",\r\n        \"SourceID\": \"sample string 21\",\r\n        \"OriginID\": \"sample string 22\",\r\n        \"CreateDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n        \"LastModifDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"CpyNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ]\r\n      },\r\n      \"CtcNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"Gender\": null,\r\n      \"PredefinedGender\": 0,\r\n      \"ProcessMydata\": true,\r\n      \"DeleteMyData\": true,\r\n      \"HomeSiteID\": \"sample string 20\",\r\n      \"BrandID\": 1,\r\n      \"MemberNumbersList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"CurrentMemberNumber\": \"sample string 21\",\r\n      \"CardTokensList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"CardToken\": \"sample string 22\",\r\n      \"CurrentReferrerCode\": \"sample string 23\",\r\n      \"ReferrerCodeList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ReferredByCode\": \"sample string 24\",\r\n      \"ReferrerCode\": \"sample string 25\",\r\n      \"UpdateIfPopulated\": true,\r\n      \"IsLeadCtc\": true,\r\n      \"IsFinanceCtc\": true,\r\n      \"CorporateName\": \"sample string 29\",\r\n      \"CorporateJobTitle\": 30,\r\n      \"Picture\": \"QEA=\",\r\n      \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"ContactSpendInLast12Months\": \"sample string 31\",\r\n      \"_Title\": \"sample string 33\",\r\n      \"FirstName\": \"sample string 34\",\r\n      \"Phone\": \"sample string 35\",\r\n      \"MobilPhone\": \"sample string 36\",\r\n      \"Email\": \"sample string 37\",\r\n      \"BirthDate\": \"2026-03-25T07:30:10.8557348+00:00\"\r\n    },\r\n    \"venueName\": \"sample string 2\",\r\n    \"venueRef\": \"sample string 3\",\r\n    \"isFirstSightingOfUser\": true,\r\n    \"dwellTime\": 5\r\n  }\r\n]"},"url":"https://{{Host}}/api/Wireless/PostLoginFeed","description":" <p>\n            Post a list of wireless login details (Maximum 1000 rows)\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>WirelessLogin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>dwellTime</td><td>Int32</td><td>The amount of time (in seconds) that the user was logged in for</td><td>False</td></tr><tr><td>isFirstSightingOfUser</td><td>Boolean</td><td>Will be set to true if this is the first time a user has logged into a venue in this group</td><td>False</td></tr><tr><td>occurredAt</td><td>DateTime</td><td>Date time of the login</td><td>False</td></tr><tr><td>user</td><td>Contact</td><td>Details of the Contact</td><td>False</td></tr><tr><td>venueName</td><td>String</td><td>Location name</td><td>False</td></tr><tr><td>venueRef</td><td>String</td><td>Location reference (SiteID)</td><td>False</td></tr><tr><td><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>WirelessLoginFeedOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Wireless","PostLoginFeed"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"6b84df34-f938-4087-ad9f-af987992b4a3","name":"api/Wireless/PostLoginFeed Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"occurredAt\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n    \"user\": {\r\n      \"CtcID\": 1,\r\n      \"LastName\": \"sample string 2\",\r\n      \"CpyID\": 3,\r\n      \"PositionFreeText\": \"sample string 7\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n      \"ModifDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"SourceID\": \"sample string 10\",\r\n      \"OriginID\": \"sample string 11\",\r\n      \"DoNotExport\": true,\r\n      \"ParentEmailAddress\": \"sample string 14\",\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"Company\": {\r\n        \"CpyID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"Building\": \"sample string 4\",\r\n        \"Street\": \"sample string 5\",\r\n        \"Zone\": \"sample string 6\",\r\n        \"City\": \"sample string 7\",\r\n        \"PostCode\": \"sample string 8\",\r\n        \"StateCode\": \"sample string 9\",\r\n        \"StateName\": \"sample string 10\",\r\n        \"CountryCode\": \"sample string 13\",\r\n        \"CountryName\": \"sample string 14\",\r\n        \"Phone\": \"sample string 15\",\r\n        \"Fax\": \"sample string 16\",\r\n        \"Web\": \"sample string 17\",\r\n        \"Email\": \"sample string 18\",\r\n        \"NationalID\": \"sample string 20\",\r\n        \"SourceID\": \"sample string 21\",\r\n        \"OriginID\": \"sample string 22\",\r\n        \"CreateDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n        \"LastModifDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"CpyNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ]\r\n      },\r\n      \"CtcNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"Gender\": null,\r\n      \"PredefinedGender\": 0,\r\n      \"ProcessMydata\": true,\r\n      \"DeleteMyData\": true,\r\n      \"HomeSiteID\": \"sample string 20\",\r\n      \"BrandID\": 1,\r\n      \"MemberNumbersList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"CurrentMemberNumber\": \"sample string 21\",\r\n      \"CardTokensList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"CardToken\": \"sample string 22\",\r\n      \"CurrentReferrerCode\": \"sample string 23\",\r\n      \"ReferrerCodeList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ReferredByCode\": \"sample string 24\",\r\n      \"ReferrerCode\": \"sample string 25\",\r\n      \"UpdateIfPopulated\": true,\r\n      \"IsLeadCtc\": true,\r\n      \"IsFinanceCtc\": true,\r\n      \"CorporateName\": \"sample string 29\",\r\n      \"CorporateJobTitle\": 30,\r\n      \"Picture\": \"QEA=\",\r\n      \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"ContactSpendInLast12Months\": \"sample string 31\",\r\n      \"_Title\": \"sample string 33\",\r\n      \"FirstName\": \"sample string 34\",\r\n      \"Phone\": \"sample string 35\",\r\n      \"MobilPhone\": \"sample string 36\",\r\n      \"Email\": \"sample string 37\",\r\n      \"BirthDate\": \"2026-03-25T07:30:10.8557348+00:00\"\r\n    },\r\n    \"venueName\": \"sample string 2\",\r\n    \"venueRef\": \"sample string 3\",\r\n    \"isFirstSightingOfUser\": true,\r\n    \"dwellTime\": 5\r\n  },\r\n  {\r\n    \"occurredAt\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n    \"user\": {\r\n      \"CtcID\": 1,\r\n      \"LastName\": \"sample string 2\",\r\n      \"CpyID\": 3,\r\n      \"PositionFreeText\": \"sample string 7\",\r\n      \"CreateDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n      \"ModifDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n      \"ModifiedBy\": 1,\r\n      \"SourceID\": \"sample string 10\",\r\n      \"OriginID\": \"sample string 11\",\r\n      \"DoNotExport\": true,\r\n      \"ParentEmailAddress\": \"sample string 14\",\r\n      \"SupInfo\": [\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        },\r\n        {\r\n          \"FieldName\": \"sample string 1\",\r\n          \"FieldContent\": \"sample string 4\"\r\n        }\r\n      ],\r\n      \"Company\": {\r\n        \"CpyID\": 1,\r\n        \"Name\": \"sample string 2\",\r\n        \"Building\": \"sample string 4\",\r\n        \"Street\": \"sample string 5\",\r\n        \"Zone\": \"sample string 6\",\r\n        \"City\": \"sample string 7\",\r\n        \"PostCode\": \"sample string 8\",\r\n        \"StateCode\": \"sample string 9\",\r\n        \"StateName\": \"sample string 10\",\r\n        \"CountryCode\": \"sample string 13\",\r\n        \"CountryName\": \"sample string 14\",\r\n        \"Phone\": \"sample string 15\",\r\n        \"Fax\": \"sample string 16\",\r\n        \"Web\": \"sample string 17\",\r\n        \"Email\": \"sample string 18\",\r\n        \"NationalID\": \"sample string 20\",\r\n        \"SourceID\": \"sample string 21\",\r\n        \"OriginID\": \"sample string 22\",\r\n        \"CreateDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n        \"LastModifDate\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n        \"ModifiedBy\": 1,\r\n        \"CpyNotes\": {\r\n          \"CtcCpyID\": 1,\r\n          \"NoteUserID\": 2,\r\n          \"SourceNote\": 3,\r\n          \"Comment\": \"sample string 4\",\r\n          \"LastModifiedBy\": \"sample string 5\",\r\n          \"LastModifiedOn\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n          \"AttachmentFilesList\": [\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            },\r\n            {\r\n              \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n              \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n              \"<FileName>k__BackingField\": \"sample string 3\",\r\n              \"<FileContent>k__BackingField\": \"sample string 4\",\r\n              \"<ContentType>k__BackingField\": \"sample string 5\",\r\n              \"<FileSize>k__BackingField\": 1,\r\n              \"<ID>k__BackingField\": 1,\r\n              \"<HasContent>k__BackingField\": true\r\n            }\r\n          ],\r\n          \"AttachmentFilesListString\": [\r\n            \"sample string 1\",\r\n            \"sample string 2\"\r\n          ]\r\n        },\r\n        \"SupInfo\": [\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          },\r\n          {\r\n            \"FieldName\": \"sample string 1\",\r\n            \"FieldContent\": \"sample string 4\"\r\n          }\r\n        ]\r\n      },\r\n      \"CtcNotes\": {\r\n        \"CtcCpyID\": 1,\r\n        \"NoteUserID\": 2,\r\n        \"SourceNote\": 3,\r\n        \"Comment\": \"sample string 4\",\r\n        \"LastModifiedBy\": \"sample string 5\",\r\n        \"LastModifiedOn\": \"2026-03-25T07:30:10.8557348+00:00\",\r\n        \"AttachmentFilesList\": [\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          },\r\n          {\r\n            \"<AttachmentName>k__BackingField\": \"sample string 1\",\r\n            \"<AttachmentID>k__BackingField\": \"sample string 2\",\r\n            \"<FileName>k__BackingField\": \"sample string 3\",\r\n            \"<FileContent>k__BackingField\": \"sample string 4\",\r\n            \"<ContentType>k__BackingField\": \"sample string 5\",\r\n            \"<FileSize>k__BackingField\": 1,\r\n            \"<ID>k__BackingField\": 1,\r\n            \"<HasContent>k__BackingField\": true\r\n          }\r\n        ],\r\n        \"AttachmentFilesListString\": [\r\n          \"sample string 1\",\r\n          \"sample string 2\"\r\n        ]\r\n      },\r\n      \"Gender\": null,\r\n      \"PredefinedGender\": 0,\r\n      \"ProcessMydata\": true,\r\n      \"DeleteMyData\": true,\r\n      \"HomeSiteID\": \"sample string 20\",\r\n      \"BrandID\": 1,\r\n      \"MemberNumbersList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"CurrentMemberNumber\": \"sample string 21\",\r\n      \"CardTokensList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"CardToken\": \"sample string 22\",\r\n      \"CurrentReferrerCode\": \"sample string 23\",\r\n      \"ReferrerCodeList\": [\r\n        \"sample string 1\",\r\n        \"sample string 2\"\r\n      ],\r\n      \"ReferredByCode\": \"sample string 24\",\r\n      \"ReferrerCode\": \"sample string 25\",\r\n      \"UpdateIfPopulated\": true,\r\n      \"IsLeadCtc\": true,\r\n      \"IsFinanceCtc\": true,\r\n      \"CorporateName\": \"sample string 29\",\r\n      \"CorporateJobTitle\": 30,\r\n      \"Picture\": \"QEA=\",\r\n      \"IsFinanceCtcTemplate\": \"<div><i id=\\\"IsFinanceCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"IsLeadCtcCtcTemplate\": \"<div><i id=\\\"IsLeadCtc_1\\\" class=\\\"fas fa-check\\\" style=\\\"display: inline;\\\"></i></div>\",\r\n      \"ContactSpendInLast12Months\": \"sample string 31\",\r\n      \"_Title\": \"sample string 33\",\r\n      \"FirstName\": \"sample string 34\",\r\n      \"Phone\": \"sample string 35\",\r\n      \"MobilPhone\": \"sample string 36\",\r\n      \"Email\": \"sample string 37\",\r\n      \"BirthDate\": \"2026-03-25T07:30:10.8557348+00:00\"\r\n    },\r\n    \"venueName\": \"sample string 2\",\r\n    \"venueRef\": \"sample string 3\",\r\n    \"isFirstSightingOfUser\": true,\r\n    \"dwellTime\": 5\r\n  }\r\n]"},"url":"https://{{Host}}/api/Wireless/PostLoginFeed","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post a list of wireless login details (Maximum 1000 rows)\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>WirelessLogin Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>dwellTime</td><td>Int32</td><td>The amount of time (in seconds) that the user was logged in for</td><td>False</td></tr><tr><td>isFirstSightingOfUser</td><td>Boolean</td><td>Will be set to true if this is the first time a user has logged into a venue in this group</td><td>False</td></tr><tr><td>occurredAt</td><td>DateTime</td><td>Date time of the login</td><td>False</td></tr><tr><td>user</td><td>Contact</td><td>Details of the Contact</td><td>False</td></tr><tr><td>venueName</td><td>String</td><td>Location name</td><td>False</td></tr><tr><td>venueRef</td><td>String</td><td>Location reference (SiteID)</td><td>False</td></tr><tr><td colspan=4><h4>Contact Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>_Title</td><td>String</td><td>Person title</td><td>False</td></tr><tr><td>BirthDate</td><td>DateTime (nullable)</td><td>Date of birth</td><td>False</td></tr><tr><td>BrandID</td><td>Int32 (nullable)</td><td>The ID of the Brand the customer should belongs to</td><td>False</td></tr><tr><td>CardToken</td><td>String</td><td></td><td>False</td></tr><tr><td>CardTokensList</td><td>List&lt;String&gt;</td><td>return the list of card tokens linked to this contact</td><td>False</td></tr><tr><td>Company</td><td>Company</td><td>Collection of company information</td><td>False</td></tr><tr><td>ContactSpendInLast12Months</td><td>String</td><td></td><td>False</td></tr><tr><td>CorporateJobTitle</td><td>Int32</td><td></td><td>False</td></tr><tr><td>CorporateName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td>Creation Date (used only in PostContact)</td><td>False</td></tr><tr><td>CtcID</td><td>Int32</td><td>The ID of the customer (CtcID)</td><td>False</td></tr><tr><td>CtcNotes</td><td>CtcCpyNotes</td><td>Collection of complementary notes</td><td>False</td></tr><tr><td>CurrentMemberNumber</td><td>String</td><td>return the last member number linked to this contact</td><td>False</td></tr><tr><td>CurrentReferrerCode</td><td>String</td><td>Get the referrer code of the contact</td><td>False</td></tr><tr><td>DeleteMyData</td><td>Boolean (nullable)</td><td>Confirmation to delete the personal data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>DoNotExport</td><td>Boolean</td><td>Shows if contact can be exported</td><td>False</td></tr><tr><td>Email</td><td>String</td><td>Email address</td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td>First Name</td><td>False</td></tr><tr><td>HomeSiteID</td><td>String</td><td>The Site ID added will be used to flag the customer against a Selected Site</td><td>False</td></tr><tr><td>IsFinanceCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsFinanceCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>IsLeadCtc</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>IsLeadCtcCtcTemplate</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td>Last Name</td><td>False</td></tr><tr><td>MemberNumbersList</td><td>List&lt;String&gt;</td><td>return the list of member numbers linked to this contact</td><td>False</td></tr><tr><td>MobilPhone</td><td>String</td><td>Mobile number</td><td>False</td></tr><tr><td>ModifDate</td><td>DateTime (nullable)</td><td>Last modification date (used only in PostContact)</td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td>CtcID of the user who applied the last modification</td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td>OriginID</td><td>False</td></tr><tr><td>ParentEmailAddress</td><td>String</td><td>Parent Email Address (To be used when the contact age under 16)</td><td>False</td></tr><tr><td>Phone</td><td>String</td><td>Landline number</td><td>False</td></tr><tr><td>Picture</td><td>Byte[]</td><td>The Image of the contact</td><td>False</td></tr><tr><td>PositionFreeText</td><td>String</td><td>Job Free Text</td><td>False</td></tr><tr><td>PredefinedGender</td><td>GenderEnum</td><td>Gender :\n             Unknown,\n             Male,\n             Female,\n             PreferNotToSay,</td><td>False</td></tr><tr><td>ProcessMydata</td><td>Boolean (nullable)</td><td>Confirmation to process the data of this contact (USED ONLY in PUTCONTACT)</td><td>False</td></tr><tr><td>ReferredByCode</td><td>String</td><td>Get or Update the referred by code of the contact</td><td>False</td></tr><tr><td>ReferrerCode</td><td>String</td><td>Update the referrer code of the contact</td><td>False</td></tr><tr><td>ReferrerCodeList</td><td>List&lt;String&gt;</td><td>return the list of referre codes linked to this contact</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source ID</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td>Collection of contact supplementary information</td><td>False</td></tr><tr><td>UpdateIfPopulated</td><td>Boolean</td><td>Used only in PutContact method (Default = false).\n            This will allow the user to update just a specifc contact field(s)\n            IF false : the request will be considered as PUT HTTP request (updates the entire resource)\n            IF true : the request will be considered as PATCH HTTP request (partial update). Only populated fields will be updated.</td><td>False</td></tr><tr><td colspan=4><h4>Company Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Building</td><td>String</td><td>Address 1</td><td>False</td></tr><tr><td>City</td><td>String</td><td>City</td><td>False</td></tr><tr><td>CountryCode</td><td>String</td><td></td><td>False</td></tr><tr><td>CountryName</td><td>String</td><td></td><td>False</td></tr><tr><td>CpyID</td><td>Int32</td><td>Houshold ID in B2C intance\n            Company ID in B2B intance</td><td>False</td></tr><tr><td>CpyNotes</td><td>CtcCpyNotes</td><td></td><td>False</td></tr><tr><td>CreateDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>Fax</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifDate</td><td>DateTime (nullable)</td><td></td><td>False</td></tr><tr><td>ModifiedBy</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>Name</td><td>String</td><td>Houshold name in B2C intance\n            Company name in B2B intance</td><td>False</td></tr><tr><td>NationalID</td><td>String</td><td></td><td>False</td></tr><tr><td>OriginID</td><td>String</td><td></td><td>False</td></tr><tr><td>Phone</td><td>String</td><td></td><td>False</td></tr><tr><td>PostCode</td><td>String</td><td>Postcode</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td></td><td>False</td></tr><tr><td>StateCode</td><td>String</td><td>StateCode</td><td>False</td></tr><tr><td>StateName</td><td>String</td><td>County</td><td>False</td></tr><tr><td>Street</td><td>String</td><td>Address 2</td><td>False</td></tr><tr><td>SupInfo</td><td>List&lt;SupInfo&gt;</td><td></td><td>False</td></tr><tr><td>Web</td><td>String</td><td></td><td>False</td></tr><tr><td>Zone</td><td>String</td><td>Address 3</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr><tr><td colspan=4><h4>CtcCpyNotes Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentFilesList</td><td>List&lt;Attachment&gt;</td><td></td><td>False</td></tr><tr><td>AttachmentFilesListString</td><td>List&lt;String&gt;</td><td></td><td>False</td></tr><tr><td>Comment</td><td>String</td><td>Comment Text</td><td>False</td></tr><tr><td>CtcCpyID</td><td>Int32</td><td>Contact ID</td><td>False</td></tr><tr><td>LastModifiedBy</td><td>String</td><td></td><td>False</td></tr><tr><td>LastModifiedOn</td><td>DateTime</td><td></td><td>False</td></tr><tr><td>NoteUserID</td><td>Int32</td><td></td><td>False</td></tr><tr><td>SourceNote</td><td>Int32</td><td></td><td>False</td></tr><tr><td colspan=4><h4>Attachment Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>AttachmentID</td><td>String</td><td></td><td>False</td></tr><tr><td>AttachmentName</td><td>String</td><td></td><td>False</td></tr><tr><td>ContentType</td><td>String</td><td></td><td>False</td></tr><tr><td>FileContent</td><td>String</td><td></td><td>False</td></tr><tr><td>FileName</td><td>String</td><td></td><td>False</td></tr><tr><td>FileSize</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td>HasContent</td><td>Boolean</td><td></td><td>False</td></tr><tr><td>ID</td><td>Int32 (nullable)</td><td></td><td>False</td></tr><tr><td colspan=4><h4>SupInfo Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>FieldContent</td><td>String</td><td>Field value</td><td>False</td></tr><tr><td>FieldName</td><td>String</td><td>Field name</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>WirelessLoginFeedOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"2c04cb31-766d-44c3-b192-11720198365d"},{"name":"PostUnknownVisit","id":"0c24f5b9-0dc1-40a4-9475-3a56ec218322","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"MacAddress\": \"sample string 1\",\r\n  \"StartDate\": \"2026-03-25T07:30:10.8869702+00:00\",\r\n  \"EndDate\": \"2026-03-25T07:30:10.8869702+00:00\",\r\n  \"SourceID\": \"sample string 4\",\r\n  \"venueRef\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/Wireless/PostUnknownVisit","description":" <p>\n            Post visit details ( Mac Address,visit date and the source )\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>UnknownVisitDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>EndDate</td><td>DateTime</td><td>Visit date</td><td>False</td></tr><tr><td>MacAddress</td><td>String</td><td>MAC address</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source</td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td>Visit date</td><td>False</td></tr><tr><td>venueRef</td><td>String</td><td>Location reference (SiteID)</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td><h4>WirelessVisitOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table>","urlObject":{"protocol":"https","path":["api","Wireless","PostUnknownVisit"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"4c1ee244-819d-4e0e-830e-c1858f86d267","name":"api/Wireless/PostUnknownVisit Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"MacAddress\": \"sample string 1\",\r\n  \"StartDate\": \"2026-03-25T07:30:10.8869702+00:00\",\r\n  \"EndDate\": \"2026-03-25T07:30:10.8869702+00:00\",\r\n  \"SourceID\": \"sample string 4\",\r\n  \"venueRef\": \"sample string 5\"\r\n}"},"url":"https://{{Host}}/api/Wireless/PostUnknownVisit","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Post visit details ( Mac Address,visit date and the source )\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>UnknownVisitDetails Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>EndDate</td><td>DateTime</td><td>Visit date</td><td>False</td></tr><tr><td>MacAddress</td><td>String</td><td>MAC address</td><td>False</td></tr><tr><td>SourceID</td><td>String</td><td>Source</td><td>False</td></tr><tr><td>StartDate</td><td>DateTime</td><td>Visit date</td><td>False</td></tr><tr><td>venueRef</td><td>String</td><td>Location reference (SiteID)</td><td>False</td></tr></table><h4>Response Payload</h4><table><tr><td colspan=3><h4>WirelessVisitOutput Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th></tr><tr><td>Error</td><td>String</td><td>The error description</td></tr><tr><td>Response</td><td>Boolean</td><td>The status of the call</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"Response\": true,\r\n  \"Error\": \"sample string 2\"\r\n}"}],"_postman_id":"0c24f5b9-0dc1-40a4-9475-3a56ec218322"}],"id":"d7101dc9-aea4-4f13-9868-0a1e8137d3bf","description":"<p>Api Methods for Wireless</p>\n","_postman_id":"d7101dc9-aea4-4f13-9868-0a1e8137d3bf"},{"name":"Workspace","item":[{"name":"AddUser","id":"0b941d0b-fd58-4e78-a205-d515e3d5e30e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OrganisationId\": \"sample string 1\",\r\n  \"SubscriptionId\": \"sample string 2\",\r\n  \"WorkspaceMemberID\": \"sample string 3\",\r\n  \"Email\": \"sample string 4\",\r\n  \"FirstName\": \"sample string 5\",\r\n  \"LastName\": \"sample string 6\",\r\n  \"RoleName\": \"sample string 7\",\r\n  \"OrganisationRole\": \"sample string 8\",\r\n  \"SendInvite\": true\r\n}"},"url":"https://{{Host}}/Workspace/AddUser","description":" <p>\n            Add User to an organisation.\n            \n</p><h4>Body Payload</h4><table><tr><td><h4>AddInviteUserRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td></td><td>False</td></tr><tr><td>OrganisationId</td><td>String</td><td></td><td>False</td></tr><tr><td>OrganisationRole</td><td>String</td><td>Role of the user within the organisation: it can be only Administrator or User.</td><td>False</td></tr><tr><td>RoleName</td><td>String</td><td>Role of the user within the application(Example : Super User, Standard User).</td><td>False</td></tr><tr><td>SendInvite</td><td>Boolean</td><td>If true, an email will be sent directly to the user to set his password and join the organisation.</td><td>False</td></tr><tr><td>SubscriptionId</td><td>String</td><td></td><td>False</td></tr><tr><td>WorkspaceMemberID</td><td>String</td><td></td><td>False</td></tr></table>","urlObject":{"protocol":"https","path":["Workspace","AddUser"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"0279748c-bb7b-40eb-a4cb-104ef89a25e4","name":"Workspace/AddUser Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"OrganisationId\": \"sample string 1\",\r\n  \"SubscriptionId\": \"sample string 2\",\r\n  \"WorkspaceMemberID\": \"sample string 3\",\r\n  \"Email\": \"sample string 4\",\r\n  \"FirstName\": \"sample string 5\",\r\n  \"LastName\": \"sample string 6\",\r\n  \"RoleName\": \"sample string 7\",\r\n  \"OrganisationRole\": \"sample string 8\",\r\n  \"SendInvite\": true\r\n}"},"url":"https://{{Host}}/Workspace/AddUser","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Add User to an organisation.\r\n            \n</p><h4>Body Payload</h4><table><tr><td colspan=4><h4>AddInviteUserRequest Description</h4></td></tr><tr><th>Name</th><th>Type</th><th>Description</th><th>Required</th></tr><tr><td>Email</td><td>String</td><td></td><td>False</td></tr><tr><td>FirstName</td><td>String</td><td></td><td>False</td></tr><tr><td>LastName</td><td>String</td><td></td><td>False</td></tr><tr><td>OrganisationId</td><td>String</td><td></td><td>False</td></tr><tr><td>OrganisationRole</td><td>String</td><td>Role of the user within the organisation: it can be only Administrator or User.</td><td>False</td></tr><tr><td>RoleName</td><td>String</td><td>Role of the user within the application(Example : Super User, Standard User).</td><td>False</td></tr><tr><td>SendInvite</td><td>Boolean</td><td>If true, an email will be sent directly to the user to set his password and join the organisation.</td><td>False</td></tr><tr><td>SubscriptionId</td><td>String</td><td></td><td>False</td></tr><tr><td>WorkspaceMemberID</td><td>String</td><td></td><td>False</td></tr></table></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0b941d0b-fd58-4e78-a205-d515e3d5e30e"},{"name":"InviteUser","id":"94cf1152-6186-4cd3-a591-785fd4ed813a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/Workspace/InviteUser","description":" <p>\n            Invite User by sending Email.\n            \n</p>","urlObject":{"protocol":"https","path":["Workspace","InviteUser"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[{"id":"6d6422c3-0315-435a-9f73-0247d5e5eb51","name":"Workspace/InviteUser Sample","originalRequest":{"auth":{"type":"bearer","bearer":{"token":null}},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{access_token}}"}],"url":"https://{{Host}}/Workspace/InviteUser","description":"<html> <style>table { background-color: coral; }</style><p>\r\n            Invite User by sending Email.\r\n            \n</p></html>"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"94cf1152-6186-4cd3-a591-785fd4ed813a"}],"id":"12ab0183-2fd8-4424-8509-453ef2957f62","description":"<p>Api Methods for Workspace</p>\n","_postman_id":"12ab0183-2fd8-4424-8509-453ef2957f62"}]}